Skip to content

Instantly share code, notes, and snippets.

@buddhiraz
Created March 9, 2024 17:48
Show Gist options
  • Save buddhiraz/277fad3c064a7f9567624f6de8a87da5 to your computer and use it in GitHub Desktop.
Save buddhiraz/277fad3c064a7f9567624f6de8a87da5 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.24+commit.e11b9ed9.js&optimize=false&runs=200&gist=
// 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));
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.22 <0.9.0;
library TestsAccounts {
function getAccount(uint index) pure public returns (address) {
address[15] memory accounts;
accounts[0] = 0x5B38Da6a701c568545dCfcB03FcB875f56beddC4;
accounts[1] = 0xAb8483F64d9C6d1EcF9b849Ae677dD3315835cb2;
accounts[2] = 0x4B20993Bc481177ec7E8f571ceCaE8A9e22C02db;
accounts[3] = 0x78731D3Ca6b7E34aC0F824c42a7cC18A495cabaB;
accounts[4] = 0x617F2E2fD72FD9D5503197092aC168c91465E7f2;
accounts[5] = 0x17F6AD8Ef982297579C203069C1DbfFE4348c372;
accounts[6] = 0x5c6B0f7Bf3E7ce046039Bd8FABdfD3f9F5021678;
accounts[7] = 0x03C6FcED478cBbC9a4FAB34eF9f40767739D1Ff7;
accounts[8] = 0x1aE0EA34a72D944a8C7603FfB3eC30a6669E454C;
accounts[9] = 0x0A098Eda01Ce92ff4A4CCb7A4fFFb5A43EBC70DC;
accounts[10] = 0xCA35b7d915458EF540aDe6068dFe2F44E8fa733c;
accounts[11] = 0x14723A09ACff6D2A60DcdF7aA4AFf308FDDC160C;
accounts[12] = 0x4B0897b0513fdC7C541B6d9D7E929C4e5364D2dB;
accounts[13] = 0x583031D1113aD414F02576BD6afaBfb302140225;
accounts[14] = 0xdD870fA1b7C4700F2BD7f44238821C26f7392148;
return accounts[index];
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.22 <0.9.0;
library Assert {
event AssertionEvent(
bool passed,
string message,
string methodName
);
event AssertionEventUint(
bool passed,
string message,
string methodName,
uint256 returned,
uint256 expected
);
event AssertionEventInt(
bool passed,
string message,
string methodName,
int256 returned,
int256 expected
);
event AssertionEventBool(
bool passed,
string message,
string methodName,
bool returned,
bool expected
);
event AssertionEventAddress(
bool passed,
string message,
string methodName,
address returned,
address expected
);
event AssertionEventBytes32(
bool passed,
string message,
string methodName,
bytes32 returned,
bytes32 expected
);
event AssertionEventString(
bool passed,
string message,
string methodName,
string returned,
string expected
);
event AssertionEventUintInt(
bool passed,
string message,
string methodName,
uint256 returned,
int256 expected
);
event AssertionEventIntUint(
bool passed,
string message,
string methodName,
int256 returned,
uint256 expected
);
function ok(bool a, string memory message) public returns (bool result) {
result = a;
emit AssertionEvent(result, message, "ok");
}
function equal(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventUint(result, message, "equal", a, b);
}
function equal(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventInt(result, message, "equal", a, b);
}
function equal(bool a, bool b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventBool(result, message, "equal", a, b);
}
// TODO: only for certain versions of solc
//function equal(fixed a, fixed b, string message) public returns (bool result) {
// result = (a == b);
// emit AssertionEvent(result, message);
//}
// TODO: only for certain versions of solc
//function equal(ufixed a, ufixed b, string message) public returns (bool result) {
// result = (a == b);
// emit AssertionEvent(result, message);
//}
function equal(address a, address b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventAddress(result, message, "equal", a, b);
}
function equal(bytes32 a, bytes32 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventBytes32(result, message, "equal", a, b);
}
function equal(string memory a, string memory b, string memory message) public returns (bool result) {
result = (keccak256(abi.encodePacked(a)) == keccak256(abi.encodePacked(b)));
emit AssertionEventString(result, message, "equal", a, b);
}
function notEqual(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventUint(result, message, "notEqual", a, b);
}
function notEqual(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventInt(result, message, "notEqual", a, b);
}
function notEqual(bool a, bool b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventBool(result, message, "notEqual", a, b);
}
// TODO: only for certain versions of solc
//function notEqual(fixed a, fixed b, string message) public returns (bool result) {
// result = (a != b);
// emit AssertionEvent(result, message);
//}
// TODO: only for certain versions of solc
//function notEqual(ufixed a, ufixed b, string message) public returns (bool result) {
// result = (a != b);
// emit AssertionEvent(result, message);
//}
function notEqual(address a, address b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventAddress(result, message, "notEqual", a, b);
}
function notEqual(bytes32 a, bytes32 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventBytes32(result, message, "notEqual", a, b);
}
function notEqual(string memory a, string memory b, string memory message) public returns (bool result) {
result = (keccak256(abi.encodePacked(a)) != keccak256(abi.encodePacked(b)));
emit AssertionEventString(result, message, "notEqual", a, b);
}
/*----------------- Greater than --------------------*/
function greaterThan(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a > b);
emit AssertionEventUint(result, message, "greaterThan", a, b);
}
function greaterThan(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a > b);
emit AssertionEventInt(result, message, "greaterThan", a, b);
}
// TODO: safely compare between uint and int
function greaterThan(uint256 a, int256 b, string memory message) public returns (bool result) {
if(b < int(0)) {
// int is negative uint "a" always greater
result = true;
} else {
result = (a > uint(b));
}
emit AssertionEventUintInt(result, message, "greaterThan", a, b);
}
function greaterThan(int256 a, uint256 b, string memory message) public returns (bool result) {
if(a < int(0)) {
// int is negative uint "b" always greater
result = false;
} else {
result = (uint(a) > b);
}
emit AssertionEventIntUint(result, message, "greaterThan", a, b);
}
/*----------------- Lesser than --------------------*/
function lesserThan(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a < b);
emit AssertionEventUint(result, message, "lesserThan", a, b);
}
function lesserThan(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a < b);
emit AssertionEventInt(result, message, "lesserThan", a, b);
}
// TODO: safely compare between uint and int
function lesserThan(uint256 a, int256 b, string memory message) public returns (bool result) {
if(b < int(0)) {
// int is negative int "b" always lesser
result = false;
} else {
result = (a < uint(b));
}
emit AssertionEventUintInt(result, message, "lesserThan", a, b);
}
function lesserThan(int256 a, uint256 b, string memory message) public returns (bool result) {
if(a < int(0)) {
// int is negative int "a" always lesser
result = true;
} else {
result = (uint(a) < b);
}
emit AssertionEventIntUint(result, message, "lesserThan", a, b);
}
}
[core]
repositoryformatversion = 0
filemode = false
bare = false
logallrefupdates = true
symlinks = false
ignorecase = true
ref: refs/heads/Budd
DIRC e�-���e�-���B��ƴ��i�/��֚i�Hk��y�$.deps/remix-tests/remix_accounts.sole�'6w�e�'6w��������b 2�H"��(���,�Dz!.deps/remix-tests/remix_tests.sole�-���e�-���M�����o#q{K���Sc��X�W�n.prettierrc.jsone�-���e�-���L���}�7i��$���IQ��B.�
README.txte�-��e�-��=��+��^x;n��G�g�f6�contracts/1_Storage.sole�-�e�-�A���I����*̛���>K���?�'contracts/2_Owner.sole�-iNe�-iNC�����l6 l��8Յ�%��+�Zcontracts/3_Ballot.sole�-N/�e�-N/�E���Q=Imv8�n{s9'/�:pSB�6scripts/deploy_with_ethers.tse�-��e�-��F���ܠ��ݾ?87G�k�)P�.�scripts/deploy_with_web3.tse�-�e�e�-�e�G���'S��Н��M�%5�s<��wscripts/ethers-lib.tse�-��e�-��H��%�~P9���WrV���ߒ�~�scripts/web3-lib.tse�-}�e�-}�J���In��ˠ/�ds�9���5��[tests/Ballot_test.sole�-�e�-�K����7�Ûv�%��1���$�s��tests/storage.test.js 7�*�y2�;mT0Y%G�K�
x�]S]k�@��<$s�%�Ӧ)���kV�Z�T�{�8���}�J_�ݝ���K+�����_�ٺ�؃�d 8`-�F���,9;�� ?���Z2
���w*�i[�ސP�}P��8k+����u7:�y�8������$E@e����wAe���]3+K�ή6u�re��8�u9����� kY�k��c��֍8�����S�ɬ�� -X���e����ѻ�褜�$n��s������k��7ߌ\.���f3t�}Ŧ�E��3�����t��i>�+� -I;�!�(s�W?n�-mV��XH9?Y������$jה���_F���VmZs]~� �� BO�{�K<�ⷁ%CrlI�h��wO-��\ъ�k/��z��Nѐ��㶚�rR���V�! Ӗ�B���&�������79*X�����V-�ҝG[N?݋�9K�Z@=�ʧT��RZ1|��m��{9[8,;�o�4Z0&��t�|n
ևn:��i~��R���s�=f�/ƣ)�R�8Zd�O�S�|Φg��NVo~���a��sc��χ�& ˷yY�=�^ڎ�+��z�Ʃ�`��ں.;��Č�q{!�3>>��?}�V
x�+)JMU��d040031Q(J�ͬ�OLN�/�+)�+��a��eaf�~�k�2'xpd��_�EuIj1T鎝Ә��^y(}=��c� ���7�U(l
x��Q[k�0ݳ��O6$��<l��A�` ��X e��k�%O��4�����d��窣\��7/�׫���+U��4�\�a�Q�����j�i4Nnk o�*��~���"ŻT\�4 T�X����ɳ��0C��+�10��l�֒U!��C�T0���Xwjq4��++�Ia���z�#*D���dq�Ajmy�#���W� �|���q��^�/�&��h�G��l'���5+k���:��Q��͵*�t�t߉�hZ_EC`Ҕ��L/�8Ύ�i�0�ZD'f��98�STT��Q�(�] ������F�=Ϊ�?t�)J'���XЯV�脺;���Ze8J���Z� eJzD
_�V�� \�q��C�ucuygg�ar<JF��{��j7��5q��7�[�L��hw�<��ZO����հ\"�<�>�5�
x���A
�0E]��d�4M#".�x�i2���J��xz�����x��%�(�6�F
3X����O�q6`�O��Hƶ'7Zc��*�R`�!̱��y{�\O�L1�����Xt�E[4���
����=J�kg�s|�p~$^���$��_I
x�M��J�@E}�W\�Є���RhA�i|��f���솝 ZJ�]����0Ý3�Ni}����&����`z�V%a`� ��!-!.��P ��׀����'Ú2�p̢<dz%ńN<i�w���8˯ ���gp��ƨGAI��087^�?���U�C�M�
�5����~p1���"} :r|=���G���@����I�]��eYD��z����"�/�W֔�(J�F�b��)$��� �`[�/ed�%�9���o��[ʬo�UU��7�=]�<9��3��"��߱�6e1��&itN����3
x�+)JMU0�`01000P(J�ͬ�-I-.)f0J\!:��yi�h����Ԟ�ن�Y<
x�+)JMU024c01000P�KI-(fH8�7Nc�HE��]��]�ze�?�߆f&&
zE�%%��EE�zY��y ���+V{��g����oı�syP�A��.��z%% �j_�g����(��S ��_'�Y���J��K��) ��s_wq� ;A!��G�q�5��E�%� �r+ � 7-��*^'Spo�� G *JR�K�^])��֒����ا�K�/�2|�PO]�
x�ՒOO1�9�S<���ϦBD��R�=P���=�Z;�cJ���'$m�ֲ=��f<���.�.���]��2 ��I ��p8���q�$0ޙ{���$�z`P���@ݔ� �̦�L Y�~^�����K���ȩ�ꍑ�S�g&Jv"���rM9�V?%&Y�#.�/3��V�Y��GO�K)/�� �ɛ!�A��I+�Y�� ��|'#1-�rwW;����A�兏K��u,�������q�jc��@�E�h+&k�ܤ��j�� �$�O������< ���� y�i%]��ƕ�%qa\ʹY������m���R���/��73������ƽ�֟��+kx_O��a�~<��]�U���g<�
x�}T]o�6��~Łf;plC;,��Y0hѢ�� 4y%�H��ʎQ���$[΂�E���:��p���߼}�j��×����h5�H���������/��/�bǪ�bp�X9��z9�e��o�����(l� ,m����>G��hU���Wx/V����wC{<��'��!tТ�� +-m4�(c�bĎ�^I�j���'/(��Op����2�"��ɤ�c��G2�dl����CF��.u0Y H�ޒ�[B+�ac�8ژkL������} �J�Q��j�4d(1f���Lc�^�F ��l\*i<=�n�!����(� ZUsnj%i��$�N���(��N�L`� ���Ɵ[�D�I�\��RT*����j >ΰi>�?ց�ڽd�J!�*kH��M��e�ub�N��6Ё����E�
�tHbt��p ��P.�8�I:�wNy��T��[%8�c8p�չv7ؤ��<�7�X�۳�at{:�D<MW��ڿ?�JnH��N�nh�‘j�I���n���e���B5��yZ�`s��p&00w�z������8�눇�aN*�Ø=3}��{jE���'��b��T��D���dԓ�C��=#b�N�=Zk�Y'�c�l�սwb_2�V`pO<��^d���a���Ü"�E�^�U��� =
�W{K�U"z�� �A�~�� B��
x�+)JMU042`040031Q0�.�/JLO�+��a�+'z)��:o��&����43��P�F���y�E`e3=��v[���}3�yw}j?C��8�)1''�����3�-���W�1I[� [��1,
x����
�0 �=�)B�2ă��[����n٬�f�� c�.+l0cB{J�� ��ɪ�����e)\}�{�Py���l���X<N�r�t���|X��E���RH��/����D\[<s�� �,NV�R�&�3�0<{�;U<������6^p��k���xH�����%�pυ._ݢ6��̢�
x�-̽
�0Fa�\�;�C��3�UAD�P���M��5-�E�wQ{�N�� ���$�q�׬dM�Sv2d�Ln�cUfs��\}���}dž���� 9�a��J�B��W�'.��k�G<^�hu���Fa�$� `k�b��0Ħc G!:���8�>���Q�?z���N�@�
x�͖�N�@�{��re���j!A�!$T��Ro��8��즻k B�{�>��؉q��$�l�ߌg�?��m8�68���������=u�I�ܹ��(�s�}��|�� c&�xJ@r��T��r��t��߻� ��-��Õ�(|�"Sq�rv�/M��܇��v�JP6�)JIƘ����$S4���Ŀh��Q8�L N�@�
K$Q|�����
r��L�2?8��c��]�C��\W���)H�(�D��c�P~�#Q�tS�h!��0s}�8�N ���˴foMɥ����_/`�f>1û��2�yrO f��S'N,��WC���#�Mt# �5N��EgڋZ��'-K��\�?����5�{!4 �F`[����؄ �Zm d�R/��|W9y����pC�.��������9p�����P�($�L��A;��Ty}GWg�>�X��^/�6�E�I��`QM����K���u��J���.���
�=W_G���ZE�T1A�!���Il�E�p�3A�$��K�r¶������ J�ϸ�i�)��8EBV��9��N��%��q���9��K]UkE6�G��;��҄}ԩh�I�>]�Rf-��ˑ�#%�t��frT�L�xI�Fw�/�H
P/���םN縷ڽqt����F�貂���?���3����~�K����x�����6�7Dvsu�>���i�P�2���?�&�,T�1Q�#�i���\&P�MS"��c����E����lz-��&�t�w��^f�z&)�7{W�<��]� �F����m�]���֕{�y�ʊ�n\U�Te��/*+��i�V��a�c�.)�갊�Z���^�����q`=I�pv�
�p"&�:b�״O�/}��
x�mT]k�@�~�<$GN� �iK!�|@�P
^Ik�R��ܭ�[���$�j�@�������*�L�˫ˏ�T�2V���+,��n8�
���_�K�L�_/�����S<�D�Ќ��Y���A0;; p�����R2
��H��"K5vN��E3��f��a�>����8��Z�^���4 [8T�I���Į316���u����2�ւ�㼥r�s�/����u=N��:e۠ ��Jժ3fY�Vc�w��Us>�? �����C0�������:�-O���#� w���6I�lM�_�Jn0��.Г�G�94o�4D��gk�T�vңL�qe�h�)T����X]�h���0�$�]s�U+�fΝq���Re%�C��- �]�c�W��V(ȊZR&qW��~3�ڎfA�>�s�· �|,?X��$%�X��l�١�� ���Wg��ض��r��_��Y�mH ,��O�QUE�RU�@�
��a��MUN�3�+�3��9����Yʸ`���(�3V����@t�S�N�hw<9������h@[+��G��LαI_9���-�5kq��hF��7�{�tƃ����]Ȟ�����~��ϋ_aA.�;�����E{u�@��'Hc���_��p
x�M��j�0�]�?2P骔�bZ{�Q�c��1��H'��>�v�UH�ϗ��x|Z�e���SC
���{*�%u����l��)�������+S㝊5�*�pCd^5 Ohő�{G#$m�)M��6���l����(����zcF���M��)�rث�aH����}oBTζS;�f�dz�j�>�lGu�� ��:�=o��N/�FU�ȃ@��u��m�˕���D�z�UA,�`$����n�N�<Ñ�5c q�g+�杣||&�q�)ն��,y����
����0�/��e����ݦ)m�{Q� .I��*���
x�m��k�@�{޿❪�%��Zz(�����d������ID����K-���}��͏Ir� ��0�z���/UJڑ���f�Udg�Z-�� ��rWH8��L��(x �x��� � z���V��l��Q�dT��#,�UTj�W�!QK�d�w�rl�YF�o+��Ԫ���Å��9n���=Y��B��V�<��I���i� ] �y'�����w��"��RZY4�� \�����V:eetW� ����\�8u @��E���>�qeu?�R����b��� k_@jEt!����K����{��
x�uTMs�4�_�N�b��.)���L��653���u"K�%��${>²7������'������W�lV���nu��;��y�����v�Ԇ:~CK{=؈��K�uC��^(�� �k��\�u���h�$�,!"rGP�n�h|��H-F���ܯ@���:��T�3$-�gK��!�;�]�wϖ�z��v��E�ƻ��\�e�&za
�J}�P���&���z�D#4��39v�kH=-�� �{4��-�q�*�}�"4�}F�=���A�����?z��[?A�UXǤ ��V��5Y?V�B)�������[�R4#��hk},N��6����o�6z�:gVJmo7��6�H牰��%��_i4����ti7_v��u,F����P@�EC��r-:��R�~�Ԍ�%��=���S� ���"��Ցr�1R8��� 6�/����3�D���m�Q��h9 �}�n/-����fQ�f���1��<1<� ����1<)��˗e�������x8���7Fwk4cp�R�������JLDc�y�w3�,��(�\�,ǜ[lW��N]MR���+�$��B��PS�l����!�C��_��Z�'-���7$�t촭�z��C��J�3���z/����O�Ԧb ��C��#�R̯�9���`������㟋�zZ��[3��DZU�0j�c��h.� 6���P(�I'��5:�;;eˏj�����z;��T��ځD���K�rz͒`u:��5����Ǵ���ңRI"������['�`��*�/�&^
x�+)JMU�0c040031QpJ���/�/I-.�+��a�ɛ����s)�M���0=w0���$�(1=U�6����|���eU%W�4��ڦ���wm�&�
x�+)JMU047c040031QHI-�ɯ�/�,ɈO-�H-*�+)f���-�X�W]l���jU�4� ����$c��; v��������Q� ��z��!f��d&����sa�n��UMO�|8SU2 ��h]�����o�Ea۷>c�?���&�GQ
x��Wm��6 ���
��$�朴�0�i�m-��m�ZtA��L�M�<INf���l�I�0}�c���!Em����_=z��|o߼���5͑+��-�k��(�«7�o�d�Ѩ�dWP�т�������-�o��r4�__���[M5C��0&�}Q�n��a�\+� M�j)rT
|�K��@�;���#���r��$����h��lr �F �+��5��J����?U@�F4�i�]���� ��.݂� �@�DC�R �I$E��:UR��⭢��k�wh��il,��� ��t�ζ�O-aV�D������v �h '�����.A ��Ԅr�M�Aiv۴� b+�H��Q�c'�Ș�OO�sbt�-�P5y y��F���KsR�0U)��/`��Ƥ�f䦧�y!�P��Q42*�N@�n6�搗�J�� T��)�M���#�4��Ry��u� ��fy���H4��8�jy)D��q0�3�P���BM$� �js��V�����\p� !'>�wk���M-M#�D��Tj�)��e'�q �3_K+x��7k+$L,dV�X�g�ƙ���Ç��o����,ˎ�1�6�
h�j!�l�J]�͟�k ��Ӫ��Q�$˲�x�H�y��Z\L� /P:@�X��M��2P=Mc���ى\����H>���c�����{��EilÐ-\tI��`?�g-lr˜���Z�]I��{��o���tP��=�jx'L=u��O��ϘĿ*q�D��V���i�~1q� 6 �x�� ��Ԣ�����g��Yg��6}�۲L��7I͆�Y�bzRhSb)� �/��b��t�{6;�Z��iN�p(i��[�[�yx��Io� ��(VZH�CH�{tק�z��������Lz��q����[dۛ�h��Qe����tV%e#-�Y�X��N�a�Ң*֊L��5�!lE� ����r Q�� ���K���k3X�%9:vOqjae'���c�
�X^@4}H���&����L����I���P��s�Z�G�x? �@X]��K=qEm�.<\�����' �)���-,r�|Z�'n{oK�~M��}��~�K��{�-`ByΚ���63��i��7�(:����:3g�ʼn��R�765�) R��|1N�Q!���]$I�)�� �~$
�H��s�d؂���~>��,�.Ψ78:u��%FI����Y�j�e t)�H�EE45gzk� �{����zyi쪞���T�\�E^��n ߌ�ʹ��9�h��O�Z➊FyzRnΤ<7[����Ƀ�0n}�w�����줟�)����p;t�]W��N'��ˣ��Lʵ���hR���tJ6�5,F��ɦCe��8v���j��
�T�x�Y hBSg��v�n��uب�4Ws{������D~�J(�<�� ���ؾ���94 ��h�!IbGbNr��p��㿠�[�
4936c0760c11c04a29c559094d1fa749563d3033
4936c0760c11c04a29c559094d1fa749563d3033
{
"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": {}
}
]
}
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's 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.
{
"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": "608060405234801561000f575f80fd5b506108f28061001d5f395ff3fe608060405234801561000f575f80fd5b5060043610610055575f3560e01c80632e64cec1146100595780636057361d146100775780636f760f41146100935780638bab8dd5146100af5780639e7a13ad146100df575b5f80fd5b610061610110565b60405161006e919061029f565b60405180910390f35b610091600480360381019061008c91906102f3565b610118565b005b6100ad60048036038101906100a8919061045a565b610121565b005b6100c960048036038101906100c491906104b4565b6101a5565b6040516100d6919061029f565b60405180910390f35b6100f960048036038101906100f491906102f3565b6101d2565b604051610107929190610575565b60405180910390f35b5f8054905090565b805f8190555050565b6001604051806040016040528083815260200184815250908060018154018082558091505060019003905f5260205f2090600202015f909190919091505f820151815f0155602082015181600101908161017b919061079d565b5050508060028360405161018f91906108a6565b9081526020016040518091039020819055505050565b6002818051602081018201805184825260208301602085012081835280955050505050505f915090505481565b600181815481106101e1575f80fd5b905f5260205f2090600202015f91509050805f015490806001018054610206906105d0565b80601f0160208091040260200160405190810160405280929190818152602001828054610232906105d0565b801561027d5780601f106102545761010080835404028352916020019161027d565b820191905f5260205f20905b81548152906001019060200180831161026057829003601f168201915b5050505050905082565b5f819050919050565b61029981610287565b82525050565b5f6020820190506102b25f830184610290565b92915050565b5f604051905090565b5f80fd5b5f80fd5b6102d281610287565b81146102dc575f80fd5b50565b5f813590506102ed816102c9565b92915050565b5f60208284031215610308576103076102c1565b5b5f610315848285016102df565b91505092915050565b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61036c82610326565b810181811067ffffffffffffffff8211171561038b5761038a610336565b5b80604052505050565b5f61039d6102b8565b90506103a98282610363565b919050565b5f67ffffffffffffffff8211156103c8576103c7610336565b5b6103d182610326565b9050602081019050919050565b828183375f83830152505050565b5f6103fe6103f9846103ae565b610394565b90508281526020810184848401111561041a57610419610322565b5b6104258482856103de565b509392505050565b5f82601f8301126104415761044061031e565b5b81356104518482602086016103ec565b91505092915050565b5f80604083850312156104705761046f6102c1565b5b5f83013567ffffffffffffffff81111561048d5761048c6102c5565b5b6104998582860161042d565b92505060206104aa858286016102df565b9150509250929050565b5f602082840312156104c9576104c86102c1565b5b5f82013567ffffffffffffffff8111156104e6576104e56102c5565b5b6104f28482850161042d565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610532578082015181840152602081019050610517565b5f8484015250505050565b5f610547826104fb565b6105518185610505565b9350610561818560208601610515565b61056a81610326565b840191505092915050565b5f6040820190506105885f830185610290565b818103602083015261059a818461053d565b90509392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806105e757607f821691505b6020821081036105fa576105f96105a3565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261065c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610621565b6106668683610621565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6106a161069c61069784610287565b61067e565b610287565b9050919050565b5f819050919050565b6106ba83610687565b6106ce6106c6826106a8565b84845461062d565b825550505050565b5f90565b6106e26106d6565b6106ed8184846106b1565b505050565b5b81811015610710576107055f826106da565b6001810190506106f3565b5050565b601f8211156107555761072681610600565b61072f84610612565b8101602085101561073e578190505b61075261074a85610612565b8301826106f2565b50505b505050565b5f82821c905092915050565b5f6107755f198460080261075a565b1980831691505092915050565b5f61078d8383610766565b9150826002028217905092915050565b6107a6826104fb565b67ffffffffffffffff8111156107bf576107be610336565b5b6107c982546105d0565b6107d4828285610714565b5f60209050601f831160018114610805575f84156107f3578287015190505b6107fd8582610782565b865550610864565b601f19841661081386610600565b5f5b8281101561083a57848901518255600182019150602085019450602081019050610815565b868310156108575784890151610853601f891682610766565b8355505b6001600288020188555050505b505050505050565b5f81905092915050565b5f610880826104fb565b61088a818561086c565b935061089a818560208601610515565b80840191505092915050565b5f6108b18284610876565b91508190509291505056fea26469706673582212202ca85e69a0270391c3932893581327baecc9b5ea3ac89ecb57ca239aabcf0d3664736f6c63430008180033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x8F2 DUP1 PUSH2 0x1D PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x55 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2E64CEC1 EQ PUSH2 0x59 JUMPI DUP1 PUSH4 0x6057361D EQ PUSH2 0x77 JUMPI DUP1 PUSH4 0x6F760F41 EQ PUSH2 0x93 JUMPI DUP1 PUSH4 0x8BAB8DD5 EQ PUSH2 0xAF JUMPI DUP1 PUSH4 0x9E7A13AD EQ PUSH2 0xDF JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x61 PUSH2 0x110 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x6E SWAP2 SWAP1 PUSH2 0x29F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x91 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x8C SWAP2 SWAP1 PUSH2 0x2F3 JUMP JUMPDEST PUSH2 0x118 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xAD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xA8 SWAP2 SWAP1 PUSH2 0x45A JUMP JUMPDEST PUSH2 0x121 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xC9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xC4 SWAP2 SWAP1 PUSH2 0x4B4 JUMP JUMPDEST PUSH2 0x1A5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD6 SWAP2 SWAP1 PUSH2 0x29F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xF9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF4 SWAP2 SWAP1 PUSH2 0x2F3 JUMP JUMPDEST PUSH2 0x1D2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x107 SWAP3 SWAP2 SWAP1 PUSH2 0x575 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH0 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE POP SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH0 DUP3 ADD MLOAD DUP2 PUSH0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP2 PUSH2 0x17B SWAP2 SWAP1 PUSH2 0x79D JUMP JUMPDEST POP POP POP DUP1 PUSH1 0x2 DUP4 PUSH1 0x40 MLOAD PUSH2 0x18F SWAP2 SWAP1 PUSH2 0x8A6 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x2 DUP2 DUP1 MLOAD PUSH1 0x20 DUP2 ADD DUP3 ADD DUP1 MLOAD DUP5 DUP3 MSTORE PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP6 ADD KECCAK256 DUP2 DUP4 MSTORE DUP1 SWAP6 POP POP POP POP POP POP PUSH0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x1E1 JUMPI PUSH0 DUP1 REVERT JUMPDEST SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH0 SWAP2 POP SWAP1 POP DUP1 PUSH0 ADD SLOAD SWAP1 DUP1 PUSH1 0x1 ADD DUP1 SLOAD PUSH2 0x206 SWAP1 PUSH2 0x5D0 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x232 SWAP1 PUSH2 0x5D0 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x27D JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x254 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x27D JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x260 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP DUP3 JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x299 DUP2 PUSH2 0x287 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2B2 PUSH0 DUP4 ADD DUP5 PUSH2 0x290 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x2D2 DUP2 PUSH2 0x287 JUMP JUMPDEST DUP2 EQ PUSH2 0x2DC JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2ED DUP2 PUSH2 0x2C9 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x308 JUMPI PUSH2 0x307 PUSH2 0x2C1 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x315 DUP5 DUP3 DUP6 ADD PUSH2 0x2DF JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH2 0x36C DUP3 PUSH2 0x326 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x38B JUMPI PUSH2 0x38A PUSH2 0x336 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x39D PUSH2 0x2B8 JUMP JUMPDEST SWAP1 POP PUSH2 0x3A9 DUP3 DUP3 PUSH2 0x363 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x3C8 JUMPI PUSH2 0x3C7 PUSH2 0x336 JUMP JUMPDEST JUMPDEST PUSH2 0x3D1 DUP3 PUSH2 0x326 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x3FE PUSH2 0x3F9 DUP5 PUSH2 0x3AE JUMP JUMPDEST PUSH2 0x394 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x41A JUMPI PUSH2 0x419 PUSH2 0x322 JUMP JUMPDEST JUMPDEST PUSH2 0x425 DUP5 DUP3 DUP6 PUSH2 0x3DE JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x441 JUMPI PUSH2 0x440 PUSH2 0x31E JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x451 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x3EC JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x470 JUMPI PUSH2 0x46F PUSH2 0x2C1 JUMP JUMPDEST JUMPDEST PUSH0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x48D JUMPI PUSH2 0x48C PUSH2 0x2C5 JUMP JUMPDEST JUMPDEST PUSH2 0x499 DUP6 DUP3 DUP7 ADD PUSH2 0x42D JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x4AA DUP6 DUP3 DUP7 ADD PUSH2 0x2DF JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4C9 JUMPI PUSH2 0x4C8 PUSH2 0x2C1 JUMP JUMPDEST JUMPDEST PUSH0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x4E6 JUMPI PUSH2 0x4E5 PUSH2 0x2C5 JUMP JUMPDEST JUMPDEST PUSH2 0x4F2 DUP5 DUP3 DUP6 ADD PUSH2 0x42D JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x532 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x517 JUMP JUMPDEST PUSH0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x547 DUP3 PUSH2 0x4FB JUMP JUMPDEST PUSH2 0x551 DUP2 DUP6 PUSH2 0x505 JUMP JUMPDEST SWAP4 POP PUSH2 0x561 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x515 JUMP JUMPDEST PUSH2 0x56A DUP2 PUSH2 0x326 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x588 PUSH0 DUP4 ADD DUP6 PUSH2 0x290 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x59A DUP2 DUP5 PUSH2 0x53D JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x5E7 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x5FA JUMPI PUSH2 0x5F9 PUSH2 0x5A3 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP DUP2 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x8 DUP4 MUL PUSH2 0x65C PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH2 0x621 JUMP JUMPDEST PUSH2 0x666 DUP7 DUP4 PUSH2 0x621 JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x6A1 PUSH2 0x69C PUSH2 0x697 DUP5 PUSH2 0x287 JUMP JUMPDEST PUSH2 0x67E JUMP JUMPDEST PUSH2 0x287 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x6BA DUP4 PUSH2 0x687 JUMP JUMPDEST PUSH2 0x6CE PUSH2 0x6C6 DUP3 PUSH2 0x6A8 JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH2 0x62D JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH0 SWAP1 JUMP JUMPDEST PUSH2 0x6E2 PUSH2 0x6D6 JUMP JUMPDEST PUSH2 0x6ED DUP2 DUP5 DUP5 PUSH2 0x6B1 JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x710 JUMPI PUSH2 0x705 PUSH0 DUP3 PUSH2 0x6DA JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x6F3 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x755 JUMPI PUSH2 0x726 DUP2 PUSH2 0x600 JUMP JUMPDEST PUSH2 0x72F DUP5 PUSH2 0x612 JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x73E JUMPI DUP2 SWAP1 POP JUMPDEST PUSH2 0x752 PUSH2 0x74A DUP6 PUSH2 0x612 JUMP JUMPDEST DUP4 ADD DUP3 PUSH2 0x6F2 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x775 PUSH0 NOT DUP5 PUSH1 0x8 MUL PUSH2 0x75A JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x78D DUP4 DUP4 PUSH2 0x766 JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x7A6 DUP3 PUSH2 0x4FB JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x7BF JUMPI PUSH2 0x7BE PUSH2 0x336 JUMP JUMPDEST JUMPDEST PUSH2 0x7C9 DUP3 SLOAD PUSH2 0x5D0 JUMP JUMPDEST PUSH2 0x7D4 DUP3 DUP3 DUP6 PUSH2 0x714 JUMP JUMPDEST PUSH0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH2 0x805 JUMPI PUSH0 DUP5 ISZERO PUSH2 0x7F3 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH2 0x7FD DUP6 DUP3 PUSH2 0x782 JUMP JUMPDEST DUP7 SSTORE POP PUSH2 0x864 JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH2 0x813 DUP7 PUSH2 0x600 JUMP JUMPDEST PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x83A JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x815 JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH2 0x857 JUMPI DUP5 DUP10 ADD MLOAD PUSH2 0x853 PUSH1 0x1F DUP10 AND DUP3 PUSH2 0x766 JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x880 DUP3 PUSH2 0x4FB JUMP JUMPDEST PUSH2 0x88A DUP2 DUP6 PUSH2 0x86C JUMP JUMPDEST SWAP4 POP PUSH2 0x89A DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x515 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x8B1 DUP3 DUP5 PUSH2 0x876 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x2C 0xA8 MCOPY PUSH10 0xA0270391C39328935813 0x27 0xBA 0xEC 0xC9 0xB5 0xEA GASPRICE 0xC8 SWAP15 0xCB JUMPI 0xCA 0x23 SWAP11 0xAB 0xCF 0xD CALLDATASIZE PUSH5 0x736F6C6343 STOP ADDMOD XOR STOP CALLER ",
"sourceMap": "138:649:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@addPerson_57": {
"entryPoint": 289,
"id": 57,
"parameterSlots": 2,
"returnSlots": 0
},
"@nameToFavoriteNumber_16": {
"entryPoint": 421,
"id": 16,
"parameterSlots": 0,
"returnSlots": 0
},
"@people_12": {
"entryPoint": 466,
"id": 12,
"parameterSlots": 0,
"returnSlots": 0
},
"@retrieve_34": {
"entryPoint": 272,
"id": 34,
"parameterSlots": 0,
"returnSlots": 1
},
"@store_26": {
"entryPoint": 280,
"id": 26,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr": {
"entryPoint": 1004,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr": {
"entryPoint": 1069,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 735,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptr": {
"entryPoint": 1204,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_uint256": {
"entryPoint": 1114,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 755,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1341,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 2166,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 656,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 2214,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 671,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256_t_string_memory_ptr__to_t_uint256_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1397,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 916,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 696,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 942,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_dataslot_t_string_storage": {
"entryPoint": 1536,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 1275,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 1285,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 2156,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"clean_up_bytearray_end_slots_t_string_storage": {
"entryPoint": 1812,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"cleanup_t_uint256": {
"entryPoint": 647,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clear_storage_range_t_bytes1": {
"entryPoint": 1778,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"convert_t_uint256_to_t_uint256": {
"entryPoint": 1671,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage": {
"entryPoint": 1949,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"copy_calldata_to_memory_with_cleanup": {
"entryPoint": 990,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory_with_cleanup": {
"entryPoint": 1301,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"divide_by_32_ceil": {
"entryPoint": 1554,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 1488,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_used_part_and_set_length_of_short_byte_array": {
"entryPoint": 1922,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 867,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"identity": {
"entryPoint": 1662,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mask_bytes_dynamic": {
"entryPoint": 1894,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x22": {
"entryPoint": 1443,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 822,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"prepare_store_t_uint256": {
"entryPoint": 1704,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 798,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 802,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 709,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 705,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 806,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"shift_left_dynamic": {
"entryPoint": 1569,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"shift_right_unsigned_dynamic": {
"entryPoint": 1882,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"storage_set_to_zero_t_uint256": {
"entryPoint": 1754,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"update_byte_slice_dynamic32": {
"entryPoint": 1581,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"update_storage_value_t_uint256_to_t_uint256": {
"entryPoint": 1713,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 713,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"zero_value_for_split_t_uint256": {
"entryPoint": 1750,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nativeSrc": "0:11796:1",
"nodeType": "YulBlock",
"src": "0:11796:1",
"statements": [
{
"body": {
"nativeSrc": "52:32:1",
"nodeType": "YulBlock",
"src": "52:32:1",
"statements": [
{
"nativeSrc": "62:16:1",
"nodeType": "YulAssignment",
"src": "62:16:1",
"value": {
"name": "value",
"nativeSrc": "73:5:1",
"nodeType": "YulIdentifier",
"src": "73:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "62:7:1",
"nodeType": "YulIdentifier",
"src": "62:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nativeSrc": "7:77:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "34:5:1",
"nodeType": "YulTypedName",
"src": "34:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "44:7:1",
"nodeType": "YulTypedName",
"src": "44:7:1",
"type": ""
}
],
"src": "7:77:1"
},
{
"body": {
"nativeSrc": "155:53:1",
"nodeType": "YulBlock",
"src": "155:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "172:3:1",
"nodeType": "YulIdentifier",
"src": "172:3:1"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "195:5:1",
"nodeType": "YulIdentifier",
"src": "195:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "177:17:1",
"nodeType": "YulIdentifier",
"src": "177:17:1"
},
"nativeSrc": "177:24:1",
"nodeType": "YulFunctionCall",
"src": "177:24:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "165:6:1",
"nodeType": "YulIdentifier",
"src": "165:6:1"
},
"nativeSrc": "165:37:1",
"nodeType": "YulFunctionCall",
"src": "165:37:1"
},
"nativeSrc": "165:37:1",
"nodeType": "YulExpressionStatement",
"src": "165:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "90:118:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "143:5:1",
"nodeType": "YulTypedName",
"src": "143:5:1",
"type": ""
},
{
"name": "pos",
"nativeSrc": "150:3:1",
"nodeType": "YulTypedName",
"src": "150:3:1",
"type": ""
}
],
"src": "90:118:1"
},
{
"body": {
"nativeSrc": "312:124:1",
"nodeType": "YulBlock",
"src": "312:124:1",
"statements": [
{
"nativeSrc": "322:26:1",
"nodeType": "YulAssignment",
"src": "322:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "334:9:1",
"nodeType": "YulIdentifier",
"src": "334:9:1"
},
{
"kind": "number",
"nativeSrc": "345:2:1",
"nodeType": "YulLiteral",
"src": "345:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "330:3:1",
"nodeType": "YulIdentifier",
"src": "330:3:1"
},
"nativeSrc": "330:18:1",
"nodeType": "YulFunctionCall",
"src": "330:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "322:4:1",
"nodeType": "YulIdentifier",
"src": "322:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "402:6:1",
"nodeType": "YulIdentifier",
"src": "402:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "415:9:1",
"nodeType": "YulIdentifier",
"src": "415:9:1"
},
{
"kind": "number",
"nativeSrc": "426:1:1",
"nodeType": "YulLiteral",
"src": "426:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "411:3:1",
"nodeType": "YulIdentifier",
"src": "411:3:1"
},
"nativeSrc": "411:17:1",
"nodeType": "YulFunctionCall",
"src": "411:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "358:43:1",
"nodeType": "YulIdentifier",
"src": "358:43:1"
},
"nativeSrc": "358:71:1",
"nodeType": "YulFunctionCall",
"src": "358:71:1"
},
"nativeSrc": "358:71:1",
"nodeType": "YulExpressionStatement",
"src": "358:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nativeSrc": "214:222:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "284:9:1",
"nodeType": "YulTypedName",
"src": "284:9:1",
"type": ""
},
{
"name": "value0",
"nativeSrc": "296:6:1",
"nodeType": "YulTypedName",
"src": "296:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "307:4:1",
"nodeType": "YulTypedName",
"src": "307:4:1",
"type": ""
}
],
"src": "214:222:1"
},
{
"body": {
"nativeSrc": "482:35:1",
"nodeType": "YulBlock",
"src": "482:35:1",
"statements": [
{
"nativeSrc": "492:19:1",
"nodeType": "YulAssignment",
"src": "492:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nativeSrc": "508:2:1",
"nodeType": "YulLiteral",
"src": "508:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "502:5:1",
"nodeType": "YulIdentifier",
"src": "502:5:1"
},
"nativeSrc": "502:9:1",
"nodeType": "YulFunctionCall",
"src": "502:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nativeSrc": "492:6:1",
"nodeType": "YulIdentifier",
"src": "492:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nativeSrc": "442:75:1",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nativeSrc": "475:6:1",
"nodeType": "YulTypedName",
"src": "475:6:1",
"type": ""
}
],
"src": "442:75:1"
},
{
"body": {
"nativeSrc": "612:28:1",
"nodeType": "YulBlock",
"src": "612:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "629:1:1",
"nodeType": "YulLiteral",
"src": "629:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "632:1:1",
"nodeType": "YulLiteral",
"src": "632:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "622:6:1",
"nodeType": "YulIdentifier",
"src": "622:6:1"
},
"nativeSrc": "622:12:1",
"nodeType": "YulFunctionCall",
"src": "622:12:1"
},
"nativeSrc": "622:12:1",
"nodeType": "YulExpressionStatement",
"src": "622:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "523:117:1",
"nodeType": "YulFunctionDefinition",
"src": "523:117:1"
},
{
"body": {
"nativeSrc": "735:28:1",
"nodeType": "YulBlock",
"src": "735:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "752:1:1",
"nodeType": "YulLiteral",
"src": "752:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "755:1:1",
"nodeType": "YulLiteral",
"src": "755:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "745:6:1",
"nodeType": "YulIdentifier",
"src": "745:6:1"
},
"nativeSrc": "745:12:1",
"nodeType": "YulFunctionCall",
"src": "745:12:1"
},
"nativeSrc": "745:12:1",
"nodeType": "YulExpressionStatement",
"src": "745:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nativeSrc": "646:117:1",
"nodeType": "YulFunctionDefinition",
"src": "646:117:1"
},
{
"body": {
"nativeSrc": "812:79:1",
"nodeType": "YulBlock",
"src": "812:79:1",
"statements": [
{
"body": {
"nativeSrc": "869:16:1",
"nodeType": "YulBlock",
"src": "869:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "878:1:1",
"nodeType": "YulLiteral",
"src": "878:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "881:1:1",
"nodeType": "YulLiteral",
"src": "881:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "871:6:1",
"nodeType": "YulIdentifier",
"src": "871:6:1"
},
"nativeSrc": "871:12:1",
"nodeType": "YulFunctionCall",
"src": "871:12:1"
},
"nativeSrc": "871:12:1",
"nodeType": "YulExpressionStatement",
"src": "871:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "835:5:1",
"nodeType": "YulIdentifier",
"src": "835:5:1"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "860:5:1",
"nodeType": "YulIdentifier",
"src": "860:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "842:17:1",
"nodeType": "YulIdentifier",
"src": "842:17:1"
},
"nativeSrc": "842:24:1",
"nodeType": "YulFunctionCall",
"src": "842:24:1"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "832:2:1",
"nodeType": "YulIdentifier",
"src": "832:2:1"
},
"nativeSrc": "832:35:1",
"nodeType": "YulFunctionCall",
"src": "832:35:1"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "825:6:1",
"nodeType": "YulIdentifier",
"src": "825:6:1"
},
"nativeSrc": "825:43:1",
"nodeType": "YulFunctionCall",
"src": "825:43:1"
},
"nativeSrc": "822:63:1",
"nodeType": "YulIf",
"src": "822:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nativeSrc": "769:122:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "805:5:1",
"nodeType": "YulTypedName",
"src": "805:5:1",
"type": ""
}
],
"src": "769:122:1"
},
{
"body": {
"nativeSrc": "949:87:1",
"nodeType": "YulBlock",
"src": "949:87:1",
"statements": [
{
"nativeSrc": "959:29:1",
"nodeType": "YulAssignment",
"src": "959:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "981:6:1",
"nodeType": "YulIdentifier",
"src": "981:6:1"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "968:12:1",
"nodeType": "YulIdentifier",
"src": "968:12:1"
},
"nativeSrc": "968:20:1",
"nodeType": "YulFunctionCall",
"src": "968:20:1"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "959:5:1",
"nodeType": "YulIdentifier",
"src": "959:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nativeSrc": "1024:5:1",
"nodeType": "YulIdentifier",
"src": "1024:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nativeSrc": "997:26:1",
"nodeType": "YulIdentifier",
"src": "997:26:1"
},
"nativeSrc": "997:33:1",
"nodeType": "YulFunctionCall",
"src": "997:33:1"
},
"nativeSrc": "997:33:1",
"nodeType": "YulExpressionStatement",
"src": "997:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nativeSrc": "897:139:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "927:6:1",
"nodeType": "YulTypedName",
"src": "927:6:1",
"type": ""
},
{
"name": "end",
"nativeSrc": "935:3:1",
"nodeType": "YulTypedName",
"src": "935:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nativeSrc": "943:5:1",
"nodeType": "YulTypedName",
"src": "943:5:1",
"type": ""
}
],
"src": "897:139:1"
},
{
"body": {
"nativeSrc": "1108:263:1",
"nodeType": "YulBlock",
"src": "1108:263:1",
"statements": [
{
"body": {
"nativeSrc": "1154:83:1",
"nodeType": "YulBlock",
"src": "1154:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "1156:77:1",
"nodeType": "YulIdentifier",
"src": "1156:77:1"
},
"nativeSrc": "1156:79:1",
"nodeType": "YulFunctionCall",
"src": "1156:79:1"
},
"nativeSrc": "1156:79:1",
"nodeType": "YulExpressionStatement",
"src": "1156:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "1129:7:1",
"nodeType": "YulIdentifier",
"src": "1129:7:1"
},
{
"name": "headStart",
"nativeSrc": "1138:9:1",
"nodeType": "YulIdentifier",
"src": "1138:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "1125:3:1",
"nodeType": "YulIdentifier",
"src": "1125:3:1"
},
"nativeSrc": "1125:23:1",
"nodeType": "YulFunctionCall",
"src": "1125:23:1"
},
{
"kind": "number",
"nativeSrc": "1150:2:1",
"nodeType": "YulLiteral",
"src": "1150:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "1121:3:1",
"nodeType": "YulIdentifier",
"src": "1121:3:1"
},
"nativeSrc": "1121:32:1",
"nodeType": "YulFunctionCall",
"src": "1121:32:1"
},
"nativeSrc": "1118:119:1",
"nodeType": "YulIf",
"src": "1118:119:1"
},
{
"nativeSrc": "1247:117:1",
"nodeType": "YulBlock",
"src": "1247:117:1",
"statements": [
{
"nativeSrc": "1262:15:1",
"nodeType": "YulVariableDeclaration",
"src": "1262:15:1",
"value": {
"kind": "number",
"nativeSrc": "1276:1:1",
"nodeType": "YulLiteral",
"src": "1276:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "1266:6:1",
"nodeType": "YulTypedName",
"src": "1266:6:1",
"type": ""
}
]
},
{
"nativeSrc": "1291:63:1",
"nodeType": "YulAssignment",
"src": "1291:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "1326:9:1",
"nodeType": "YulIdentifier",
"src": "1326:9:1"
},
{
"name": "offset",
"nativeSrc": "1337:6:1",
"nodeType": "YulIdentifier",
"src": "1337:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1322:3:1",
"nodeType": "YulIdentifier",
"src": "1322:3:1"
},
"nativeSrc": "1322:22:1",
"nodeType": "YulFunctionCall",
"src": "1322:22:1"
},
{
"name": "dataEnd",
"nativeSrc": "1346:7:1",
"nodeType": "YulIdentifier",
"src": "1346:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nativeSrc": "1301:20:1",
"nodeType": "YulIdentifier",
"src": "1301:20:1"
},
"nativeSrc": "1301:53:1",
"nodeType": "YulFunctionCall",
"src": "1301:53:1"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "1291:6:1",
"nodeType": "YulIdentifier",
"src": "1291:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nativeSrc": "1042:329:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "1078:9:1",
"nodeType": "YulTypedName",
"src": "1078:9:1",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "1089:7:1",
"nodeType": "YulTypedName",
"src": "1089:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "1101:6:1",
"nodeType": "YulTypedName",
"src": "1101:6:1",
"type": ""
}
],
"src": "1042:329:1"
},
{
"body": {
"nativeSrc": "1466:28:1",
"nodeType": "YulBlock",
"src": "1466:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1483:1:1",
"nodeType": "YulLiteral",
"src": "1483:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "1486:1:1",
"nodeType": "YulLiteral",
"src": "1486:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "1476:6:1",
"nodeType": "YulIdentifier",
"src": "1476:6:1"
},
"nativeSrc": "1476:12:1",
"nodeType": "YulFunctionCall",
"src": "1476:12:1"
},
"nativeSrc": "1476:12:1",
"nodeType": "YulExpressionStatement",
"src": "1476:12:1"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nativeSrc": "1377:117:1",
"nodeType": "YulFunctionDefinition",
"src": "1377:117:1"
},
{
"body": {
"nativeSrc": "1589:28:1",
"nodeType": "YulBlock",
"src": "1589:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1606:1:1",
"nodeType": "YulLiteral",
"src": "1606:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "1609:1:1",
"nodeType": "YulLiteral",
"src": "1609:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "1599:6:1",
"nodeType": "YulIdentifier",
"src": "1599:6:1"
},
"nativeSrc": "1599:12:1",
"nodeType": "YulFunctionCall",
"src": "1599:12:1"
},
"nativeSrc": "1599:12:1",
"nodeType": "YulExpressionStatement",
"src": "1599:12:1"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nativeSrc": "1500:117:1",
"nodeType": "YulFunctionDefinition",
"src": "1500:117:1"
},
{
"body": {
"nativeSrc": "1671:54:1",
"nodeType": "YulBlock",
"src": "1671:54:1",
"statements": [
{
"nativeSrc": "1681:38:1",
"nodeType": "YulAssignment",
"src": "1681:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "1699:5:1",
"nodeType": "YulIdentifier",
"src": "1699:5:1"
},
{
"kind": "number",
"nativeSrc": "1706:2:1",
"nodeType": "YulLiteral",
"src": "1706:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1695:3:1",
"nodeType": "YulIdentifier",
"src": "1695:3:1"
},
"nativeSrc": "1695:14:1",
"nodeType": "YulFunctionCall",
"src": "1695:14:1"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "1715:2:1",
"nodeType": "YulLiteral",
"src": "1715:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nativeSrc": "1711:3:1",
"nodeType": "YulIdentifier",
"src": "1711:3:1"
},
"nativeSrc": "1711:7:1",
"nodeType": "YulFunctionCall",
"src": "1711:7:1"
}
],
"functionName": {
"name": "and",
"nativeSrc": "1691:3:1",
"nodeType": "YulIdentifier",
"src": "1691:3:1"
},
"nativeSrc": "1691:28:1",
"nodeType": "YulFunctionCall",
"src": "1691:28:1"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "1681:6:1",
"nodeType": "YulIdentifier",
"src": "1681:6:1"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nativeSrc": "1623:102:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1654:5:1",
"nodeType": "YulTypedName",
"src": "1654:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "1664:6:1",
"nodeType": "YulTypedName",
"src": "1664:6:1",
"type": ""
}
],
"src": "1623:102:1"
},
{
"body": {
"nativeSrc": "1759:152:1",
"nodeType": "YulBlock",
"src": "1759:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1776:1:1",
"nodeType": "YulLiteral",
"src": "1776:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "1779:77:1",
"nodeType": "YulLiteral",
"src": "1779:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "1769:6:1",
"nodeType": "YulIdentifier",
"src": "1769:6:1"
},
"nativeSrc": "1769:88:1",
"nodeType": "YulFunctionCall",
"src": "1769:88:1"
},
"nativeSrc": "1769:88:1",
"nodeType": "YulExpressionStatement",
"src": "1769:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1873:1:1",
"nodeType": "YulLiteral",
"src": "1873:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "1876:4:1",
"nodeType": "YulLiteral",
"src": "1876:4:1",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "1866:6:1",
"nodeType": "YulIdentifier",
"src": "1866:6:1"
},
"nativeSrc": "1866:15:1",
"nodeType": "YulFunctionCall",
"src": "1866:15:1"
},
"nativeSrc": "1866:15:1",
"nodeType": "YulExpressionStatement",
"src": "1866:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1897:1:1",
"nodeType": "YulLiteral",
"src": "1897:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "1900:4:1",
"nodeType": "YulLiteral",
"src": "1900:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "1890:6:1",
"nodeType": "YulIdentifier",
"src": "1890:6:1"
},
"nativeSrc": "1890:15:1",
"nodeType": "YulFunctionCall",
"src": "1890:15:1"
},
"nativeSrc": "1890:15:1",
"nodeType": "YulExpressionStatement",
"src": "1890:15:1"
}
]
},
"name": "panic_error_0x41",
"nativeSrc": "1731:180:1",
"nodeType": "YulFunctionDefinition",
"src": "1731:180:1"
},
{
"body": {
"nativeSrc": "1960:238:1",
"nodeType": "YulBlock",
"src": "1960:238:1",
"statements": [
{
"nativeSrc": "1970:58:1",
"nodeType": "YulVariableDeclaration",
"src": "1970:58:1",
"value": {
"arguments": [
{
"name": "memPtr",
"nativeSrc": "1992:6:1",
"nodeType": "YulIdentifier",
"src": "1992:6:1"
},
{
"arguments": [
{
"name": "size",
"nativeSrc": "2022:4:1",
"nodeType": "YulIdentifier",
"src": "2022:4:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nativeSrc": "2000:21:1",
"nodeType": "YulIdentifier",
"src": "2000:21:1"
},
"nativeSrc": "2000:27:1",
"nodeType": "YulFunctionCall",
"src": "2000:27:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1988:3:1",
"nodeType": "YulIdentifier",
"src": "1988:3:1"
},
"nativeSrc": "1988:40:1",
"nodeType": "YulFunctionCall",
"src": "1988:40:1"
},
"variables": [
{
"name": "newFreePtr",
"nativeSrc": "1974:10:1",
"nodeType": "YulTypedName",
"src": "1974:10:1",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "2139:22:1",
"nodeType": "YulBlock",
"src": "2139:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nativeSrc": "2141:16:1",
"nodeType": "YulIdentifier",
"src": "2141:16:1"
},
"nativeSrc": "2141:18:1",
"nodeType": "YulFunctionCall",
"src": "2141:18:1"
},
"nativeSrc": "2141:18:1",
"nodeType": "YulExpressionStatement",
"src": "2141:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nativeSrc": "2082:10:1",
"nodeType": "YulIdentifier",
"src": "2082:10:1"
},
{
"kind": "number",
"nativeSrc": "2094:18:1",
"nodeType": "YulLiteral",
"src": "2094:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "2079:2:1",
"nodeType": "YulIdentifier",
"src": "2079:2:1"
},
"nativeSrc": "2079:34:1",
"nodeType": "YulFunctionCall",
"src": "2079:34:1"
},
{
"arguments": [
{
"name": "newFreePtr",
"nativeSrc": "2118:10:1",
"nodeType": "YulIdentifier",
"src": "2118:10:1"
},
{
"name": "memPtr",
"nativeSrc": "2130:6:1",
"nodeType": "YulIdentifier",
"src": "2130:6:1"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "2115:2:1",
"nodeType": "YulIdentifier",
"src": "2115:2:1"
},
"nativeSrc": "2115:22:1",
"nodeType": "YulFunctionCall",
"src": "2115:22:1"
}
],
"functionName": {
"name": "or",
"nativeSrc": "2076:2:1",
"nodeType": "YulIdentifier",
"src": "2076:2:1"
},
"nativeSrc": "2076:62:1",
"nodeType": "YulFunctionCall",
"src": "2076:62:1"
},
"nativeSrc": "2073:88:1",
"nodeType": "YulIf",
"src": "2073:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "2177:2:1",
"nodeType": "YulLiteral",
"src": "2177:2:1",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nativeSrc": "2181:10:1",
"nodeType": "YulIdentifier",
"src": "2181:10:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "2170:6:1",
"nodeType": "YulIdentifier",
"src": "2170:6:1"
},
"nativeSrc": "2170:22:1",
"nodeType": "YulFunctionCall",
"src": "2170:22:1"
},
"nativeSrc": "2170:22:1",
"nodeType": "YulExpressionStatement",
"src": "2170:22:1"
}
]
},
"name": "finalize_allocation",
"nativeSrc": "1917:281:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "1946:6:1",
"nodeType": "YulTypedName",
"src": "1946:6:1",
"type": ""
},
{
"name": "size",
"nativeSrc": "1954:4:1",
"nodeType": "YulTypedName",
"src": "1954:4:1",
"type": ""
}
],
"src": "1917:281:1"
},
{
"body": {
"nativeSrc": "2245:88:1",
"nodeType": "YulBlock",
"src": "2245:88:1",
"statements": [
{
"nativeSrc": "2255:30:1",
"nodeType": "YulAssignment",
"src": "2255:30:1",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nativeSrc": "2265:18:1",
"nodeType": "YulIdentifier",
"src": "2265:18:1"
},
"nativeSrc": "2265:20:1",
"nodeType": "YulFunctionCall",
"src": "2265:20:1"
},
"variableNames": [
{
"name": "memPtr",
"nativeSrc": "2255:6:1",
"nodeType": "YulIdentifier",
"src": "2255:6:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nativeSrc": "2314:6:1",
"nodeType": "YulIdentifier",
"src": "2314:6:1"
},
{
"name": "size",
"nativeSrc": "2322:4:1",
"nodeType": "YulIdentifier",
"src": "2322:4:1"
}
],
"functionName": {
"name": "finalize_allocation",
"nativeSrc": "2294:19:1",
"nodeType": "YulIdentifier",
"src": "2294:19:1"
},
"nativeSrc": "2294:33:1",
"nodeType": "YulFunctionCall",
"src": "2294:33:1"
},
"nativeSrc": "2294:33:1",
"nodeType": "YulExpressionStatement",
"src": "2294:33:1"
}
]
},
"name": "allocate_memory",
"nativeSrc": "2204:129:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nativeSrc": "2229:4:1",
"nodeType": "YulTypedName",
"src": "2229:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nativeSrc": "2238:6:1",
"nodeType": "YulTypedName",
"src": "2238:6:1",
"type": ""
}
],
"src": "2204:129:1"
},
{
"body": {
"nativeSrc": "2406:241:1",
"nodeType": "YulBlock",
"src": "2406:241:1",
"statements": [
{
"body": {
"nativeSrc": "2511:22:1",
"nodeType": "YulBlock",
"src": "2511:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nativeSrc": "2513:16:1",
"nodeType": "YulIdentifier",
"src": "2513:16:1"
},
"nativeSrc": "2513:18:1",
"nodeType": "YulFunctionCall",
"src": "2513:18:1"
},
"nativeSrc": "2513:18:1",
"nodeType": "YulExpressionStatement",
"src": "2513:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nativeSrc": "2483:6:1",
"nodeType": "YulIdentifier",
"src": "2483:6:1"
},
{
"kind": "number",
"nativeSrc": "2491:18:1",
"nodeType": "YulLiteral",
"src": "2491:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "2480:2:1",
"nodeType": "YulIdentifier",
"src": "2480:2:1"
},
"nativeSrc": "2480:30:1",
"nodeType": "YulFunctionCall",
"src": "2480:30:1"
},
"nativeSrc": "2477:56:1",
"nodeType": "YulIf",
"src": "2477:56:1"
},
{
"nativeSrc": "2543:37:1",
"nodeType": "YulAssignment",
"src": "2543:37:1",
"value": {
"arguments": [
{
"name": "length",
"nativeSrc": "2573:6:1",
"nodeType": "YulIdentifier",
"src": "2573:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nativeSrc": "2551:21:1",
"nodeType": "YulIdentifier",
"src": "2551:21:1"
},
"nativeSrc": "2551:29:1",
"nodeType": "YulFunctionCall",
"src": "2551:29:1"
},
"variableNames": [
{
"name": "size",
"nativeSrc": "2543:4:1",
"nodeType": "YulIdentifier",
"src": "2543:4:1"
}
]
},
{
"nativeSrc": "2617:23:1",
"nodeType": "YulAssignment",
"src": "2617:23:1",
"value": {
"arguments": [
{
"name": "size",
"nativeSrc": "2629:4:1",
"nodeType": "YulIdentifier",
"src": "2629:4:1"
},
{
"kind": "number",
"nativeSrc": "2635:4:1",
"nodeType": "YulLiteral",
"src": "2635:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2625:3:1",
"nodeType": "YulIdentifier",
"src": "2625:3:1"
},
"nativeSrc": "2625:15:1",
"nodeType": "YulFunctionCall",
"src": "2625:15:1"
},
"variableNames": [
{
"name": "size",
"nativeSrc": "2617:4:1",
"nodeType": "YulIdentifier",
"src": "2617:4:1"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nativeSrc": "2339:308:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nativeSrc": "2390:6:1",
"nodeType": "YulTypedName",
"src": "2390:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nativeSrc": "2401:4:1",
"nodeType": "YulTypedName",
"src": "2401:4:1",
"type": ""
}
],
"src": "2339:308:1"
},
{
"body": {
"nativeSrc": "2717:82:1",
"nodeType": "YulBlock",
"src": "2717:82:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nativeSrc": "2740:3:1",
"nodeType": "YulIdentifier",
"src": "2740:3:1"
},
{
"name": "src",
"nativeSrc": "2745:3:1",
"nodeType": "YulIdentifier",
"src": "2745:3:1"
},
{
"name": "length",
"nativeSrc": "2750:6:1",
"nodeType": "YulIdentifier",
"src": "2750:6:1"
}
],
"functionName": {
"name": "calldatacopy",
"nativeSrc": "2727:12:1",
"nodeType": "YulIdentifier",
"src": "2727:12:1"
},
"nativeSrc": "2727:30:1",
"nodeType": "YulFunctionCall",
"src": "2727:30:1"
},
"nativeSrc": "2727:30:1",
"nodeType": "YulExpressionStatement",
"src": "2727:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nativeSrc": "2777:3:1",
"nodeType": "YulIdentifier",
"src": "2777:3:1"
},
{
"name": "length",
"nativeSrc": "2782:6:1",
"nodeType": "YulIdentifier",
"src": "2782:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2773:3:1",
"nodeType": "YulIdentifier",
"src": "2773:3:1"
},
"nativeSrc": "2773:16:1",
"nodeType": "YulFunctionCall",
"src": "2773:16:1"
},
{
"kind": "number",
"nativeSrc": "2791:1:1",
"nodeType": "YulLiteral",
"src": "2791:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "2766:6:1",
"nodeType": "YulIdentifier",
"src": "2766:6:1"
},
"nativeSrc": "2766:27:1",
"nodeType": "YulFunctionCall",
"src": "2766:27:1"
},
"nativeSrc": "2766:27:1",
"nodeType": "YulExpressionStatement",
"src": "2766:27:1"
}
]
},
"name": "copy_calldata_to_memory_with_cleanup",
"nativeSrc": "2653:146:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nativeSrc": "2699:3:1",
"nodeType": "YulTypedName",
"src": "2699:3:1",
"type": ""
},
{
"name": "dst",
"nativeSrc": "2704:3:1",
"nodeType": "YulTypedName",
"src": "2704:3:1",
"type": ""
},
{
"name": "length",
"nativeSrc": "2709:6:1",
"nodeType": "YulTypedName",
"src": "2709:6:1",
"type": ""
}
],
"src": "2653:146:1"
},
{
"body": {
"nativeSrc": "2889:341:1",
"nodeType": "YulBlock",
"src": "2889:341:1",
"statements": [
{
"nativeSrc": "2899:75:1",
"nodeType": "YulAssignment",
"src": "2899:75:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nativeSrc": "2966:6:1",
"nodeType": "YulIdentifier",
"src": "2966:6:1"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nativeSrc": "2924:41:1",
"nodeType": "YulIdentifier",
"src": "2924:41:1"
},
"nativeSrc": "2924:49:1",
"nodeType": "YulFunctionCall",
"src": "2924:49:1"
}
],
"functionName": {
"name": "allocate_memory",
"nativeSrc": "2908:15:1",
"nodeType": "YulIdentifier",
"src": "2908:15:1"
},
"nativeSrc": "2908:66:1",
"nodeType": "YulFunctionCall",
"src": "2908:66:1"
},
"variableNames": [
{
"name": "array",
"nativeSrc": "2899:5:1",
"nodeType": "YulIdentifier",
"src": "2899:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nativeSrc": "2990:5:1",
"nodeType": "YulIdentifier",
"src": "2990:5:1"
},
{
"name": "length",
"nativeSrc": "2997:6:1",
"nodeType": "YulIdentifier",
"src": "2997:6:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "2983:6:1",
"nodeType": "YulIdentifier",
"src": "2983:6:1"
},
"nativeSrc": "2983:21:1",
"nodeType": "YulFunctionCall",
"src": "2983:21:1"
},
"nativeSrc": "2983:21:1",
"nodeType": "YulExpressionStatement",
"src": "2983:21:1"
},
{
"nativeSrc": "3013:27:1",
"nodeType": "YulVariableDeclaration",
"src": "3013:27:1",
"value": {
"arguments": [
{
"name": "array",
"nativeSrc": "3028:5:1",
"nodeType": "YulIdentifier",
"src": "3028:5:1"
},
{
"kind": "number",
"nativeSrc": "3035:4:1",
"nodeType": "YulLiteral",
"src": "3035:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3024:3:1",
"nodeType": "YulIdentifier",
"src": "3024:3:1"
},
"nativeSrc": "3024:16:1",
"nodeType": "YulFunctionCall",
"src": "3024:16:1"
},
"variables": [
{
"name": "dst",
"nativeSrc": "3017:3:1",
"nodeType": "YulTypedName",
"src": "3017:3:1",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "3078:83:1",
"nodeType": "YulBlock",
"src": "3078:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nativeSrc": "3080:77:1",
"nodeType": "YulIdentifier",
"src": "3080:77:1"
},
"nativeSrc": "3080:79:1",
"nodeType": "YulFunctionCall",
"src": "3080:79:1"
},
"nativeSrc": "3080:79:1",
"nodeType": "YulExpressionStatement",
"src": "3080:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nativeSrc": "3059:3:1",
"nodeType": "YulIdentifier",
"src": "3059:3:1"
},
{
"name": "length",
"nativeSrc": "3064:6:1",
"nodeType": "YulIdentifier",
"src": "3064:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3055:3:1",
"nodeType": "YulIdentifier",
"src": "3055:3:1"
},
"nativeSrc": "3055:16:1",
"nodeType": "YulFunctionCall",
"src": "3055:16:1"
},
{
"name": "end",
"nativeSrc": "3073:3:1",
"nodeType": "YulIdentifier",
"src": "3073:3:1"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "3052:2:1",
"nodeType": "YulIdentifier",
"src": "3052:2:1"
},
"nativeSrc": "3052:25:1",
"nodeType": "YulFunctionCall",
"src": "3052:25:1"
},
"nativeSrc": "3049:112:1",
"nodeType": "YulIf",
"src": "3049:112:1"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nativeSrc": "3207:3:1",
"nodeType": "YulIdentifier",
"src": "3207:3:1"
},
{
"name": "dst",
"nativeSrc": "3212:3:1",
"nodeType": "YulIdentifier",
"src": "3212:3:1"
},
{
"name": "length",
"nativeSrc": "3217:6:1",
"nodeType": "YulIdentifier",
"src": "3217:6:1"
}
],
"functionName": {
"name": "copy_calldata_to_memory_with_cleanup",
"nativeSrc": "3170:36:1",
"nodeType": "YulIdentifier",
"src": "3170:36:1"
},
"nativeSrc": "3170:54:1",
"nodeType": "YulFunctionCall",
"src": "3170:54:1"
},
"nativeSrc": "3170:54:1",
"nodeType": "YulExpressionStatement",
"src": "3170:54:1"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nativeSrc": "2805:425:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nativeSrc": "2862:3:1",
"nodeType": "YulTypedName",
"src": "2862:3:1",
"type": ""
},
{
"name": "length",
"nativeSrc": "2867:6:1",
"nodeType": "YulTypedName",
"src": "2867:6:1",
"type": ""
},
{
"name": "end",
"nativeSrc": "2875:3:1",
"nodeType": "YulTypedName",
"src": "2875:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nativeSrc": "2883:5:1",
"nodeType": "YulTypedName",
"src": "2883:5:1",
"type": ""
}
],
"src": "2805:425:1"
},
{
"body": {
"nativeSrc": "3312:278:1",
"nodeType": "YulBlock",
"src": "3312:278:1",
"statements": [
{
"body": {
"nativeSrc": "3361:83:1",
"nodeType": "YulBlock",
"src": "3361:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nativeSrc": "3363:77:1",
"nodeType": "YulIdentifier",
"src": "3363:77:1"
},
"nativeSrc": "3363:79:1",
"nodeType": "YulFunctionCall",
"src": "3363:79:1"
},
"nativeSrc": "3363:79:1",
"nodeType": "YulExpressionStatement",
"src": "3363:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nativeSrc": "3340:6:1",
"nodeType": "YulIdentifier",
"src": "3340:6:1"
},
{
"kind": "number",
"nativeSrc": "3348:4:1",
"nodeType": "YulLiteral",
"src": "3348:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3336:3:1",
"nodeType": "YulIdentifier",
"src": "3336:3:1"
},
"nativeSrc": "3336:17:1",
"nodeType": "YulFunctionCall",
"src": "3336:17:1"
},
{
"name": "end",
"nativeSrc": "3355:3:1",
"nodeType": "YulIdentifier",
"src": "3355:3:1"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "3332:3:1",
"nodeType": "YulIdentifier",
"src": "3332:3:1"
},
"nativeSrc": "3332:27:1",
"nodeType": "YulFunctionCall",
"src": "3332:27:1"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "3325:6:1",
"nodeType": "YulIdentifier",
"src": "3325:6:1"
},
"nativeSrc": "3325:35:1",
"nodeType": "YulFunctionCall",
"src": "3325:35:1"
},
"nativeSrc": "3322:122:1",
"nodeType": "YulIf",
"src": "3322:122:1"
},
{
"nativeSrc": "3453:34:1",
"nodeType": "YulVariableDeclaration",
"src": "3453:34:1",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "3480:6:1",
"nodeType": "YulIdentifier",
"src": "3480:6:1"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "3467:12:1",
"nodeType": "YulIdentifier",
"src": "3467:12:1"
},
"nativeSrc": "3467:20:1",
"nodeType": "YulFunctionCall",
"src": "3467:20:1"
},
"variables": [
{
"name": "length",
"nativeSrc": "3457:6:1",
"nodeType": "YulTypedName",
"src": "3457:6:1",
"type": ""
}
]
},
{
"nativeSrc": "3496:88:1",
"nodeType": "YulAssignment",
"src": "3496:88:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nativeSrc": "3557:6:1",
"nodeType": "YulIdentifier",
"src": "3557:6:1"
},
{
"kind": "number",
"nativeSrc": "3565:4:1",
"nodeType": "YulLiteral",
"src": "3565:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3553:3:1",
"nodeType": "YulIdentifier",
"src": "3553:3:1"
},
"nativeSrc": "3553:17:1",
"nodeType": "YulFunctionCall",
"src": "3553:17:1"
},
{
"name": "length",
"nativeSrc": "3572:6:1",
"nodeType": "YulIdentifier",
"src": "3572:6:1"
},
{
"name": "end",
"nativeSrc": "3580:3:1",
"nodeType": "YulIdentifier",
"src": "3580:3:1"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nativeSrc": "3505:47:1",
"nodeType": "YulIdentifier",
"src": "3505:47:1"
},
"nativeSrc": "3505:79:1",
"nodeType": "YulFunctionCall",
"src": "3505:79:1"
},
"variableNames": [
{
"name": "array",
"nativeSrc": "3496:5:1",
"nodeType": "YulIdentifier",
"src": "3496:5:1"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nativeSrc": "3250:340:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "3290:6:1",
"nodeType": "YulTypedName",
"src": "3290:6:1",
"type": ""
},
{
"name": "end",
"nativeSrc": "3298:3:1",
"nodeType": "YulTypedName",
"src": "3298:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nativeSrc": "3306:5:1",
"nodeType": "YulTypedName",
"src": "3306:5:1",
"type": ""
}
],
"src": "3250:340:1"
},
{
"body": {
"nativeSrc": "3689:561:1",
"nodeType": "YulBlock",
"src": "3689:561:1",
"statements": [
{
"body": {
"nativeSrc": "3735:83:1",
"nodeType": "YulBlock",
"src": "3735:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "3737:77:1",
"nodeType": "YulIdentifier",
"src": "3737:77:1"
},
"nativeSrc": "3737:79:1",
"nodeType": "YulFunctionCall",
"src": "3737:79:1"
},
"nativeSrc": "3737:79:1",
"nodeType": "YulExpressionStatement",
"src": "3737:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "3710:7:1",
"nodeType": "YulIdentifier",
"src": "3710:7:1"
},
{
"name": "headStart",
"nativeSrc": "3719:9:1",
"nodeType": "YulIdentifier",
"src": "3719:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "3706:3:1",
"nodeType": "YulIdentifier",
"src": "3706:3:1"
},
"nativeSrc": "3706:23:1",
"nodeType": "YulFunctionCall",
"src": "3706:23:1"
},
{
"kind": "number",
"nativeSrc": "3731:2:1",
"nodeType": "YulLiteral",
"src": "3731:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "3702:3:1",
"nodeType": "YulIdentifier",
"src": "3702:3:1"
},
"nativeSrc": "3702:32:1",
"nodeType": "YulFunctionCall",
"src": "3702:32:1"
},
"nativeSrc": "3699:119:1",
"nodeType": "YulIf",
"src": "3699:119:1"
},
{
"nativeSrc": "3828:287:1",
"nodeType": "YulBlock",
"src": "3828:287:1",
"statements": [
{
"nativeSrc": "3843:45:1",
"nodeType": "YulVariableDeclaration",
"src": "3843:45:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "3874:9:1",
"nodeType": "YulIdentifier",
"src": "3874:9:1"
},
{
"kind": "number",
"nativeSrc": "3885:1:1",
"nodeType": "YulLiteral",
"src": "3885:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3870:3:1",
"nodeType": "YulIdentifier",
"src": "3870:3:1"
},
"nativeSrc": "3870:17:1",
"nodeType": "YulFunctionCall",
"src": "3870:17:1"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "3857:12:1",
"nodeType": "YulIdentifier",
"src": "3857:12:1"
},
"nativeSrc": "3857:31:1",
"nodeType": "YulFunctionCall",
"src": "3857:31:1"
},
"variables": [
{
"name": "offset",
"nativeSrc": "3847:6:1",
"nodeType": "YulTypedName",
"src": "3847:6:1",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "3935:83:1",
"nodeType": "YulBlock",
"src": "3935:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nativeSrc": "3937:77:1",
"nodeType": "YulIdentifier",
"src": "3937:77:1"
},
"nativeSrc": "3937:79:1",
"nodeType": "YulFunctionCall",
"src": "3937:79:1"
},
"nativeSrc": "3937:79:1",
"nodeType": "YulExpressionStatement",
"src": "3937:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nativeSrc": "3907:6:1",
"nodeType": "YulIdentifier",
"src": "3907:6:1"
},
{
"kind": "number",
"nativeSrc": "3915:18:1",
"nodeType": "YulLiteral",
"src": "3915:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "3904:2:1",
"nodeType": "YulIdentifier",
"src": "3904:2:1"
},
"nativeSrc": "3904:30:1",
"nodeType": "YulFunctionCall",
"src": "3904:30:1"
},
"nativeSrc": "3901:117:1",
"nodeType": "YulIf",
"src": "3901:117:1"
},
{
"nativeSrc": "4032:73:1",
"nodeType": "YulAssignment",
"src": "4032:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "4077:9:1",
"nodeType": "YulIdentifier",
"src": "4077:9:1"
},
{
"name": "offset",
"nativeSrc": "4088:6:1",
"nodeType": "YulIdentifier",
"src": "4088:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4073:3:1",
"nodeType": "YulIdentifier",
"src": "4073:3:1"
},
"nativeSrc": "4073:22:1",
"nodeType": "YulFunctionCall",
"src": "4073:22:1"
},
{
"name": "dataEnd",
"nativeSrc": "4097:7:1",
"nodeType": "YulIdentifier",
"src": "4097:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nativeSrc": "4042:30:1",
"nodeType": "YulIdentifier",
"src": "4042:30:1"
},
"nativeSrc": "4042:63:1",
"nodeType": "YulFunctionCall",
"src": "4042:63:1"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "4032:6:1",
"nodeType": "YulIdentifier",
"src": "4032:6:1"
}
]
}
]
},
{
"nativeSrc": "4125:118:1",
"nodeType": "YulBlock",
"src": "4125:118:1",
"statements": [
{
"nativeSrc": "4140:16:1",
"nodeType": "YulVariableDeclaration",
"src": "4140:16:1",
"value": {
"kind": "number",
"nativeSrc": "4154:2:1",
"nodeType": "YulLiteral",
"src": "4154:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nativeSrc": "4144:6:1",
"nodeType": "YulTypedName",
"src": "4144:6:1",
"type": ""
}
]
},
{
"nativeSrc": "4170:63:1",
"nodeType": "YulAssignment",
"src": "4170:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "4205:9:1",
"nodeType": "YulIdentifier",
"src": "4205:9:1"
},
{
"name": "offset",
"nativeSrc": "4216:6:1",
"nodeType": "YulIdentifier",
"src": "4216:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4201:3:1",
"nodeType": "YulIdentifier",
"src": "4201:3:1"
},
"nativeSrc": "4201:22:1",
"nodeType": "YulFunctionCall",
"src": "4201:22:1"
},
{
"name": "dataEnd",
"nativeSrc": "4225:7:1",
"nodeType": "YulIdentifier",
"src": "4225:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nativeSrc": "4180:20:1",
"nodeType": "YulIdentifier",
"src": "4180:20:1"
},
"nativeSrc": "4180:53:1",
"nodeType": "YulFunctionCall",
"src": "4180:53:1"
},
"variableNames": [
{
"name": "value1",
"nativeSrc": "4170:6:1",
"nodeType": "YulIdentifier",
"src": "4170:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_uint256",
"nativeSrc": "3596:654:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "3651:9:1",
"nodeType": "YulTypedName",
"src": "3651:9:1",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "3662:7:1",
"nodeType": "YulTypedName",
"src": "3662:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "3674:6:1",
"nodeType": "YulTypedName",
"src": "3674:6:1",
"type": ""
},
{
"name": "value1",
"nativeSrc": "3682:6:1",
"nodeType": "YulTypedName",
"src": "3682:6:1",
"type": ""
}
],
"src": "3596:654:1"
},
{
"body": {
"nativeSrc": "4332:433:1",
"nodeType": "YulBlock",
"src": "4332:433:1",
"statements": [
{
"body": {
"nativeSrc": "4378:83:1",
"nodeType": "YulBlock",
"src": "4378:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "4380:77:1",
"nodeType": "YulIdentifier",
"src": "4380:77:1"
},
"nativeSrc": "4380:79:1",
"nodeType": "YulFunctionCall",
"src": "4380:79:1"
},
"nativeSrc": "4380:79:1",
"nodeType": "YulExpressionStatement",
"src": "4380:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "4353:7:1",
"nodeType": "YulIdentifier",
"src": "4353:7:1"
},
{
"name": "headStart",
"nativeSrc": "4362:9:1",
"nodeType": "YulIdentifier",
"src": "4362:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "4349:3:1",
"nodeType": "YulIdentifier",
"src": "4349:3:1"
},
"nativeSrc": "4349:23:1",
"nodeType": "YulFunctionCall",
"src": "4349:23:1"
},
{
"kind": "number",
"nativeSrc": "4374:2:1",
"nodeType": "YulLiteral",
"src": "4374:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "4345:3:1",
"nodeType": "YulIdentifier",
"src": "4345:3:1"
},
"nativeSrc": "4345:32:1",
"nodeType": "YulFunctionCall",
"src": "4345:32:1"
},
"nativeSrc": "4342:119:1",
"nodeType": "YulIf",
"src": "4342:119:1"
},
{
"nativeSrc": "4471:287:1",
"nodeType": "YulBlock",
"src": "4471:287:1",
"statements": [
{
"nativeSrc": "4486:45:1",
"nodeType": "YulVariableDeclaration",
"src": "4486:45:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "4517:9:1",
"nodeType": "YulIdentifier",
"src": "4517:9:1"
},
{
"kind": "number",
"nativeSrc": "4528:1:1",
"nodeType": "YulLiteral",
"src": "4528:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4513:3:1",
"nodeType": "YulIdentifier",
"src": "4513:3:1"
},
"nativeSrc": "4513:17:1",
"nodeType": "YulFunctionCall",
"src": "4513:17:1"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "4500:12:1",
"nodeType": "YulIdentifier",
"src": "4500:12:1"
},
"nativeSrc": "4500:31:1",
"nodeType": "YulFunctionCall",
"src": "4500:31:1"
},
"variables": [
{
"name": "offset",
"nativeSrc": "4490:6:1",
"nodeType": "YulTypedName",
"src": "4490:6:1",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "4578:83:1",
"nodeType": "YulBlock",
"src": "4578:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nativeSrc": "4580:77:1",
"nodeType": "YulIdentifier",
"src": "4580:77:1"
},
"nativeSrc": "4580:79:1",
"nodeType": "YulFunctionCall",
"src": "4580:79:1"
},
"nativeSrc": "4580:79:1",
"nodeType": "YulExpressionStatement",
"src": "4580:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nativeSrc": "4550:6:1",
"nodeType": "YulIdentifier",
"src": "4550:6:1"
},
{
"kind": "number",
"nativeSrc": "4558:18:1",
"nodeType": "YulLiteral",
"src": "4558:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "4547:2:1",
"nodeType": "YulIdentifier",
"src": "4547:2:1"
},
"nativeSrc": "4547:30:1",
"nodeType": "YulFunctionCall",
"src": "4547:30:1"
},
"nativeSrc": "4544:117:1",
"nodeType": "YulIf",
"src": "4544:117:1"
},
{
"nativeSrc": "4675:73:1",
"nodeType": "YulAssignment",
"src": "4675:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "4720:9:1",
"nodeType": "YulIdentifier",
"src": "4720:9:1"
},
{
"name": "offset",
"nativeSrc": "4731:6:1",
"nodeType": "YulIdentifier",
"src": "4731:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4716:3:1",
"nodeType": "YulIdentifier",
"src": "4716:3:1"
},
"nativeSrc": "4716:22:1",
"nodeType": "YulFunctionCall",
"src": "4716:22:1"
},
{
"name": "dataEnd",
"nativeSrc": "4740:7:1",
"nodeType": "YulIdentifier",
"src": "4740:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nativeSrc": "4685:30:1",
"nodeType": "YulIdentifier",
"src": "4685:30:1"
},
"nativeSrc": "4685:63:1",
"nodeType": "YulFunctionCall",
"src": "4685:63:1"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "4675:6:1",
"nodeType": "YulIdentifier",
"src": "4675:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptr",
"nativeSrc": "4256:509:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "4302:9:1",
"nodeType": "YulTypedName",
"src": "4302:9:1",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "4313:7:1",
"nodeType": "YulTypedName",
"src": "4313:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "4325:6:1",
"nodeType": "YulTypedName",
"src": "4325:6:1",
"type": ""
}
],
"src": "4256:509:1"
},
{
"body": {
"nativeSrc": "4830:40:1",
"nodeType": "YulBlock",
"src": "4830:40:1",
"statements": [
{
"nativeSrc": "4841:22:1",
"nodeType": "YulAssignment",
"src": "4841:22:1",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "4857:5:1",
"nodeType": "YulIdentifier",
"src": "4857:5:1"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "4851:5:1",
"nodeType": "YulIdentifier",
"src": "4851:5:1"
},
"nativeSrc": "4851:12:1",
"nodeType": "YulFunctionCall",
"src": "4851:12:1"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "4841:6:1",
"nodeType": "YulIdentifier",
"src": "4841:6:1"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "4771:99:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "4813:5:1",
"nodeType": "YulTypedName",
"src": "4813:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nativeSrc": "4823:6:1",
"nodeType": "YulTypedName",
"src": "4823:6:1",
"type": ""
}
],
"src": "4771:99:1"
},
{
"body": {
"nativeSrc": "4972:73:1",
"nodeType": "YulBlock",
"src": "4972:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "4989:3:1",
"nodeType": "YulIdentifier",
"src": "4989:3:1"
},
{
"name": "length",
"nativeSrc": "4994:6:1",
"nodeType": "YulIdentifier",
"src": "4994:6:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "4982:6:1",
"nodeType": "YulIdentifier",
"src": "4982:6:1"
},
"nativeSrc": "4982:19:1",
"nodeType": "YulFunctionCall",
"src": "4982:19:1"
},
"nativeSrc": "4982:19:1",
"nodeType": "YulExpressionStatement",
"src": "4982:19:1"
},
{
"nativeSrc": "5010:29:1",
"nodeType": "YulAssignment",
"src": "5010:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "5029:3:1",
"nodeType": "YulIdentifier",
"src": "5029:3:1"
},
{
"kind": "number",
"nativeSrc": "5034:4:1",
"nodeType": "YulLiteral",
"src": "5034:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5025:3:1",
"nodeType": "YulIdentifier",
"src": "5025:3:1"
},
"nativeSrc": "5025:14:1",
"nodeType": "YulFunctionCall",
"src": "5025:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nativeSrc": "5010:11:1",
"nodeType": "YulIdentifier",
"src": "5010:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "4876:169:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "4944:3:1",
"nodeType": "YulTypedName",
"src": "4944:3:1",
"type": ""
},
{
"name": "length",
"nativeSrc": "4949:6:1",
"nodeType": "YulTypedName",
"src": "4949:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nativeSrc": "4960:11:1",
"nodeType": "YulTypedName",
"src": "4960:11:1",
"type": ""
}
],
"src": "4876:169:1"
},
{
"body": {
"nativeSrc": "5113:184:1",
"nodeType": "YulBlock",
"src": "5113:184:1",
"statements": [
{
"nativeSrc": "5123:10:1",
"nodeType": "YulVariableDeclaration",
"src": "5123:10:1",
"value": {
"kind": "number",
"nativeSrc": "5132:1:1",
"nodeType": "YulLiteral",
"src": "5132:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nativeSrc": "5127:1:1",
"nodeType": "YulTypedName",
"src": "5127:1:1",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "5192:63:1",
"nodeType": "YulBlock",
"src": "5192:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nativeSrc": "5217:3:1",
"nodeType": "YulIdentifier",
"src": "5217:3:1"
},
{
"name": "i",
"nativeSrc": "5222:1:1",
"nodeType": "YulIdentifier",
"src": "5222:1:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5213:3:1",
"nodeType": "YulIdentifier",
"src": "5213:3:1"
},
"nativeSrc": "5213:11:1",
"nodeType": "YulFunctionCall",
"src": "5213:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nativeSrc": "5236:3:1",
"nodeType": "YulIdentifier",
"src": "5236:3:1"
},
{
"name": "i",
"nativeSrc": "5241:1:1",
"nodeType": "YulIdentifier",
"src": "5241:1:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5232:3:1",
"nodeType": "YulIdentifier",
"src": "5232:3:1"
},
"nativeSrc": "5232:11:1",
"nodeType": "YulFunctionCall",
"src": "5232:11:1"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "5226:5:1",
"nodeType": "YulIdentifier",
"src": "5226:5:1"
},
"nativeSrc": "5226:18:1",
"nodeType": "YulFunctionCall",
"src": "5226:18:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "5206:6:1",
"nodeType": "YulIdentifier",
"src": "5206:6:1"
},
"nativeSrc": "5206:39:1",
"nodeType": "YulFunctionCall",
"src": "5206:39:1"
},
"nativeSrc": "5206:39:1",
"nodeType": "YulExpressionStatement",
"src": "5206:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nativeSrc": "5153:1:1",
"nodeType": "YulIdentifier",
"src": "5153:1:1"
},
{
"name": "length",
"nativeSrc": "5156:6:1",
"nodeType": "YulIdentifier",
"src": "5156:6:1"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "5150:2:1",
"nodeType": "YulIdentifier",
"src": "5150:2:1"
},
"nativeSrc": "5150:13:1",
"nodeType": "YulFunctionCall",
"src": "5150:13:1"
},
"nativeSrc": "5142:113:1",
"nodeType": "YulForLoop",
"post": {
"nativeSrc": "5164:19:1",
"nodeType": "YulBlock",
"src": "5164:19:1",
"statements": [
{
"nativeSrc": "5166:15:1",
"nodeType": "YulAssignment",
"src": "5166:15:1",
"value": {
"arguments": [
{
"name": "i",
"nativeSrc": "5175:1:1",
"nodeType": "YulIdentifier",
"src": "5175:1:1"
},
{
"kind": "number",
"nativeSrc": "5178:2:1",
"nodeType": "YulLiteral",
"src": "5178:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5171:3:1",
"nodeType": "YulIdentifier",
"src": "5171:3:1"
},
"nativeSrc": "5171:10:1",
"nodeType": "YulFunctionCall",
"src": "5171:10:1"
},
"variableNames": [
{
"name": "i",
"nativeSrc": "5166:1:1",
"nodeType": "YulIdentifier",
"src": "5166:1:1"
}
]
}
]
},
"pre": {
"nativeSrc": "5146:3:1",
"nodeType": "YulBlock",
"src": "5146:3:1",
"statements": []
},
"src": "5142:113:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nativeSrc": "5275:3:1",
"nodeType": "YulIdentifier",
"src": "5275:3:1"
},
{
"name": "length",
"nativeSrc": "5280:6:1",
"nodeType": "YulIdentifier",
"src": "5280:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5271:3:1",
"nodeType": "YulIdentifier",
"src": "5271:3:1"
},
"nativeSrc": "5271:16:1",
"nodeType": "YulFunctionCall",
"src": "5271:16:1"
},
{
"kind": "number",
"nativeSrc": "5289:1:1",
"nodeType": "YulLiteral",
"src": "5289:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "5264:6:1",
"nodeType": "YulIdentifier",
"src": "5264:6:1"
},
"nativeSrc": "5264:27:1",
"nodeType": "YulFunctionCall",
"src": "5264:27:1"
},
"nativeSrc": "5264:27:1",
"nodeType": "YulExpressionStatement",
"src": "5264:27:1"
}
]
},
"name": "copy_memory_to_memory_with_cleanup",
"nativeSrc": "5051:246:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nativeSrc": "5095:3:1",
"nodeType": "YulTypedName",
"src": "5095:3:1",
"type": ""
},
{
"name": "dst",
"nativeSrc": "5100:3:1",
"nodeType": "YulTypedName",
"src": "5100:3:1",
"type": ""
},
{
"name": "length",
"nativeSrc": "5105:6:1",
"nodeType": "YulTypedName",
"src": "5105:6:1",
"type": ""
}
],
"src": "5051:246:1"
},
{
"body": {
"nativeSrc": "5395:285:1",
"nodeType": "YulBlock",
"src": "5395:285:1",
"statements": [
{
"nativeSrc": "5405:53:1",
"nodeType": "YulVariableDeclaration",
"src": "5405:53:1",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "5452:5:1",
"nodeType": "YulIdentifier",
"src": "5452:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "5419:32:1",
"nodeType": "YulIdentifier",
"src": "5419:32:1"
},
"nativeSrc": "5419:39:1",
"nodeType": "YulFunctionCall",
"src": "5419:39:1"
},
"variables": [
{
"name": "length",
"nativeSrc": "5409:6:1",
"nodeType": "YulTypedName",
"src": "5409:6:1",
"type": ""
}
]
},
{
"nativeSrc": "5467:78:1",
"nodeType": "YulAssignment",
"src": "5467:78:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "5533:3:1",
"nodeType": "YulIdentifier",
"src": "5533:3:1"
},
{
"name": "length",
"nativeSrc": "5538:6:1",
"nodeType": "YulIdentifier",
"src": "5538:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "5474:58:1",
"nodeType": "YulIdentifier",
"src": "5474:58:1"
},
"nativeSrc": "5474:71:1",
"nodeType": "YulFunctionCall",
"src": "5474:71:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "5467:3:1",
"nodeType": "YulIdentifier",
"src": "5467:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "5593:5:1",
"nodeType": "YulIdentifier",
"src": "5593:5:1"
},
{
"kind": "number",
"nativeSrc": "5600:4:1",
"nodeType": "YulLiteral",
"src": "5600:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5589:3:1",
"nodeType": "YulIdentifier",
"src": "5589:3:1"
},
"nativeSrc": "5589:16:1",
"nodeType": "YulFunctionCall",
"src": "5589:16:1"
},
{
"name": "pos",
"nativeSrc": "5607:3:1",
"nodeType": "YulIdentifier",
"src": "5607:3:1"
},
{
"name": "length",
"nativeSrc": "5612:6:1",
"nodeType": "YulIdentifier",
"src": "5612:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nativeSrc": "5554:34:1",
"nodeType": "YulIdentifier",
"src": "5554:34:1"
},
"nativeSrc": "5554:65:1",
"nodeType": "YulFunctionCall",
"src": "5554:65:1"
},
"nativeSrc": "5554:65:1",
"nodeType": "YulExpressionStatement",
"src": "5554:65:1"
},
{
"nativeSrc": "5628:46:1",
"nodeType": "YulAssignment",
"src": "5628:46:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "5639:3:1",
"nodeType": "YulIdentifier",
"src": "5639:3:1"
},
{
"arguments": [
{
"name": "length",
"nativeSrc": "5666:6:1",
"nodeType": "YulIdentifier",
"src": "5666:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nativeSrc": "5644:21:1",
"nodeType": "YulIdentifier",
"src": "5644:21:1"
},
"nativeSrc": "5644:29:1",
"nodeType": "YulFunctionCall",
"src": "5644:29:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5635:3:1",
"nodeType": "YulIdentifier",
"src": "5635:3:1"
},
"nativeSrc": "5635:39:1",
"nodeType": "YulFunctionCall",
"src": "5635:39:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "5628:3:1",
"nodeType": "YulIdentifier",
"src": "5628:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nativeSrc": "5303:377:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "5376:5:1",
"nodeType": "YulTypedName",
"src": "5376:5:1",
"type": ""
},
{
"name": "pos",
"nativeSrc": "5383:3:1",
"nodeType": "YulTypedName",
"src": "5383:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "5391:3:1",
"nodeType": "YulTypedName",
"src": "5391:3:1",
"type": ""
}
],
"src": "5303:377:1"
},
{
"body": {
"nativeSrc": "5832:277:1",
"nodeType": "YulBlock",
"src": "5832:277:1",
"statements": [
{
"nativeSrc": "5842:26:1",
"nodeType": "YulAssignment",
"src": "5842:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "5854:9:1",
"nodeType": "YulIdentifier",
"src": "5854:9:1"
},
{
"kind": "number",
"nativeSrc": "5865:2:1",
"nodeType": "YulLiteral",
"src": "5865:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5850:3:1",
"nodeType": "YulIdentifier",
"src": "5850:3:1"
},
"nativeSrc": "5850:18:1",
"nodeType": "YulFunctionCall",
"src": "5850:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "5842:4:1",
"nodeType": "YulIdentifier",
"src": "5842:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "5922:6:1",
"nodeType": "YulIdentifier",
"src": "5922:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "5935:9:1",
"nodeType": "YulIdentifier",
"src": "5935:9:1"
},
{
"kind": "number",
"nativeSrc": "5946:1:1",
"nodeType": "YulLiteral",
"src": "5946:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5931:3:1",
"nodeType": "YulIdentifier",
"src": "5931:3:1"
},
"nativeSrc": "5931:17:1",
"nodeType": "YulFunctionCall",
"src": "5931:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "5878:43:1",
"nodeType": "YulIdentifier",
"src": "5878:43:1"
},
"nativeSrc": "5878:71:1",
"nodeType": "YulFunctionCall",
"src": "5878:71:1"
},
"nativeSrc": "5878:71:1",
"nodeType": "YulExpressionStatement",
"src": "5878:71:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "5970:9:1",
"nodeType": "YulIdentifier",
"src": "5970:9:1"
},
{
"kind": "number",
"nativeSrc": "5981:2:1",
"nodeType": "YulLiteral",
"src": "5981:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5966:3:1",
"nodeType": "YulIdentifier",
"src": "5966:3:1"
},
"nativeSrc": "5966:18:1",
"nodeType": "YulFunctionCall",
"src": "5966:18:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "5990:4:1",
"nodeType": "YulIdentifier",
"src": "5990:4:1"
},
{
"name": "headStart",
"nativeSrc": "5996:9:1",
"nodeType": "YulIdentifier",
"src": "5996:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "5986:3:1",
"nodeType": "YulIdentifier",
"src": "5986:3:1"
},
"nativeSrc": "5986:20:1",
"nodeType": "YulFunctionCall",
"src": "5986:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "5959:6:1",
"nodeType": "YulIdentifier",
"src": "5959:6:1"
},
"nativeSrc": "5959:48:1",
"nodeType": "YulFunctionCall",
"src": "5959:48:1"
},
"nativeSrc": "5959:48:1",
"nodeType": "YulExpressionStatement",
"src": "5959:48:1"
},
{
"nativeSrc": "6016:86:1",
"nodeType": "YulAssignment",
"src": "6016:86:1",
"value": {
"arguments": [
{
"name": "value1",
"nativeSrc": "6088:6:1",
"nodeType": "YulIdentifier",
"src": "6088:6:1"
},
{
"name": "tail",
"nativeSrc": "6097:4:1",
"nodeType": "YulIdentifier",
"src": "6097:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nativeSrc": "6024:63:1",
"nodeType": "YulIdentifier",
"src": "6024:63:1"
},
"nativeSrc": "6024:78:1",
"nodeType": "YulFunctionCall",
"src": "6024:78:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "6016:4:1",
"nodeType": "YulIdentifier",
"src": "6016:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_uint256_t_string_memory_ptr__to_t_uint256_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "5686:423:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "5796:9:1",
"nodeType": "YulTypedName",
"src": "5796:9:1",
"type": ""
},
{
"name": "value1",
"nativeSrc": "5808:6:1",
"nodeType": "YulTypedName",
"src": "5808:6:1",
"type": ""
},
{
"name": "value0",
"nativeSrc": "5816:6:1",
"nodeType": "YulTypedName",
"src": "5816:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "5827:4:1",
"nodeType": "YulTypedName",
"src": "5827:4:1",
"type": ""
}
],
"src": "5686:423:1"
},
{
"body": {
"nativeSrc": "6143:152:1",
"nodeType": "YulBlock",
"src": "6143:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "6160:1:1",
"nodeType": "YulLiteral",
"src": "6160:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "6163:77:1",
"nodeType": "YulLiteral",
"src": "6163:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "6153:6:1",
"nodeType": "YulIdentifier",
"src": "6153:6:1"
},
"nativeSrc": "6153:88:1",
"nodeType": "YulFunctionCall",
"src": "6153:88:1"
},
"nativeSrc": "6153:88:1",
"nodeType": "YulExpressionStatement",
"src": "6153:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "6257:1:1",
"nodeType": "YulLiteral",
"src": "6257:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "6260:4:1",
"nodeType": "YulLiteral",
"src": "6260:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "6250:6:1",
"nodeType": "YulIdentifier",
"src": "6250:6:1"
},
"nativeSrc": "6250:15:1",
"nodeType": "YulFunctionCall",
"src": "6250:15:1"
},
"nativeSrc": "6250:15:1",
"nodeType": "YulExpressionStatement",
"src": "6250:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "6281:1:1",
"nodeType": "YulLiteral",
"src": "6281:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "6284:4:1",
"nodeType": "YulLiteral",
"src": "6284:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "6274:6:1",
"nodeType": "YulIdentifier",
"src": "6274:6:1"
},
"nativeSrc": "6274:15:1",
"nodeType": "YulFunctionCall",
"src": "6274:15:1"
},
"nativeSrc": "6274:15:1",
"nodeType": "YulExpressionStatement",
"src": "6274:15:1"
}
]
},
"name": "panic_error_0x22",
"nativeSrc": "6115:180:1",
"nodeType": "YulFunctionDefinition",
"src": "6115:180:1"
},
{
"body": {
"nativeSrc": "6352:269:1",
"nodeType": "YulBlock",
"src": "6352:269:1",
"statements": [
{
"nativeSrc": "6362:22:1",
"nodeType": "YulAssignment",
"src": "6362:22:1",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "6376:4:1",
"nodeType": "YulIdentifier",
"src": "6376:4:1"
},
{
"kind": "number",
"nativeSrc": "6382:1:1",
"nodeType": "YulLiteral",
"src": "6382:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nativeSrc": "6372:3:1",
"nodeType": "YulIdentifier",
"src": "6372:3:1"
},
"nativeSrc": "6372:12:1",
"nodeType": "YulFunctionCall",
"src": "6372:12:1"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "6362:6:1",
"nodeType": "YulIdentifier",
"src": "6362:6:1"
}
]
},
{
"nativeSrc": "6393:38:1",
"nodeType": "YulVariableDeclaration",
"src": "6393:38:1",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "6423:4:1",
"nodeType": "YulIdentifier",
"src": "6423:4:1"
},
{
"kind": "number",
"nativeSrc": "6429:1:1",
"nodeType": "YulLiteral",
"src": "6429:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nativeSrc": "6419:3:1",
"nodeType": "YulIdentifier",
"src": "6419:3:1"
},
"nativeSrc": "6419:12:1",
"nodeType": "YulFunctionCall",
"src": "6419:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nativeSrc": "6397:18:1",
"nodeType": "YulTypedName",
"src": "6397:18:1",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "6470:51:1",
"nodeType": "YulBlock",
"src": "6470:51:1",
"statements": [
{
"nativeSrc": "6484:27:1",
"nodeType": "YulAssignment",
"src": "6484:27:1",
"value": {
"arguments": [
{
"name": "length",
"nativeSrc": "6498:6:1",
"nodeType": "YulIdentifier",
"src": "6498:6:1"
},
{
"kind": "number",
"nativeSrc": "6506:4:1",
"nodeType": "YulLiteral",
"src": "6506:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nativeSrc": "6494:3:1",
"nodeType": "YulIdentifier",
"src": "6494:3:1"
},
"nativeSrc": "6494:17:1",
"nodeType": "YulFunctionCall",
"src": "6494:17:1"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "6484:6:1",
"nodeType": "YulIdentifier",
"src": "6484:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nativeSrc": "6450:18:1",
"nodeType": "YulIdentifier",
"src": "6450:18:1"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "6443:6:1",
"nodeType": "YulIdentifier",
"src": "6443:6:1"
},
"nativeSrc": "6443:26:1",
"nodeType": "YulFunctionCall",
"src": "6443:26:1"
},
"nativeSrc": "6440:81:1",
"nodeType": "YulIf",
"src": "6440:81:1"
},
{
"body": {
"nativeSrc": "6573:42:1",
"nodeType": "YulBlock",
"src": "6573:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nativeSrc": "6587:16:1",
"nodeType": "YulIdentifier",
"src": "6587:16:1"
},
"nativeSrc": "6587:18:1",
"nodeType": "YulFunctionCall",
"src": "6587:18:1"
},
"nativeSrc": "6587:18:1",
"nodeType": "YulExpressionStatement",
"src": "6587:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nativeSrc": "6537:18:1",
"nodeType": "YulIdentifier",
"src": "6537:18:1"
},
{
"arguments": [
{
"name": "length",
"nativeSrc": "6560:6:1",
"nodeType": "YulIdentifier",
"src": "6560:6:1"
},
{
"kind": "number",
"nativeSrc": "6568:2:1",
"nodeType": "YulLiteral",
"src": "6568:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "6557:2:1",
"nodeType": "YulIdentifier",
"src": "6557:2:1"
},
"nativeSrc": "6557:14:1",
"nodeType": "YulFunctionCall",
"src": "6557:14:1"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "6534:2:1",
"nodeType": "YulIdentifier",
"src": "6534:2:1"
},
"nativeSrc": "6534:38:1",
"nodeType": "YulFunctionCall",
"src": "6534:38:1"
},
"nativeSrc": "6531:84:1",
"nodeType": "YulIf",
"src": "6531:84:1"
}
]
},
"name": "extract_byte_array_length",
"nativeSrc": "6301:320:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nativeSrc": "6336:4:1",
"nodeType": "YulTypedName",
"src": "6336:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nativeSrc": "6345:6:1",
"nodeType": "YulTypedName",
"src": "6345:6:1",
"type": ""
}
],
"src": "6301:320:1"
},
{
"body": {
"nativeSrc": "6681:87:1",
"nodeType": "YulBlock",
"src": "6681:87:1",
"statements": [
{
"nativeSrc": "6691:11:1",
"nodeType": "YulAssignment",
"src": "6691:11:1",
"value": {
"name": "ptr",
"nativeSrc": "6699:3:1",
"nodeType": "YulIdentifier",
"src": "6699:3:1"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "6691:4:1",
"nodeType": "YulIdentifier",
"src": "6691:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "6719:1:1",
"nodeType": "YulLiteral",
"src": "6719:1:1",
"type": "",
"value": "0"
},
{
"name": "ptr",
"nativeSrc": "6722:3:1",
"nodeType": "YulIdentifier",
"src": "6722:3:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "6712:6:1",
"nodeType": "YulIdentifier",
"src": "6712:6:1"
},
"nativeSrc": "6712:14:1",
"nodeType": "YulFunctionCall",
"src": "6712:14:1"
},
"nativeSrc": "6712:14:1",
"nodeType": "YulExpressionStatement",
"src": "6712:14:1"
},
{
"nativeSrc": "6735:26:1",
"nodeType": "YulAssignment",
"src": "6735:26:1",
"value": {
"arguments": [
{
"kind": "number",
"nativeSrc": "6753:1:1",
"nodeType": "YulLiteral",
"src": "6753:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "6756:4:1",
"nodeType": "YulLiteral",
"src": "6756:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nativeSrc": "6743:9:1",
"nodeType": "YulIdentifier",
"src": "6743:9:1"
},
"nativeSrc": "6743:18:1",
"nodeType": "YulFunctionCall",
"src": "6743:18:1"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "6735:4:1",
"nodeType": "YulIdentifier",
"src": "6735:4:1"
}
]
}
]
},
"name": "array_dataslot_t_string_storage",
"nativeSrc": "6627:141:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nativeSrc": "6668:3:1",
"nodeType": "YulTypedName",
"src": "6668:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nativeSrc": "6676:4:1",
"nodeType": "YulTypedName",
"src": "6676:4:1",
"type": ""
}
],
"src": "6627:141:1"
},
{
"body": {
"nativeSrc": "6818:49:1",
"nodeType": "YulBlock",
"src": "6818:49:1",
"statements": [
{
"nativeSrc": "6828:33:1",
"nodeType": "YulAssignment",
"src": "6828:33:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "6846:5:1",
"nodeType": "YulIdentifier",
"src": "6846:5:1"
},
{
"kind": "number",
"nativeSrc": "6853:2:1",
"nodeType": "YulLiteral",
"src": "6853:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6842:3:1",
"nodeType": "YulIdentifier",
"src": "6842:3:1"
},
"nativeSrc": "6842:14:1",
"nodeType": "YulFunctionCall",
"src": "6842:14:1"
},
{
"kind": "number",
"nativeSrc": "6858:2:1",
"nodeType": "YulLiteral",
"src": "6858:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "div",
"nativeSrc": "6838:3:1",
"nodeType": "YulIdentifier",
"src": "6838:3:1"
},
"nativeSrc": "6838:23:1",
"nodeType": "YulFunctionCall",
"src": "6838:23:1"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "6828:6:1",
"nodeType": "YulIdentifier",
"src": "6828:6:1"
}
]
}
]
},
"name": "divide_by_32_ceil",
"nativeSrc": "6774:93:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "6801:5:1",
"nodeType": "YulTypedName",
"src": "6801:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "6811:6:1",
"nodeType": "YulTypedName",
"src": "6811:6:1",
"type": ""
}
],
"src": "6774:93:1"
},
{
"body": {
"nativeSrc": "6926:54:1",
"nodeType": "YulBlock",
"src": "6926:54:1",
"statements": [
{
"nativeSrc": "6936:37:1",
"nodeType": "YulAssignment",
"src": "6936:37:1",
"value": {
"arguments": [
{
"name": "bits",
"nativeSrc": "6961:4:1",
"nodeType": "YulIdentifier",
"src": "6961:4:1"
},
{
"name": "value",
"nativeSrc": "6967:5:1",
"nodeType": "YulIdentifier",
"src": "6967:5:1"
}
],
"functionName": {
"name": "shl",
"nativeSrc": "6957:3:1",
"nodeType": "YulIdentifier",
"src": "6957:3:1"
},
"nativeSrc": "6957:16:1",
"nodeType": "YulFunctionCall",
"src": "6957:16:1"
},
"variableNames": [
{
"name": "newValue",
"nativeSrc": "6936:8:1",
"nodeType": "YulIdentifier",
"src": "6936:8:1"
}
]
}
]
},
"name": "shift_left_dynamic",
"nativeSrc": "6873:107:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nativeSrc": "6901:4:1",
"nodeType": "YulTypedName",
"src": "6901:4:1",
"type": ""
},
{
"name": "value",
"nativeSrc": "6907:5:1",
"nodeType": "YulTypedName",
"src": "6907:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nativeSrc": "6917:8:1",
"nodeType": "YulTypedName",
"src": "6917:8:1",
"type": ""
}
],
"src": "6873:107:1"
},
{
"body": {
"nativeSrc": "7062:317:1",
"nodeType": "YulBlock",
"src": "7062:317:1",
"statements": [
{
"nativeSrc": "7072:35:1",
"nodeType": "YulVariableDeclaration",
"src": "7072:35:1",
"value": {
"arguments": [
{
"name": "shiftBytes",
"nativeSrc": "7093:10:1",
"nodeType": "YulIdentifier",
"src": "7093:10:1"
},
{
"kind": "number",
"nativeSrc": "7105:1:1",
"nodeType": "YulLiteral",
"src": "7105:1:1",
"type": "",
"value": "8"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "7089:3:1",
"nodeType": "YulIdentifier",
"src": "7089:3:1"
},
"nativeSrc": "7089:18:1",
"nodeType": "YulFunctionCall",
"src": "7089:18:1"
},
"variables": [
{
"name": "shiftBits",
"nativeSrc": "7076:9:1",
"nodeType": "YulTypedName",
"src": "7076:9:1",
"type": ""
}
]
},
{
"nativeSrc": "7116:109:1",
"nodeType": "YulVariableDeclaration",
"src": "7116:109:1",
"value": {
"arguments": [
{
"name": "shiftBits",
"nativeSrc": "7147:9:1",
"nodeType": "YulIdentifier",
"src": "7147:9:1"
},
{
"kind": "number",
"nativeSrc": "7158:66:1",
"nodeType": "YulLiteral",
"src": "7158:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nativeSrc": "7128:18:1",
"nodeType": "YulIdentifier",
"src": "7128:18:1"
},
"nativeSrc": "7128:97:1",
"nodeType": "YulFunctionCall",
"src": "7128:97:1"
},
"variables": [
{
"name": "mask",
"nativeSrc": "7120:4:1",
"nodeType": "YulTypedName",
"src": "7120:4:1",
"type": ""
}
]
},
{
"nativeSrc": "7234:51:1",
"nodeType": "YulAssignment",
"src": "7234:51:1",
"value": {
"arguments": [
{
"name": "shiftBits",
"nativeSrc": "7265:9:1",
"nodeType": "YulIdentifier",
"src": "7265:9:1"
},
{
"name": "toInsert",
"nativeSrc": "7276:8:1",
"nodeType": "YulIdentifier",
"src": "7276:8:1"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nativeSrc": "7246:18:1",
"nodeType": "YulIdentifier",
"src": "7246:18:1"
},
"nativeSrc": "7246:39:1",
"nodeType": "YulFunctionCall",
"src": "7246:39:1"
},
"variableNames": [
{
"name": "toInsert",
"nativeSrc": "7234:8:1",
"nodeType": "YulIdentifier",
"src": "7234:8:1"
}
]
},
{
"nativeSrc": "7294:30:1",
"nodeType": "YulAssignment",
"src": "7294:30:1",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "7307:5:1",
"nodeType": "YulIdentifier",
"src": "7307:5:1"
},
{
"arguments": [
{
"name": "mask",
"nativeSrc": "7318:4:1",
"nodeType": "YulIdentifier",
"src": "7318:4:1"
}
],
"functionName": {
"name": "not",
"nativeSrc": "7314:3:1",
"nodeType": "YulIdentifier",
"src": "7314:3:1"
},
"nativeSrc": "7314:9:1",
"nodeType": "YulFunctionCall",
"src": "7314:9:1"
}
],
"functionName": {
"name": "and",
"nativeSrc": "7303:3:1",
"nodeType": "YulIdentifier",
"src": "7303:3:1"
},
"nativeSrc": "7303:21:1",
"nodeType": "YulFunctionCall",
"src": "7303:21:1"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "7294:5:1",
"nodeType": "YulIdentifier",
"src": "7294:5:1"
}
]
},
{
"nativeSrc": "7333:40:1",
"nodeType": "YulAssignment",
"src": "7333:40:1",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "7346:5:1",
"nodeType": "YulIdentifier",
"src": "7346:5:1"
},
{
"arguments": [
{
"name": "toInsert",
"nativeSrc": "7357:8:1",
"nodeType": "YulIdentifier",
"src": "7357:8:1"
},
{
"name": "mask",
"nativeSrc": "7367:4:1",
"nodeType": "YulIdentifier",
"src": "7367:4:1"
}
],
"functionName": {
"name": "and",
"nativeSrc": "7353:3:1",
"nodeType": "YulIdentifier",
"src": "7353:3:1"
},
"nativeSrc": "7353:19:1",
"nodeType": "YulFunctionCall",
"src": "7353:19:1"
}
],
"functionName": {
"name": "or",
"nativeSrc": "7343:2:1",
"nodeType": "YulIdentifier",
"src": "7343:2:1"
},
"nativeSrc": "7343:30:1",
"nodeType": "YulFunctionCall",
"src": "7343:30:1"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "7333:6:1",
"nodeType": "YulIdentifier",
"src": "7333:6:1"
}
]
}
]
},
"name": "update_byte_slice_dynamic32",
"nativeSrc": "6986:393:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "7023:5:1",
"nodeType": "YulTypedName",
"src": "7023:5:1",
"type": ""
},
{
"name": "shiftBytes",
"nativeSrc": "7030:10:1",
"nodeType": "YulTypedName",
"src": "7030:10:1",
"type": ""
},
{
"name": "toInsert",
"nativeSrc": "7042:8:1",
"nodeType": "YulTypedName",
"src": "7042:8:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "7055:6:1",
"nodeType": "YulTypedName",
"src": "7055:6:1",
"type": ""
}
],
"src": "6986:393:1"
},
{
"body": {
"nativeSrc": "7417:28:1",
"nodeType": "YulBlock",
"src": "7417:28:1",
"statements": [
{
"nativeSrc": "7427:12:1",
"nodeType": "YulAssignment",
"src": "7427:12:1",
"value": {
"name": "value",
"nativeSrc": "7434:5:1",
"nodeType": "YulIdentifier",
"src": "7434:5:1"
},
"variableNames": [
{
"name": "ret",
"nativeSrc": "7427:3:1",
"nodeType": "YulIdentifier",
"src": "7427:3:1"
}
]
}
]
},
"name": "identity",
"nativeSrc": "7385:60:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "7403:5:1",
"nodeType": "YulTypedName",
"src": "7403:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nativeSrc": "7413:3:1",
"nodeType": "YulTypedName",
"src": "7413:3:1",
"type": ""
}
],
"src": "7385:60:1"
},
{
"body": {
"nativeSrc": "7511:82:1",
"nodeType": "YulBlock",
"src": "7511:82:1",
"statements": [
{
"nativeSrc": "7521:66:1",
"nodeType": "YulAssignment",
"src": "7521:66:1",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "7579:5:1",
"nodeType": "YulIdentifier",
"src": "7579:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "7561:17:1",
"nodeType": "YulIdentifier",
"src": "7561:17:1"
},
"nativeSrc": "7561:24:1",
"nodeType": "YulFunctionCall",
"src": "7561:24:1"
}
],
"functionName": {
"name": "identity",
"nativeSrc": "7552:8:1",
"nodeType": "YulIdentifier",
"src": "7552:8:1"
},
"nativeSrc": "7552:34:1",
"nodeType": "YulFunctionCall",
"src": "7552:34:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "7534:17:1",
"nodeType": "YulIdentifier",
"src": "7534:17:1"
},
"nativeSrc": "7534:53:1",
"nodeType": "YulFunctionCall",
"src": "7534:53:1"
},
"variableNames": [
{
"name": "converted",
"nativeSrc": "7521:9:1",
"nodeType": "YulIdentifier",
"src": "7521:9:1"
}
]
}
]
},
"name": "convert_t_uint256_to_t_uint256",
"nativeSrc": "7451:142:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "7491:5:1",
"nodeType": "YulTypedName",
"src": "7491:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nativeSrc": "7501:9:1",
"nodeType": "YulTypedName",
"src": "7501:9:1",
"type": ""
}
],
"src": "7451:142:1"
},
{
"body": {
"nativeSrc": "7646:28:1",
"nodeType": "YulBlock",
"src": "7646:28:1",
"statements": [
{
"nativeSrc": "7656:12:1",
"nodeType": "YulAssignment",
"src": "7656:12:1",
"value": {
"name": "value",
"nativeSrc": "7663:5:1",
"nodeType": "YulIdentifier",
"src": "7663:5:1"
},
"variableNames": [
{
"name": "ret",
"nativeSrc": "7656:3:1",
"nodeType": "YulIdentifier",
"src": "7656:3:1"
}
]
}
]
},
"name": "prepare_store_t_uint256",
"nativeSrc": "7599:75:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "7632:5:1",
"nodeType": "YulTypedName",
"src": "7632:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nativeSrc": "7642:3:1",
"nodeType": "YulTypedName",
"src": "7642:3:1",
"type": ""
}
],
"src": "7599:75:1"
},
{
"body": {
"nativeSrc": "7756:193:1",
"nodeType": "YulBlock",
"src": "7756:193:1",
"statements": [
{
"nativeSrc": "7766:63:1",
"nodeType": "YulVariableDeclaration",
"src": "7766:63:1",
"value": {
"arguments": [
{
"name": "value_0",
"nativeSrc": "7821:7:1",
"nodeType": "YulIdentifier",
"src": "7821:7:1"
}
],
"functionName": {
"name": "convert_t_uint256_to_t_uint256",
"nativeSrc": "7790:30:1",
"nodeType": "YulIdentifier",
"src": "7790:30:1"
},
"nativeSrc": "7790:39:1",
"nodeType": "YulFunctionCall",
"src": "7790:39:1"
},
"variables": [
{
"name": "convertedValue_0",
"nativeSrc": "7770:16:1",
"nodeType": "YulTypedName",
"src": "7770:16:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "7845:4:1",
"nodeType": "YulIdentifier",
"src": "7845:4:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "slot",
"nativeSrc": "7885:4:1",
"nodeType": "YulIdentifier",
"src": "7885:4:1"
}
],
"functionName": {
"name": "sload",
"nativeSrc": "7879:5:1",
"nodeType": "YulIdentifier",
"src": "7879:5:1"
},
"nativeSrc": "7879:11:1",
"nodeType": "YulFunctionCall",
"src": "7879:11:1"
},
{
"name": "offset",
"nativeSrc": "7892:6:1",
"nodeType": "YulIdentifier",
"src": "7892:6:1"
},
{
"arguments": [
{
"name": "convertedValue_0",
"nativeSrc": "7924:16:1",
"nodeType": "YulIdentifier",
"src": "7924:16:1"
}
],
"functionName": {
"name": "prepare_store_t_uint256",
"nativeSrc": "7900:23:1",
"nodeType": "YulIdentifier",
"src": "7900:23:1"
},
"nativeSrc": "7900:41:1",
"nodeType": "YulFunctionCall",
"src": "7900:41:1"
}
],
"functionName": {
"name": "update_byte_slice_dynamic32",
"nativeSrc": "7851:27:1",
"nodeType": "YulIdentifier",
"src": "7851:27:1"
},
"nativeSrc": "7851:91:1",
"nodeType": "YulFunctionCall",
"src": "7851:91:1"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "7838:6:1",
"nodeType": "YulIdentifier",
"src": "7838:6:1"
},
"nativeSrc": "7838:105:1",
"nodeType": "YulFunctionCall",
"src": "7838:105:1"
},
"nativeSrc": "7838:105:1",
"nodeType": "YulExpressionStatement",
"src": "7838:105:1"
}
]
},
"name": "update_storage_value_t_uint256_to_t_uint256",
"nativeSrc": "7680:269:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nativeSrc": "7733:4:1",
"nodeType": "YulTypedName",
"src": "7733:4:1",
"type": ""
},
{
"name": "offset",
"nativeSrc": "7739:6:1",
"nodeType": "YulTypedName",
"src": "7739:6:1",
"type": ""
},
{
"name": "value_0",
"nativeSrc": "7747:7:1",
"nodeType": "YulTypedName",
"src": "7747:7:1",
"type": ""
}
],
"src": "7680:269:1"
},
{
"body": {
"nativeSrc": "8004:24:1",
"nodeType": "YulBlock",
"src": "8004:24:1",
"statements": [
{
"nativeSrc": "8014:8:1",
"nodeType": "YulAssignment",
"src": "8014:8:1",
"value": {
"kind": "number",
"nativeSrc": "8021:1:1",
"nodeType": "YulLiteral",
"src": "8021:1:1",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "ret",
"nativeSrc": "8014:3:1",
"nodeType": "YulIdentifier",
"src": "8014:3:1"
}
]
}
]
},
"name": "zero_value_for_split_t_uint256",
"nativeSrc": "7955:73:1",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "ret",
"nativeSrc": "8000:3:1",
"nodeType": "YulTypedName",
"src": "8000:3:1",
"type": ""
}
],
"src": "7955:73:1"
},
{
"body": {
"nativeSrc": "8087:136:1",
"nodeType": "YulBlock",
"src": "8087:136:1",
"statements": [
{
"nativeSrc": "8097:46:1",
"nodeType": "YulVariableDeclaration",
"src": "8097:46:1",
"value": {
"arguments": [],
"functionName": {
"name": "zero_value_for_split_t_uint256",
"nativeSrc": "8111:30:1",
"nodeType": "YulIdentifier",
"src": "8111:30:1"
},
"nativeSrc": "8111:32:1",
"nodeType": "YulFunctionCall",
"src": "8111:32:1"
},
"variables": [
{
"name": "zero_0",
"nativeSrc": "8101:6:1",
"nodeType": "YulTypedName",
"src": "8101:6:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "8196:4:1",
"nodeType": "YulIdentifier",
"src": "8196:4:1"
},
{
"name": "offset",
"nativeSrc": "8202:6:1",
"nodeType": "YulIdentifier",
"src": "8202:6:1"
},
{
"name": "zero_0",
"nativeSrc": "8210:6:1",
"nodeType": "YulIdentifier",
"src": "8210:6:1"
}
],
"functionName": {
"name": "update_storage_value_t_uint256_to_t_uint256",
"nativeSrc": "8152:43:1",
"nodeType": "YulIdentifier",
"src": "8152:43:1"
},
"nativeSrc": "8152:65:1",
"nodeType": "YulFunctionCall",
"src": "8152:65:1"
},
"nativeSrc": "8152:65:1",
"nodeType": "YulExpressionStatement",
"src": "8152:65:1"
}
]
},
"name": "storage_set_to_zero_t_uint256",
"nativeSrc": "8034:189:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nativeSrc": "8073:4:1",
"nodeType": "YulTypedName",
"src": "8073:4:1",
"type": ""
},
{
"name": "offset",
"nativeSrc": "8079:6:1",
"nodeType": "YulTypedName",
"src": "8079:6:1",
"type": ""
}
],
"src": "8034:189:1"
},
{
"body": {
"nativeSrc": "8279:136:1",
"nodeType": "YulBlock",
"src": "8279:136:1",
"statements": [
{
"body": {
"nativeSrc": "8346:63:1",
"nodeType": "YulBlock",
"src": "8346:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "start",
"nativeSrc": "8390:5:1",
"nodeType": "YulIdentifier",
"src": "8390:5:1"
},
{
"kind": "number",
"nativeSrc": "8397:1:1",
"nodeType": "YulLiteral",
"src": "8397:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "storage_set_to_zero_t_uint256",
"nativeSrc": "8360:29:1",
"nodeType": "YulIdentifier",
"src": "8360:29:1"
},
"nativeSrc": "8360:39:1",
"nodeType": "YulFunctionCall",
"src": "8360:39:1"
},
"nativeSrc": "8360:39:1",
"nodeType": "YulExpressionStatement",
"src": "8360:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "start",
"nativeSrc": "8299:5:1",
"nodeType": "YulIdentifier",
"src": "8299:5:1"
},
{
"name": "end",
"nativeSrc": "8306:3:1",
"nodeType": "YulIdentifier",
"src": "8306:3:1"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "8296:2:1",
"nodeType": "YulIdentifier",
"src": "8296:2:1"
},
"nativeSrc": "8296:14:1",
"nodeType": "YulFunctionCall",
"src": "8296:14:1"
},
"nativeSrc": "8289:120:1",
"nodeType": "YulForLoop",
"post": {
"nativeSrc": "8311:26:1",
"nodeType": "YulBlock",
"src": "8311:26:1",
"statements": [
{
"nativeSrc": "8313:22:1",
"nodeType": "YulAssignment",
"src": "8313:22:1",
"value": {
"arguments": [
{
"name": "start",
"nativeSrc": "8326:5:1",
"nodeType": "YulIdentifier",
"src": "8326:5:1"
},
{
"kind": "number",
"nativeSrc": "8333:1:1",
"nodeType": "YulLiteral",
"src": "8333:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8322:3:1",
"nodeType": "YulIdentifier",
"src": "8322:3:1"
},
"nativeSrc": "8322:13:1",
"nodeType": "YulFunctionCall",
"src": "8322:13:1"
},
"variableNames": [
{
"name": "start",
"nativeSrc": "8313:5:1",
"nodeType": "YulIdentifier",
"src": "8313:5:1"
}
]
}
]
},
"pre": {
"nativeSrc": "8293:2:1",
"nodeType": "YulBlock",
"src": "8293:2:1",
"statements": []
},
"src": "8289:120:1"
}
]
},
"name": "clear_storage_range_t_bytes1",
"nativeSrc": "8229:186:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "start",
"nativeSrc": "8267:5:1",
"nodeType": "YulTypedName",
"src": "8267:5:1",
"type": ""
},
{
"name": "end",
"nativeSrc": "8274:3:1",
"nodeType": "YulTypedName",
"src": "8274:3:1",
"type": ""
}
],
"src": "8229:186:1"
},
{
"body": {
"nativeSrc": "8500:464:1",
"nodeType": "YulBlock",
"src": "8500:464:1",
"statements": [
{
"body": {
"nativeSrc": "8526:431:1",
"nodeType": "YulBlock",
"src": "8526:431:1",
"statements": [
{
"nativeSrc": "8540:54:1",
"nodeType": "YulVariableDeclaration",
"src": "8540:54:1",
"value": {
"arguments": [
{
"name": "array",
"nativeSrc": "8588:5:1",
"nodeType": "YulIdentifier",
"src": "8588:5:1"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nativeSrc": "8556:31:1",
"nodeType": "YulIdentifier",
"src": "8556:31:1"
},
"nativeSrc": "8556:38:1",
"nodeType": "YulFunctionCall",
"src": "8556:38:1"
},
"variables": [
{
"name": "dataArea",
"nativeSrc": "8544:8:1",
"nodeType": "YulTypedName",
"src": "8544:8:1",
"type": ""
}
]
},
{
"nativeSrc": "8607:63:1",
"nodeType": "YulVariableDeclaration",
"src": "8607:63:1",
"value": {
"arguments": [
{
"name": "dataArea",
"nativeSrc": "8630:8:1",
"nodeType": "YulIdentifier",
"src": "8630:8:1"
},
{
"arguments": [
{
"name": "startIndex",
"nativeSrc": "8658:10:1",
"nodeType": "YulIdentifier",
"src": "8658:10:1"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nativeSrc": "8640:17:1",
"nodeType": "YulIdentifier",
"src": "8640:17:1"
},
"nativeSrc": "8640:29:1",
"nodeType": "YulFunctionCall",
"src": "8640:29:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8626:3:1",
"nodeType": "YulIdentifier",
"src": "8626:3:1"
},
"nativeSrc": "8626:44:1",
"nodeType": "YulFunctionCall",
"src": "8626:44:1"
},
"variables": [
{
"name": "deleteStart",
"nativeSrc": "8611:11:1",
"nodeType": "YulTypedName",
"src": "8611:11:1",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "8827:27:1",
"nodeType": "YulBlock",
"src": "8827:27:1",
"statements": [
{
"nativeSrc": "8829:23:1",
"nodeType": "YulAssignment",
"src": "8829:23:1",
"value": {
"name": "dataArea",
"nativeSrc": "8844:8:1",
"nodeType": "YulIdentifier",
"src": "8844:8:1"
},
"variableNames": [
{
"name": "deleteStart",
"nativeSrc": "8829:11:1",
"nodeType": "YulIdentifier",
"src": "8829:11:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "startIndex",
"nativeSrc": "8811:10:1",
"nodeType": "YulIdentifier",
"src": "8811:10:1"
},
{
"kind": "number",
"nativeSrc": "8823:2:1",
"nodeType": "YulLiteral",
"src": "8823:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "8808:2:1",
"nodeType": "YulIdentifier",
"src": "8808:2:1"
},
"nativeSrc": "8808:18:1",
"nodeType": "YulFunctionCall",
"src": "8808:18:1"
},
"nativeSrc": "8805:49:1",
"nodeType": "YulIf",
"src": "8805:49:1"
},
{
"expression": {
"arguments": [
{
"name": "deleteStart",
"nativeSrc": "8896:11:1",
"nodeType": "YulIdentifier",
"src": "8896:11:1"
},
{
"arguments": [
{
"name": "dataArea",
"nativeSrc": "8913:8:1",
"nodeType": "YulIdentifier",
"src": "8913:8:1"
},
{
"arguments": [
{
"name": "len",
"nativeSrc": "8941:3:1",
"nodeType": "YulIdentifier",
"src": "8941:3:1"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nativeSrc": "8923:17:1",
"nodeType": "YulIdentifier",
"src": "8923:17:1"
},
"nativeSrc": "8923:22:1",
"nodeType": "YulFunctionCall",
"src": "8923:22:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8909:3:1",
"nodeType": "YulIdentifier",
"src": "8909:3:1"
},
"nativeSrc": "8909:37:1",
"nodeType": "YulFunctionCall",
"src": "8909:37:1"
}
],
"functionName": {
"name": "clear_storage_range_t_bytes1",
"nativeSrc": "8867:28:1",
"nodeType": "YulIdentifier",
"src": "8867:28:1"
},
"nativeSrc": "8867:80:1",
"nodeType": "YulFunctionCall",
"src": "8867:80:1"
},
"nativeSrc": "8867:80:1",
"nodeType": "YulExpressionStatement",
"src": "8867:80:1"
}
]
},
"condition": {
"arguments": [
{
"name": "len",
"nativeSrc": "8517:3:1",
"nodeType": "YulIdentifier",
"src": "8517:3:1"
},
{
"kind": "number",
"nativeSrc": "8522:2:1",
"nodeType": "YulLiteral",
"src": "8522:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "8514:2:1",
"nodeType": "YulIdentifier",
"src": "8514:2:1"
},
"nativeSrc": "8514:11:1",
"nodeType": "YulFunctionCall",
"src": "8514:11:1"
},
"nativeSrc": "8511:446:1",
"nodeType": "YulIf",
"src": "8511:446:1"
}
]
},
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nativeSrc": "8421:543:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "array",
"nativeSrc": "8476:5:1",
"nodeType": "YulTypedName",
"src": "8476:5:1",
"type": ""
},
{
"name": "len",
"nativeSrc": "8483:3:1",
"nodeType": "YulTypedName",
"src": "8483:3:1",
"type": ""
},
{
"name": "startIndex",
"nativeSrc": "8488:10:1",
"nodeType": "YulTypedName",
"src": "8488:10:1",
"type": ""
}
],
"src": "8421:543:1"
},
{
"body": {
"nativeSrc": "9033:54:1",
"nodeType": "YulBlock",
"src": "9033:54:1",
"statements": [
{
"nativeSrc": "9043:37:1",
"nodeType": "YulAssignment",
"src": "9043:37:1",
"value": {
"arguments": [
{
"name": "bits",
"nativeSrc": "9068:4:1",
"nodeType": "YulIdentifier",
"src": "9068:4:1"
},
{
"name": "value",
"nativeSrc": "9074:5:1",
"nodeType": "YulIdentifier",
"src": "9074:5:1"
}
],
"functionName": {
"name": "shr",
"nativeSrc": "9064:3:1",
"nodeType": "YulIdentifier",
"src": "9064:3:1"
},
"nativeSrc": "9064:16:1",
"nodeType": "YulFunctionCall",
"src": "9064:16:1"
},
"variableNames": [
{
"name": "newValue",
"nativeSrc": "9043:8:1",
"nodeType": "YulIdentifier",
"src": "9043:8:1"
}
]
}
]
},
"name": "shift_right_unsigned_dynamic",
"nativeSrc": "8970:117:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nativeSrc": "9008:4:1",
"nodeType": "YulTypedName",
"src": "9008:4:1",
"type": ""
},
{
"name": "value",
"nativeSrc": "9014:5:1",
"nodeType": "YulTypedName",
"src": "9014:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nativeSrc": "9024:8:1",
"nodeType": "YulTypedName",
"src": "9024:8:1",
"type": ""
}
],
"src": "8970:117:1"
},
{
"body": {
"nativeSrc": "9144:118:1",
"nodeType": "YulBlock",
"src": "9144:118:1",
"statements": [
{
"nativeSrc": "9154:68:1",
"nodeType": "YulVariableDeclaration",
"src": "9154:68:1",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nativeSrc": "9203:1:1",
"nodeType": "YulLiteral",
"src": "9203:1:1",
"type": "",
"value": "8"
},
{
"name": "bytes",
"nativeSrc": "9206:5:1",
"nodeType": "YulIdentifier",
"src": "9206:5:1"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "9199:3:1",
"nodeType": "YulIdentifier",
"src": "9199:3:1"
},
"nativeSrc": "9199:13:1",
"nodeType": "YulFunctionCall",
"src": "9199:13:1"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "9218:1:1",
"nodeType": "YulLiteral",
"src": "9218:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nativeSrc": "9214:3:1",
"nodeType": "YulIdentifier",
"src": "9214:3:1"
},
"nativeSrc": "9214:6:1",
"nodeType": "YulFunctionCall",
"src": "9214:6:1"
}
],
"functionName": {
"name": "shift_right_unsigned_dynamic",
"nativeSrc": "9170:28:1",
"nodeType": "YulIdentifier",
"src": "9170:28:1"
},
"nativeSrc": "9170:51:1",
"nodeType": "YulFunctionCall",
"src": "9170:51:1"
}
],
"functionName": {
"name": "not",
"nativeSrc": "9166:3:1",
"nodeType": "YulIdentifier",
"src": "9166:3:1"
},
"nativeSrc": "9166:56:1",
"nodeType": "YulFunctionCall",
"src": "9166:56:1"
},
"variables": [
{
"name": "mask",
"nativeSrc": "9158:4:1",
"nodeType": "YulTypedName",
"src": "9158:4:1",
"type": ""
}
]
},
{
"nativeSrc": "9231:25:1",
"nodeType": "YulAssignment",
"src": "9231:25:1",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "9245:4:1",
"nodeType": "YulIdentifier",
"src": "9245:4:1"
},
{
"name": "mask",
"nativeSrc": "9251:4:1",
"nodeType": "YulIdentifier",
"src": "9251:4:1"
}
],
"functionName": {
"name": "and",
"nativeSrc": "9241:3:1",
"nodeType": "YulIdentifier",
"src": "9241:3:1"
},
"nativeSrc": "9241:15:1",
"nodeType": "YulFunctionCall",
"src": "9241:15:1"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "9231:6:1",
"nodeType": "YulIdentifier",
"src": "9231:6:1"
}
]
}
]
},
"name": "mask_bytes_dynamic",
"nativeSrc": "9093:169:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nativeSrc": "9121:4:1",
"nodeType": "YulTypedName",
"src": "9121:4:1",
"type": ""
},
{
"name": "bytes",
"nativeSrc": "9127:5:1",
"nodeType": "YulTypedName",
"src": "9127:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "9137:6:1",
"nodeType": "YulTypedName",
"src": "9137:6:1",
"type": ""
}
],
"src": "9093:169:1"
},
{
"body": {
"nativeSrc": "9348:214:1",
"nodeType": "YulBlock",
"src": "9348:214:1",
"statements": [
{
"nativeSrc": "9481:37:1",
"nodeType": "YulAssignment",
"src": "9481:37:1",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "9508:4:1",
"nodeType": "YulIdentifier",
"src": "9508:4:1"
},
{
"name": "len",
"nativeSrc": "9514:3:1",
"nodeType": "YulIdentifier",
"src": "9514:3:1"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nativeSrc": "9489:18:1",
"nodeType": "YulIdentifier",
"src": "9489:18:1"
},
"nativeSrc": "9489:29:1",
"nodeType": "YulFunctionCall",
"src": "9489:29:1"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "9481:4:1",
"nodeType": "YulIdentifier",
"src": "9481:4:1"
}
]
},
{
"nativeSrc": "9527:29:1",
"nodeType": "YulAssignment",
"src": "9527:29:1",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "9538:4:1",
"nodeType": "YulIdentifier",
"src": "9538:4:1"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "9548:1:1",
"nodeType": "YulLiteral",
"src": "9548:1:1",
"type": "",
"value": "2"
},
{
"name": "len",
"nativeSrc": "9551:3:1",
"nodeType": "YulIdentifier",
"src": "9551:3:1"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "9544:3:1",
"nodeType": "YulIdentifier",
"src": "9544:3:1"
},
"nativeSrc": "9544:11:1",
"nodeType": "YulFunctionCall",
"src": "9544:11:1"
}
],
"functionName": {
"name": "or",
"nativeSrc": "9535:2:1",
"nodeType": "YulIdentifier",
"src": "9535:2:1"
},
"nativeSrc": "9535:21:1",
"nodeType": "YulFunctionCall",
"src": "9535:21:1"
},
"variableNames": [
{
"name": "used",
"nativeSrc": "9527:4:1",
"nodeType": "YulIdentifier",
"src": "9527:4:1"
}
]
}
]
},
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nativeSrc": "9267:295:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nativeSrc": "9329:4:1",
"nodeType": "YulTypedName",
"src": "9329:4:1",
"type": ""
},
{
"name": "len",
"nativeSrc": "9335:3:1",
"nodeType": "YulTypedName",
"src": "9335:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "used",
"nativeSrc": "9343:4:1",
"nodeType": "YulTypedName",
"src": "9343:4:1",
"type": ""
}
],
"src": "9267:295:1"
},
{
"body": {
"nativeSrc": "9659:1303:1",
"nodeType": "YulBlock",
"src": "9659:1303:1",
"statements": [
{
"nativeSrc": "9670:51:1",
"nodeType": "YulVariableDeclaration",
"src": "9670:51:1",
"value": {
"arguments": [
{
"name": "src",
"nativeSrc": "9717:3:1",
"nodeType": "YulIdentifier",
"src": "9717:3:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "9684:32:1",
"nodeType": "YulIdentifier",
"src": "9684:32:1"
},
"nativeSrc": "9684:37:1",
"nodeType": "YulFunctionCall",
"src": "9684:37:1"
},
"variables": [
{
"name": "newLen",
"nativeSrc": "9674:6:1",
"nodeType": "YulTypedName",
"src": "9674:6:1",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "9806:22:1",
"nodeType": "YulBlock",
"src": "9806:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nativeSrc": "9808:16:1",
"nodeType": "YulIdentifier",
"src": "9808:16:1"
},
"nativeSrc": "9808:18:1",
"nodeType": "YulFunctionCall",
"src": "9808:18:1"
},
"nativeSrc": "9808:18:1",
"nodeType": "YulExpressionStatement",
"src": "9808:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "newLen",
"nativeSrc": "9778:6:1",
"nodeType": "YulIdentifier",
"src": "9778:6:1"
},
{
"kind": "number",
"nativeSrc": "9786:18:1",
"nodeType": "YulLiteral",
"src": "9786:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "9775:2:1",
"nodeType": "YulIdentifier",
"src": "9775:2:1"
},
"nativeSrc": "9775:30:1",
"nodeType": "YulFunctionCall",
"src": "9775:30:1"
},
"nativeSrc": "9772:56:1",
"nodeType": "YulIf",
"src": "9772:56:1"
},
{
"nativeSrc": "9838:52:1",
"nodeType": "YulVariableDeclaration",
"src": "9838:52:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "slot",
"nativeSrc": "9884:4:1",
"nodeType": "YulIdentifier",
"src": "9884:4:1"
}
],
"functionName": {
"name": "sload",
"nativeSrc": "9878:5:1",
"nodeType": "YulIdentifier",
"src": "9878:5:1"
},
"nativeSrc": "9878:11:1",
"nodeType": "YulFunctionCall",
"src": "9878:11:1"
}
],
"functionName": {
"name": "extract_byte_array_length",
"nativeSrc": "9852:25:1",
"nodeType": "YulIdentifier",
"src": "9852:25:1"
},
"nativeSrc": "9852:38:1",
"nodeType": "YulFunctionCall",
"src": "9852:38:1"
},
"variables": [
{
"name": "oldLen",
"nativeSrc": "9842:6:1",
"nodeType": "YulTypedName",
"src": "9842:6:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "9983:4:1",
"nodeType": "YulIdentifier",
"src": "9983:4:1"
},
{
"name": "oldLen",
"nativeSrc": "9989:6:1",
"nodeType": "YulIdentifier",
"src": "9989:6:1"
},
{
"name": "newLen",
"nativeSrc": "9997:6:1",
"nodeType": "YulIdentifier",
"src": "9997:6:1"
}
],
"functionName": {
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nativeSrc": "9937:45:1",
"nodeType": "YulIdentifier",
"src": "9937:45:1"
},
"nativeSrc": "9937:67:1",
"nodeType": "YulFunctionCall",
"src": "9937:67:1"
},
"nativeSrc": "9937:67:1",
"nodeType": "YulExpressionStatement",
"src": "9937:67:1"
},
{
"nativeSrc": "10014:18:1",
"nodeType": "YulVariableDeclaration",
"src": "10014:18:1",
"value": {
"kind": "number",
"nativeSrc": "10031:1:1",
"nodeType": "YulLiteral",
"src": "10031:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "srcOffset",
"nativeSrc": "10018:9:1",
"nodeType": "YulTypedName",
"src": "10018:9:1",
"type": ""
}
]
},
{
"nativeSrc": "10042:17:1",
"nodeType": "YulAssignment",
"src": "10042:17:1",
"value": {
"kind": "number",
"nativeSrc": "10055:4:1",
"nodeType": "YulLiteral",
"src": "10055:4:1",
"type": "",
"value": "0x20"
},
"variableNames": [
{
"name": "srcOffset",
"nativeSrc": "10042:9:1",
"nodeType": "YulIdentifier",
"src": "10042:9:1"
}
]
},
{
"cases": [
{
"body": {
"nativeSrc": "10106:611:1",
"nodeType": "YulBlock",
"src": "10106:611:1",
"statements": [
{
"nativeSrc": "10120:37:1",
"nodeType": "YulVariableDeclaration",
"src": "10120:37:1",
"value": {
"arguments": [
{
"name": "newLen",
"nativeSrc": "10139:6:1",
"nodeType": "YulIdentifier",
"src": "10139:6:1"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "10151:4:1",
"nodeType": "YulLiteral",
"src": "10151:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "not",
"nativeSrc": "10147:3:1",
"nodeType": "YulIdentifier",
"src": "10147:3:1"
},
"nativeSrc": "10147:9:1",
"nodeType": "YulFunctionCall",
"src": "10147:9:1"
}
],
"functionName": {
"name": "and",
"nativeSrc": "10135:3:1",
"nodeType": "YulIdentifier",
"src": "10135:3:1"
},
"nativeSrc": "10135:22:1",
"nodeType": "YulFunctionCall",
"src": "10135:22:1"
},
"variables": [
{
"name": "loopEnd",
"nativeSrc": "10124:7:1",
"nodeType": "YulTypedName",
"src": "10124:7:1",
"type": ""
}
]
},
{
"nativeSrc": "10171:51:1",
"nodeType": "YulVariableDeclaration",
"src": "10171:51:1",
"value": {
"arguments": [
{
"name": "slot",
"nativeSrc": "10217:4:1",
"nodeType": "YulIdentifier",
"src": "10217:4:1"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nativeSrc": "10185:31:1",
"nodeType": "YulIdentifier",
"src": "10185:31:1"
},
"nativeSrc": "10185:37:1",
"nodeType": "YulFunctionCall",
"src": "10185:37:1"
},
"variables": [
{
"name": "dstPtr",
"nativeSrc": "10175:6:1",
"nodeType": "YulTypedName",
"src": "10175:6:1",
"type": ""
}
]
},
{
"nativeSrc": "10235:10:1",
"nodeType": "YulVariableDeclaration",
"src": "10235:10:1",
"value": {
"kind": "number",
"nativeSrc": "10244:1:1",
"nodeType": "YulLiteral",
"src": "10244:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nativeSrc": "10239:1:1",
"nodeType": "YulTypedName",
"src": "10239:1:1",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "10303:163:1",
"nodeType": "YulBlock",
"src": "10303:163:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nativeSrc": "10328:6:1",
"nodeType": "YulIdentifier",
"src": "10328:6:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nativeSrc": "10346:3:1",
"nodeType": "YulIdentifier",
"src": "10346:3:1"
},
{
"name": "srcOffset",
"nativeSrc": "10351:9:1",
"nodeType": "YulIdentifier",
"src": "10351:9:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10342:3:1",
"nodeType": "YulIdentifier",
"src": "10342:3:1"
},
"nativeSrc": "10342:19:1",
"nodeType": "YulFunctionCall",
"src": "10342:19:1"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "10336:5:1",
"nodeType": "YulIdentifier",
"src": "10336:5:1"
},
"nativeSrc": "10336:26:1",
"nodeType": "YulFunctionCall",
"src": "10336:26:1"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "10321:6:1",
"nodeType": "YulIdentifier",
"src": "10321:6:1"
},
"nativeSrc": "10321:42:1",
"nodeType": "YulFunctionCall",
"src": "10321:42:1"
},
"nativeSrc": "10321:42:1",
"nodeType": "YulExpressionStatement",
"src": "10321:42:1"
},
{
"nativeSrc": "10380:24:1",
"nodeType": "YulAssignment",
"src": "10380:24:1",
"value": {
"arguments": [
{
"name": "dstPtr",
"nativeSrc": "10394:6:1",
"nodeType": "YulIdentifier",
"src": "10394:6:1"
},
{
"kind": "number",
"nativeSrc": "10402:1:1",
"nodeType": "YulLiteral",
"src": "10402:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10390:3:1",
"nodeType": "YulIdentifier",
"src": "10390:3:1"
},
"nativeSrc": "10390:14:1",
"nodeType": "YulFunctionCall",
"src": "10390:14:1"
},
"variableNames": [
{
"name": "dstPtr",
"nativeSrc": "10380:6:1",
"nodeType": "YulIdentifier",
"src": "10380:6:1"
}
]
},
{
"nativeSrc": "10421:31:1",
"nodeType": "YulAssignment",
"src": "10421:31:1",
"value": {
"arguments": [
{
"name": "srcOffset",
"nativeSrc": "10438:9:1",
"nodeType": "YulIdentifier",
"src": "10438:9:1"
},
{
"kind": "number",
"nativeSrc": "10449:2:1",
"nodeType": "YulLiteral",
"src": "10449:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10434:3:1",
"nodeType": "YulIdentifier",
"src": "10434:3:1"
},
"nativeSrc": "10434:18:1",
"nodeType": "YulFunctionCall",
"src": "10434:18:1"
},
"variableNames": [
{
"name": "srcOffset",
"nativeSrc": "10421:9:1",
"nodeType": "YulIdentifier",
"src": "10421:9:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nativeSrc": "10269:1:1",
"nodeType": "YulIdentifier",
"src": "10269:1:1"
},
{
"name": "loopEnd",
"nativeSrc": "10272:7:1",
"nodeType": "YulIdentifier",
"src": "10272:7:1"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "10266:2:1",
"nodeType": "YulIdentifier",
"src": "10266:2:1"
},
"nativeSrc": "10266:14:1",
"nodeType": "YulFunctionCall",
"src": "10266:14:1"
},
"nativeSrc": "10258:208:1",
"nodeType": "YulForLoop",
"post": {
"nativeSrc": "10281:21:1",
"nodeType": "YulBlock",
"src": "10281:21:1",
"statements": [
{
"nativeSrc": "10283:17:1",
"nodeType": "YulAssignment",
"src": "10283:17:1",
"value": {
"arguments": [
{
"name": "i",
"nativeSrc": "10292:1:1",
"nodeType": "YulIdentifier",
"src": "10292:1:1"
},
{
"kind": "number",
"nativeSrc": "10295:4:1",
"nodeType": "YulLiteral",
"src": "10295:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10288:3:1",
"nodeType": "YulIdentifier",
"src": "10288:3:1"
},
"nativeSrc": "10288:12:1",
"nodeType": "YulFunctionCall",
"src": "10288:12:1"
},
"variableNames": [
{
"name": "i",
"nativeSrc": "10283:1:1",
"nodeType": "YulIdentifier",
"src": "10283:1:1"
}
]
}
]
},
"pre": {
"nativeSrc": "10262:3:1",
"nodeType": "YulBlock",
"src": "10262:3:1",
"statements": []
},
"src": "10258:208:1"
},
{
"body": {
"nativeSrc": "10502:156:1",
"nodeType": "YulBlock",
"src": "10502:156:1",
"statements": [
{
"nativeSrc": "10520:43:1",
"nodeType": "YulVariableDeclaration",
"src": "10520:43:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nativeSrc": "10547:3:1",
"nodeType": "YulIdentifier",
"src": "10547:3:1"
},
{
"name": "srcOffset",
"nativeSrc": "10552:9:1",
"nodeType": "YulIdentifier",
"src": "10552:9:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10543:3:1",
"nodeType": "YulIdentifier",
"src": "10543:3:1"
},
"nativeSrc": "10543:19:1",
"nodeType": "YulFunctionCall",
"src": "10543:19:1"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "10537:5:1",
"nodeType": "YulIdentifier",
"src": "10537:5:1"
},
"nativeSrc": "10537:26:1",
"nodeType": "YulFunctionCall",
"src": "10537:26:1"
},
"variables": [
{
"name": "lastValue",
"nativeSrc": "10524:9:1",
"nodeType": "YulTypedName",
"src": "10524:9:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nativeSrc": "10587:6:1",
"nodeType": "YulIdentifier",
"src": "10587:6:1"
},
{
"arguments": [
{
"name": "lastValue",
"nativeSrc": "10614:9:1",
"nodeType": "YulIdentifier",
"src": "10614:9:1"
},
{
"arguments": [
{
"name": "newLen",
"nativeSrc": "10629:6:1",
"nodeType": "YulIdentifier",
"src": "10629:6:1"
},
{
"kind": "number",
"nativeSrc": "10637:4:1",
"nodeType": "YulLiteral",
"src": "10637:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "and",
"nativeSrc": "10625:3:1",
"nodeType": "YulIdentifier",
"src": "10625:3:1"
},
"nativeSrc": "10625:17:1",
"nodeType": "YulFunctionCall",
"src": "10625:17:1"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nativeSrc": "10595:18:1",
"nodeType": "YulIdentifier",
"src": "10595:18:1"
},
"nativeSrc": "10595:48:1",
"nodeType": "YulFunctionCall",
"src": "10595:48:1"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "10580:6:1",
"nodeType": "YulIdentifier",
"src": "10580:6:1"
},
"nativeSrc": "10580:64:1",
"nodeType": "YulFunctionCall",
"src": "10580:64:1"
},
"nativeSrc": "10580:64:1",
"nodeType": "YulExpressionStatement",
"src": "10580:64:1"
}
]
},
"condition": {
"arguments": [
{
"name": "loopEnd",
"nativeSrc": "10485:7:1",
"nodeType": "YulIdentifier",
"src": "10485:7:1"
},
{
"name": "newLen",
"nativeSrc": "10494:6:1",
"nodeType": "YulIdentifier",
"src": "10494:6:1"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "10482:2:1",
"nodeType": "YulIdentifier",
"src": "10482:2:1"
},
"nativeSrc": "10482:19:1",
"nodeType": "YulFunctionCall",
"src": "10482:19:1"
},
"nativeSrc": "10479:179:1",
"nodeType": "YulIf",
"src": "10479:179:1"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "10678:4:1",
"nodeType": "YulIdentifier",
"src": "10678:4:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "newLen",
"nativeSrc": "10692:6:1",
"nodeType": "YulIdentifier",
"src": "10692:6:1"
},
{
"kind": "number",
"nativeSrc": "10700:1:1",
"nodeType": "YulLiteral",
"src": "10700:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "10688:3:1",
"nodeType": "YulIdentifier",
"src": "10688:3:1"
},
"nativeSrc": "10688:14:1",
"nodeType": "YulFunctionCall",
"src": "10688:14:1"
},
{
"kind": "number",
"nativeSrc": "10704:1:1",
"nodeType": "YulLiteral",
"src": "10704:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10684:3:1",
"nodeType": "YulIdentifier",
"src": "10684:3:1"
},
"nativeSrc": "10684:22:1",
"nodeType": "YulFunctionCall",
"src": "10684:22:1"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "10671:6:1",
"nodeType": "YulIdentifier",
"src": "10671:6:1"
},
"nativeSrc": "10671:36:1",
"nodeType": "YulFunctionCall",
"src": "10671:36:1"
},
"nativeSrc": "10671:36:1",
"nodeType": "YulExpressionStatement",
"src": "10671:36:1"
}
]
},
"nativeSrc": "10099:618:1",
"nodeType": "YulCase",
"src": "10099:618:1",
"value": {
"kind": "number",
"nativeSrc": "10104:1:1",
"nodeType": "YulLiteral",
"src": "10104:1:1",
"type": "",
"value": "1"
}
},
{
"body": {
"nativeSrc": "10734:222:1",
"nodeType": "YulBlock",
"src": "10734:222:1",
"statements": [
{
"nativeSrc": "10748:14:1",
"nodeType": "YulVariableDeclaration",
"src": "10748:14:1",
"value": {
"kind": "number",
"nativeSrc": "10761:1:1",
"nodeType": "YulLiteral",
"src": "10761:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "value",
"nativeSrc": "10752:5:1",
"nodeType": "YulTypedName",
"src": "10752:5:1",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "10785:67:1",
"nodeType": "YulBlock",
"src": "10785:67:1",
"statements": [
{
"nativeSrc": "10803:35:1",
"nodeType": "YulAssignment",
"src": "10803:35:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nativeSrc": "10822:3:1",
"nodeType": "YulIdentifier",
"src": "10822:3:1"
},
{
"name": "srcOffset",
"nativeSrc": "10827:9:1",
"nodeType": "YulIdentifier",
"src": "10827:9:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10818:3:1",
"nodeType": "YulIdentifier",
"src": "10818:3:1"
},
"nativeSrc": "10818:19:1",
"nodeType": "YulFunctionCall",
"src": "10818:19:1"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "10812:5:1",
"nodeType": "YulIdentifier",
"src": "10812:5:1"
},
"nativeSrc": "10812:26:1",
"nodeType": "YulFunctionCall",
"src": "10812:26:1"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "10803:5:1",
"nodeType": "YulIdentifier",
"src": "10803:5:1"
}
]
}
]
},
"condition": {
"name": "newLen",
"nativeSrc": "10778:6:1",
"nodeType": "YulIdentifier",
"src": "10778:6:1"
},
"nativeSrc": "10775:77:1",
"nodeType": "YulIf",
"src": "10775:77:1"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "10872:4:1",
"nodeType": "YulIdentifier",
"src": "10872:4:1"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "10931:5:1",
"nodeType": "YulIdentifier",
"src": "10931:5:1"
},
{
"name": "newLen",
"nativeSrc": "10938:6:1",
"nodeType": "YulIdentifier",
"src": "10938:6:1"
}
],
"functionName": {
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nativeSrc": "10878:52:1",
"nodeType": "YulIdentifier",
"src": "10878:52:1"
},
"nativeSrc": "10878:67:1",
"nodeType": "YulFunctionCall",
"src": "10878:67:1"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "10865:6:1",
"nodeType": "YulIdentifier",
"src": "10865:6:1"
},
"nativeSrc": "10865:81:1",
"nodeType": "YulFunctionCall",
"src": "10865:81:1"
},
"nativeSrc": "10865:81:1",
"nodeType": "YulExpressionStatement",
"src": "10865:81:1"
}
]
},
"nativeSrc": "10726:230:1",
"nodeType": "YulCase",
"src": "10726:230:1",
"value": "default"
}
],
"expression": {
"arguments": [
{
"name": "newLen",
"nativeSrc": "10079:6:1",
"nodeType": "YulIdentifier",
"src": "10079:6:1"
},
{
"kind": "number",
"nativeSrc": "10087:2:1",
"nodeType": "YulLiteral",
"src": "10087:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "10076:2:1",
"nodeType": "YulIdentifier",
"src": "10076:2:1"
},
"nativeSrc": "10076:14:1",
"nodeType": "YulFunctionCall",
"src": "10076:14:1"
},
"nativeSrc": "10069:887:1",
"nodeType": "YulSwitch",
"src": "10069:887:1"
}
]
},
"name": "copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage",
"nativeSrc": "9567:1395:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nativeSrc": "9648:4:1",
"nodeType": "YulTypedName",
"src": "9648:4:1",
"type": ""
},
{
"name": "src",
"nativeSrc": "9654:3:1",
"nodeType": "YulTypedName",
"src": "9654:3:1",
"type": ""
}
],
"src": "9567:1395:1"
},
{
"body": {
"nativeSrc": "11082:34:1",
"nodeType": "YulBlock",
"src": "11082:34:1",
"statements": [
{
"nativeSrc": "11092:18:1",
"nodeType": "YulAssignment",
"src": "11092:18:1",
"value": {
"name": "pos",
"nativeSrc": "11107:3:1",
"nodeType": "YulIdentifier",
"src": "11107:3:1"
},
"variableNames": [
{
"name": "updated_pos",
"nativeSrc": "11092:11:1",
"nodeType": "YulIdentifier",
"src": "11092:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nativeSrc": "10968:148:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "11054:3:1",
"nodeType": "YulTypedName",
"src": "11054:3:1",
"type": ""
},
{
"name": "length",
"nativeSrc": "11059:6:1",
"nodeType": "YulTypedName",
"src": "11059:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nativeSrc": "11070:11:1",
"nodeType": "YulTypedName",
"src": "11070:11:1",
"type": ""
}
],
"src": "10968:148:1"
},
{
"body": {
"nativeSrc": "11232:280:1",
"nodeType": "YulBlock",
"src": "11232:280:1",
"statements": [
{
"nativeSrc": "11242:53:1",
"nodeType": "YulVariableDeclaration",
"src": "11242:53:1",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "11289:5:1",
"nodeType": "YulIdentifier",
"src": "11289:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "11256:32:1",
"nodeType": "YulIdentifier",
"src": "11256:32:1"
},
"nativeSrc": "11256:39:1",
"nodeType": "YulFunctionCall",
"src": "11256:39:1"
},
"variables": [
{
"name": "length",
"nativeSrc": "11246:6:1",
"nodeType": "YulTypedName",
"src": "11246:6:1",
"type": ""
}
]
},
{
"nativeSrc": "11304:96:1",
"nodeType": "YulAssignment",
"src": "11304:96:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "11388:3:1",
"nodeType": "YulIdentifier",
"src": "11388:3:1"
},
{
"name": "length",
"nativeSrc": "11393:6:1",
"nodeType": "YulIdentifier",
"src": "11393:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nativeSrc": "11311:76:1",
"nodeType": "YulIdentifier",
"src": "11311:76:1"
},
"nativeSrc": "11311:89:1",
"nodeType": "YulFunctionCall",
"src": "11311:89:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "11304:3:1",
"nodeType": "YulIdentifier",
"src": "11304:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "11448:5:1",
"nodeType": "YulIdentifier",
"src": "11448:5:1"
},
{
"kind": "number",
"nativeSrc": "11455:4:1",
"nodeType": "YulLiteral",
"src": "11455:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "11444:3:1",
"nodeType": "YulIdentifier",
"src": "11444:3:1"
},
"nativeSrc": "11444:16:1",
"nodeType": "YulFunctionCall",
"src": "11444:16:1"
},
{
"name": "pos",
"nativeSrc": "11462:3:1",
"nodeType": "YulIdentifier",
"src": "11462:3:1"
},
{
"name": "length",
"nativeSrc": "11467:6:1",
"nodeType": "YulIdentifier",
"src": "11467:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nativeSrc": "11409:34:1",
"nodeType": "YulIdentifier",
"src": "11409:34:1"
},
"nativeSrc": "11409:65:1",
"nodeType": "YulFunctionCall",
"src": "11409:65:1"
},
"nativeSrc": "11409:65:1",
"nodeType": "YulExpressionStatement",
"src": "11409:65:1"
},
{
"nativeSrc": "11483:23:1",
"nodeType": "YulAssignment",
"src": "11483:23:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "11494:3:1",
"nodeType": "YulIdentifier",
"src": "11494:3:1"
},
{
"name": "length",
"nativeSrc": "11499:6:1",
"nodeType": "YulIdentifier",
"src": "11499:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "11490:3:1",
"nodeType": "YulIdentifier",
"src": "11490:3:1"
},
"nativeSrc": "11490:16:1",
"nodeType": "YulFunctionCall",
"src": "11490:16:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "11483:3:1",
"nodeType": "YulIdentifier",
"src": "11483:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nativeSrc": "11122:390:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "11213:5:1",
"nodeType": "YulTypedName",
"src": "11213:5:1",
"type": ""
},
{
"name": "pos",
"nativeSrc": "11220:3:1",
"nodeType": "YulTypedName",
"src": "11220:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "11228:3:1",
"nodeType": "YulTypedName",
"src": "11228:3:1",
"type": ""
}
],
"src": "11122:390:1"
},
{
"body": {
"nativeSrc": "11654:139:1",
"nodeType": "YulBlock",
"src": "11654:139:1",
"statements": [
{
"nativeSrc": "11665:102:1",
"nodeType": "YulAssignment",
"src": "11665:102:1",
"value": {
"arguments": [
{
"name": "value0",
"nativeSrc": "11754:6:1",
"nodeType": "YulIdentifier",
"src": "11754:6:1"
},
{
"name": "pos",
"nativeSrc": "11763:3:1",
"nodeType": "YulIdentifier",
"src": "11763:3:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nativeSrc": "11672:81:1",
"nodeType": "YulIdentifier",
"src": "11672:81:1"
},
"nativeSrc": "11672:95:1",
"nodeType": "YulFunctionCall",
"src": "11672:95:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "11665:3:1",
"nodeType": "YulIdentifier",
"src": "11665:3:1"
}
]
},
{
"nativeSrc": "11777:10:1",
"nodeType": "YulAssignment",
"src": "11777:10:1",
"value": {
"name": "pos",
"nativeSrc": "11784:3:1",
"nodeType": "YulIdentifier",
"src": "11784:3:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "11777:3:1",
"nodeType": "YulIdentifier",
"src": "11777:3:1"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nativeSrc": "11518:275:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "11633:3:1",
"nodeType": "YulTypedName",
"src": "11633:3:1",
"type": ""
},
{
"name": "value0",
"nativeSrc": "11639:6:1",
"nodeType": "YulTypedName",
"src": "11639:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "11650:3:1",
"nodeType": "YulTypedName",
"src": "11650:3:1",
"type": ""
}
],
"src": "11518:275: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 function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function array_allocation_size_t_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function copy_calldata_to_memory_with_cleanup(src, dst, length) {\n calldatacopy(dst, src, length)\n mstore(add(dst, length), 0)\n }\n\n function abi_decode_available_length_t_string_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_string_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_calldata_to_memory_with_cleanup(src, dst, length)\n }\n\n // string\n function abi_decode_t_string_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_string_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_tuple_t_string_memory_ptrt_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_string_memory_ptr(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function copy_memory_to_memory_with_cleanup(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n mstore(add(dst, length), 0)\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory_with_cleanup(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_uint256_t_string_memory_ptr__to_t_uint256_t_string_memory_ptr__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n mstore(add(headStart, 32), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value1, tail)\n\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function array_dataslot_t_string_storage(ptr) -> data {\n data := ptr\n\n mstore(0, ptr)\n data := keccak256(0, 0x20)\n\n }\n\n function divide_by_32_ceil(value) -> result {\n result := div(add(value, 31), 32)\n }\n\n function shift_left_dynamic(bits, value) -> newValue {\n newValue :=\n\n shl(bits, value)\n\n }\n\n function update_byte_slice_dynamic32(value, shiftBytes, toInsert) -> result {\n let shiftBits := mul(shiftBytes, 8)\n let mask := shift_left_dynamic(shiftBits, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n toInsert := shift_left_dynamic(shiftBits, toInsert)\n value := and(value, not(mask))\n result := or(value, and(toInsert, mask))\n }\n\n function identity(value) -> ret {\n ret := value\n }\n\n function convert_t_uint256_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint256(identity(cleanup_t_uint256(value)))\n }\n\n function prepare_store_t_uint256(value) -> ret {\n ret := value\n }\n\n function update_storage_value_t_uint256_to_t_uint256(slot, offset, value_0) {\n let convertedValue_0 := convert_t_uint256_to_t_uint256(value_0)\n sstore(slot, update_byte_slice_dynamic32(sload(slot), offset, prepare_store_t_uint256(convertedValue_0)))\n }\n\n function zero_value_for_split_t_uint256() -> ret {\n ret := 0\n }\n\n function storage_set_to_zero_t_uint256(slot, offset) {\n let zero_0 := zero_value_for_split_t_uint256()\n update_storage_value_t_uint256_to_t_uint256(slot, offset, zero_0)\n }\n\n function clear_storage_range_t_bytes1(start, end) {\n for {} lt(start, end) { start := add(start, 1) }\n {\n storage_set_to_zero_t_uint256(start, 0)\n }\n }\n\n function clean_up_bytearray_end_slots_t_string_storage(array, len, startIndex) {\n\n if gt(len, 31) {\n let dataArea := array_dataslot_t_string_storage(array)\n let deleteStart := add(dataArea, divide_by_32_ceil(startIndex))\n // If we are clearing array to be short byte array, we want to clear only data starting from array data area.\n if lt(startIndex, 32) { deleteStart := dataArea }\n clear_storage_range_t_bytes1(deleteStart, add(dataArea, divide_by_32_ceil(len)))\n }\n\n }\n\n function shift_right_unsigned_dynamic(bits, value) -> newValue {\n newValue :=\n\n shr(bits, value)\n\n }\n\n function mask_bytes_dynamic(data, bytes) -> result {\n let mask := not(shift_right_unsigned_dynamic(mul(8, bytes), not(0)))\n result := and(data, mask)\n }\n function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used {\n // we want to save only elements that are part of the array after resizing\n // others should be set to zero\n data := mask_bytes_dynamic(data, len)\n used := or(data, mul(2, len))\n }\n function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src) {\n\n let newLen := array_length_t_string_memory_ptr(src)\n // Make sure array length is sane\n if gt(newLen, 0xffffffffffffffff) { panic_error_0x41() }\n\n let oldLen := extract_byte_array_length(sload(slot))\n\n // potentially truncate data\n clean_up_bytearray_end_slots_t_string_storage(slot, oldLen, newLen)\n\n let srcOffset := 0\n\n srcOffset := 0x20\n\n switch gt(newLen, 31)\n case 1 {\n let loopEnd := and(newLen, not(0x1f))\n\n let dstPtr := array_dataslot_t_string_storage(slot)\n let i := 0\n for { } lt(i, loopEnd) { i := add(i, 0x20) } {\n sstore(dstPtr, mload(add(src, srcOffset)))\n dstPtr := add(dstPtr, 1)\n srcOffset := add(srcOffset, 32)\n }\n if lt(loopEnd, newLen) {\n let lastValue := mload(add(src, srcOffset))\n sstore(dstPtr, mask_bytes_dynamic(lastValue, and(newLen, 0x1f)))\n }\n sstore(slot, add(mul(newLen, 2), 1))\n }\n default {\n let value := 0\n if newLen {\n value := mload(add(src, srcOffset))\n }\n sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\n }\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length) -> updated_pos {\n updated_pos := pos\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length)\n copy_memory_to_memory_with_cleanup(add(value, 0x20), pos, length)\n end := add(pos, length)\n }\n\n function abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos , value0) -> end {\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value0, pos)\n\n end := pos\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561000f575f80fd5b5060043610610055575f3560e01c80632e64cec1146100595780636057361d146100775780636f760f41146100935780638bab8dd5146100af5780639e7a13ad146100df575b5f80fd5b610061610110565b60405161006e919061029f565b60405180910390f35b610091600480360381019061008c91906102f3565b610118565b005b6100ad60048036038101906100a8919061045a565b610121565b005b6100c960048036038101906100c491906104b4565b6101a5565b6040516100d6919061029f565b60405180910390f35b6100f960048036038101906100f491906102f3565b6101d2565b604051610107929190610575565b60405180910390f35b5f8054905090565b805f8190555050565b6001604051806040016040528083815260200184815250908060018154018082558091505060019003905f5260205f2090600202015f909190919091505f820151815f0155602082015181600101908161017b919061079d565b5050508060028360405161018f91906108a6565b9081526020016040518091039020819055505050565b6002818051602081018201805184825260208301602085012081835280955050505050505f915090505481565b600181815481106101e1575f80fd5b905f5260205f2090600202015f91509050805f015490806001018054610206906105d0565b80601f0160208091040260200160405190810160405280929190818152602001828054610232906105d0565b801561027d5780601f106102545761010080835404028352916020019161027d565b820191905f5260205f20905b81548152906001019060200180831161026057829003601f168201915b5050505050905082565b5f819050919050565b61029981610287565b82525050565b5f6020820190506102b25f830184610290565b92915050565b5f604051905090565b5f80fd5b5f80fd5b6102d281610287565b81146102dc575f80fd5b50565b5f813590506102ed816102c9565b92915050565b5f60208284031215610308576103076102c1565b5b5f610315848285016102df565b91505092915050565b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61036c82610326565b810181811067ffffffffffffffff8211171561038b5761038a610336565b5b80604052505050565b5f61039d6102b8565b90506103a98282610363565b919050565b5f67ffffffffffffffff8211156103c8576103c7610336565b5b6103d182610326565b9050602081019050919050565b828183375f83830152505050565b5f6103fe6103f9846103ae565b610394565b90508281526020810184848401111561041a57610419610322565b5b6104258482856103de565b509392505050565b5f82601f8301126104415761044061031e565b5b81356104518482602086016103ec565b91505092915050565b5f80604083850312156104705761046f6102c1565b5b5f83013567ffffffffffffffff81111561048d5761048c6102c5565b5b6104998582860161042d565b92505060206104aa858286016102df565b9150509250929050565b5f602082840312156104c9576104c86102c1565b5b5f82013567ffffffffffffffff8111156104e6576104e56102c5565b5b6104f28482850161042d565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610532578082015181840152602081019050610517565b5f8484015250505050565b5f610547826104fb565b6105518185610505565b9350610561818560208601610515565b61056a81610326565b840191505092915050565b5f6040820190506105885f830185610290565b818103602083015261059a818461053d565b90509392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806105e757607f821691505b6020821081036105fa576105f96105a3565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261065c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610621565b6106668683610621565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6106a161069c61069784610287565b61067e565b610287565b9050919050565b5f819050919050565b6106ba83610687565b6106ce6106c6826106a8565b84845461062d565b825550505050565b5f90565b6106e26106d6565b6106ed8184846106b1565b505050565b5b81811015610710576107055f826106da565b6001810190506106f3565b5050565b601f8211156107555761072681610600565b61072f84610612565b8101602085101561073e578190505b61075261074a85610612565b8301826106f2565b50505b505050565b5f82821c905092915050565b5f6107755f198460080261075a565b1980831691505092915050565b5f61078d8383610766565b9150826002028217905092915050565b6107a6826104fb565b67ffffffffffffffff8111156107bf576107be610336565b5b6107c982546105d0565b6107d4828285610714565b5f60209050601f831160018114610805575f84156107f3578287015190505b6107fd8582610782565b865550610864565b601f19841661081386610600565b5f5b8281101561083a57848901518255600182019150602085019450602081019050610815565b868310156108575784890151610853601f891682610766565b8355505b6001600288020188555050505b505050505050565b5f81905092915050565b5f610880826104fb565b61088a818561086c565b935061089a818560208601610515565b80840191505092915050565b5f6108b18284610876565b91508190509291505056fea26469706673582212202ca85e69a0270391c3932893581327baecc9b5ea3ac89ecb57ca239aabcf0d3664736f6c63430008180033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x55 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2E64CEC1 EQ PUSH2 0x59 JUMPI DUP1 PUSH4 0x6057361D EQ PUSH2 0x77 JUMPI DUP1 PUSH4 0x6F760F41 EQ PUSH2 0x93 JUMPI DUP1 PUSH4 0x8BAB8DD5 EQ PUSH2 0xAF JUMPI DUP1 PUSH4 0x9E7A13AD EQ PUSH2 0xDF JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x61 PUSH2 0x110 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x6E SWAP2 SWAP1 PUSH2 0x29F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x91 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x8C SWAP2 SWAP1 PUSH2 0x2F3 JUMP JUMPDEST PUSH2 0x118 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xAD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xA8 SWAP2 SWAP1 PUSH2 0x45A JUMP JUMPDEST PUSH2 0x121 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xC9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xC4 SWAP2 SWAP1 PUSH2 0x4B4 JUMP JUMPDEST PUSH2 0x1A5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD6 SWAP2 SWAP1 PUSH2 0x29F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xF9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF4 SWAP2 SWAP1 PUSH2 0x2F3 JUMP JUMPDEST PUSH2 0x1D2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x107 SWAP3 SWAP2 SWAP1 PUSH2 0x575 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH0 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE POP SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH0 DUP3 ADD MLOAD DUP2 PUSH0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP2 PUSH2 0x17B SWAP2 SWAP1 PUSH2 0x79D JUMP JUMPDEST POP POP POP DUP1 PUSH1 0x2 DUP4 PUSH1 0x40 MLOAD PUSH2 0x18F SWAP2 SWAP1 PUSH2 0x8A6 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x2 DUP2 DUP1 MLOAD PUSH1 0x20 DUP2 ADD DUP3 ADD DUP1 MLOAD DUP5 DUP3 MSTORE PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP6 ADD KECCAK256 DUP2 DUP4 MSTORE DUP1 SWAP6 POP POP POP POP POP POP PUSH0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x1E1 JUMPI PUSH0 DUP1 REVERT JUMPDEST SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH0 SWAP2 POP SWAP1 POP DUP1 PUSH0 ADD SLOAD SWAP1 DUP1 PUSH1 0x1 ADD DUP1 SLOAD PUSH2 0x206 SWAP1 PUSH2 0x5D0 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x232 SWAP1 PUSH2 0x5D0 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x27D JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x254 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x27D JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x260 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP DUP3 JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x299 DUP2 PUSH2 0x287 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2B2 PUSH0 DUP4 ADD DUP5 PUSH2 0x290 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x2D2 DUP2 PUSH2 0x287 JUMP JUMPDEST DUP2 EQ PUSH2 0x2DC JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2ED DUP2 PUSH2 0x2C9 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x308 JUMPI PUSH2 0x307 PUSH2 0x2C1 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x315 DUP5 DUP3 DUP6 ADD PUSH2 0x2DF JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH2 0x36C DUP3 PUSH2 0x326 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x38B JUMPI PUSH2 0x38A PUSH2 0x336 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x39D PUSH2 0x2B8 JUMP JUMPDEST SWAP1 POP PUSH2 0x3A9 DUP3 DUP3 PUSH2 0x363 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x3C8 JUMPI PUSH2 0x3C7 PUSH2 0x336 JUMP JUMPDEST JUMPDEST PUSH2 0x3D1 DUP3 PUSH2 0x326 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x3FE PUSH2 0x3F9 DUP5 PUSH2 0x3AE JUMP JUMPDEST PUSH2 0x394 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x41A JUMPI PUSH2 0x419 PUSH2 0x322 JUMP JUMPDEST JUMPDEST PUSH2 0x425 DUP5 DUP3 DUP6 PUSH2 0x3DE JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x441 JUMPI PUSH2 0x440 PUSH2 0x31E JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x451 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x3EC JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x470 JUMPI PUSH2 0x46F PUSH2 0x2C1 JUMP JUMPDEST JUMPDEST PUSH0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x48D JUMPI PUSH2 0x48C PUSH2 0x2C5 JUMP JUMPDEST JUMPDEST PUSH2 0x499 DUP6 DUP3 DUP7 ADD PUSH2 0x42D JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x4AA DUP6 DUP3 DUP7 ADD PUSH2 0x2DF JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4C9 JUMPI PUSH2 0x4C8 PUSH2 0x2C1 JUMP JUMPDEST JUMPDEST PUSH0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x4E6 JUMPI PUSH2 0x4E5 PUSH2 0x2C5 JUMP JUMPDEST JUMPDEST PUSH2 0x4F2 DUP5 DUP3 DUP6 ADD PUSH2 0x42D JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x532 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x517 JUMP JUMPDEST PUSH0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x547 DUP3 PUSH2 0x4FB JUMP JUMPDEST PUSH2 0x551 DUP2 DUP6 PUSH2 0x505 JUMP JUMPDEST SWAP4 POP PUSH2 0x561 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x515 JUMP JUMPDEST PUSH2 0x56A DUP2 PUSH2 0x326 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x588 PUSH0 DUP4 ADD DUP6 PUSH2 0x290 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x59A DUP2 DUP5 PUSH2 0x53D JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x5E7 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x5FA JUMPI PUSH2 0x5F9 PUSH2 0x5A3 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP DUP2 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x8 DUP4 MUL PUSH2 0x65C PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH2 0x621 JUMP JUMPDEST PUSH2 0x666 DUP7 DUP4 PUSH2 0x621 JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x6A1 PUSH2 0x69C PUSH2 0x697 DUP5 PUSH2 0x287 JUMP JUMPDEST PUSH2 0x67E JUMP JUMPDEST PUSH2 0x287 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x6BA DUP4 PUSH2 0x687 JUMP JUMPDEST PUSH2 0x6CE PUSH2 0x6C6 DUP3 PUSH2 0x6A8 JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH2 0x62D JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH0 SWAP1 JUMP JUMPDEST PUSH2 0x6E2 PUSH2 0x6D6 JUMP JUMPDEST PUSH2 0x6ED DUP2 DUP5 DUP5 PUSH2 0x6B1 JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x710 JUMPI PUSH2 0x705 PUSH0 DUP3 PUSH2 0x6DA JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x6F3 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x755 JUMPI PUSH2 0x726 DUP2 PUSH2 0x600 JUMP JUMPDEST PUSH2 0x72F DUP5 PUSH2 0x612 JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x73E JUMPI DUP2 SWAP1 POP JUMPDEST PUSH2 0x752 PUSH2 0x74A DUP6 PUSH2 0x612 JUMP JUMPDEST DUP4 ADD DUP3 PUSH2 0x6F2 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x775 PUSH0 NOT DUP5 PUSH1 0x8 MUL PUSH2 0x75A JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x78D DUP4 DUP4 PUSH2 0x766 JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x7A6 DUP3 PUSH2 0x4FB JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x7BF JUMPI PUSH2 0x7BE PUSH2 0x336 JUMP JUMPDEST JUMPDEST PUSH2 0x7C9 DUP3 SLOAD PUSH2 0x5D0 JUMP JUMPDEST PUSH2 0x7D4 DUP3 DUP3 DUP6 PUSH2 0x714 JUMP JUMPDEST PUSH0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH2 0x805 JUMPI PUSH0 DUP5 ISZERO PUSH2 0x7F3 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH2 0x7FD DUP6 DUP3 PUSH2 0x782 JUMP JUMPDEST DUP7 SSTORE POP PUSH2 0x864 JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH2 0x813 DUP7 PUSH2 0x600 JUMP JUMPDEST PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x83A JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x815 JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH2 0x857 JUMPI DUP5 DUP10 ADD MLOAD PUSH2 0x853 PUSH1 0x1F DUP10 AND DUP3 PUSH2 0x766 JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x880 DUP3 PUSH2 0x4FB JUMP JUMPDEST PUSH2 0x88A DUP2 DUP6 PUSH2 0x86C JUMP JUMPDEST SWAP4 POP PUSH2 0x89A DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x515 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x8B1 DUP3 DUP5 PUSH2 0x876 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x2C 0xA8 MCOPY PUSH10 0xA0270391C39328935813 0x27 0xBA 0xEC 0xC9 0xB5 0xEA GASPRICE 0xC8 SWAP15 0xCB JUMPI 0xCA 0x23 SWAP11 0xAB 0xCF 0xD CALLDATASIZE PUSH5 0x736F6C6343 STOP ADDMOD XOR STOP CALLER ",
"sourceMap": "138:649:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;505:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;399:96;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;598:187;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;338:54;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;309:22;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;505:87;546:7;571:14;;564:21;;505:87;:::o;399:96::-;473:15;456:14;:32;;;;399:96;:::o;598:187::-;680:6;692:30;;;;;;;;699:15;692:30;;;;716:5;692:30;;;680:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;763:15;733:20;754:5;733:27;;;;;;:::i;:::-;;;;;;;;;;;;;:45;;;;598:187;;:::o;338:54::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;309:22::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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;442:75::-;475:6;508:2;502:9;492:19;;442:75;:::o;523:117::-;632:1;629;622:12;646:117;755:1;752;745: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;1377:117::-;1486:1;1483;1476:12;1500:117;1609:1;1606;1599:12;1623:102;1664:6;1715:2;1711:7;1706:2;1699:5;1695:14;1691:28;1681:38;;1623:102;;;:::o;1731:180::-;1779:77;1776:1;1769:88;1876:4;1873:1;1866:15;1900:4;1897:1;1890:15;1917:281;2000:27;2022:4;2000:27;:::i;:::-;1992:6;1988:40;2130:6;2118:10;2115:22;2094:18;2082:10;2079:34;2076:62;2073:88;;;2141:18;;:::i;:::-;2073:88;2181:10;2177:2;2170:22;1960:238;1917:281;;:::o;2204:129::-;2238:6;2265:20;;:::i;:::-;2255:30;;2294:33;2322:4;2314:6;2294:33;:::i;:::-;2204:129;;;:::o;2339:308::-;2401:4;2491:18;2483:6;2480:30;2477:56;;;2513:18;;:::i;:::-;2477:56;2551:29;2573:6;2551:29;:::i;:::-;2543:37;;2635:4;2629;2625:15;2617:23;;2339:308;;;:::o;2653:146::-;2750:6;2745:3;2740;2727:30;2791:1;2782:6;2777:3;2773:16;2766:27;2653:146;;;:::o;2805:425::-;2883:5;2908:66;2924:49;2966:6;2924:49;:::i;:::-;2908:66;:::i;:::-;2899:75;;2997:6;2990:5;2983:21;3035:4;3028:5;3024:16;3073:3;3064:6;3059:3;3055:16;3052:25;3049:112;;;3080:79;;:::i;:::-;3049:112;3170:54;3217:6;3212:3;3207;3170:54;:::i;:::-;2889:341;2805:425;;;;;:::o;3250:340::-;3306:5;3355:3;3348:4;3340:6;3336:17;3332:27;3322:122;;3363:79;;:::i;:::-;3322:122;3480:6;3467:20;3505:79;3580:3;3572:6;3565:4;3557:6;3553:17;3505:79;:::i;:::-;3496:88;;3312:278;3250:340;;;;:::o;3596:654::-;3674:6;3682;3731:2;3719:9;3710:7;3706:23;3702:32;3699:119;;;3737:79;;:::i;:::-;3699:119;3885:1;3874:9;3870:17;3857:31;3915:18;3907:6;3904:30;3901:117;;;3937:79;;:::i;:::-;3901:117;4042:63;4097:7;4088:6;4077:9;4073:22;4042:63;:::i;:::-;4032:73;;3828:287;4154:2;4180:53;4225:7;4216:6;4205:9;4201:22;4180:53;:::i;:::-;4170:63;;4125:118;3596:654;;;;;:::o;4256:509::-;4325:6;4374:2;4362:9;4353:7;4349:23;4345:32;4342:119;;;4380:79;;:::i;:::-;4342:119;4528:1;4517:9;4513:17;4500:31;4558:18;4550:6;4547:30;4544:117;;;4580:79;;:::i;:::-;4544:117;4685:63;4740:7;4731:6;4720:9;4716:22;4685:63;:::i;:::-;4675:73;;4471:287;4256:509;;;;:::o;4771:99::-;4823:6;4857:5;4851:12;4841:22;;4771:99;;;:::o;4876:169::-;4960:11;4994:6;4989:3;4982:19;5034:4;5029:3;5025:14;5010:29;;4876:169;;;;:::o;5051:246::-;5132:1;5142:113;5156:6;5153:1;5150:13;5142:113;;;5241:1;5236:3;5232:11;5226:18;5222:1;5217:3;5213:11;5206:39;5178:2;5175:1;5171:10;5166:15;;5142:113;;;5289:1;5280:6;5275:3;5271:16;5264:27;5113:184;5051:246;;;:::o;5303:377::-;5391:3;5419:39;5452:5;5419:39;:::i;:::-;5474:71;5538:6;5533:3;5474:71;:::i;:::-;5467:78;;5554:65;5612:6;5607:3;5600:4;5593:5;5589:16;5554:65;:::i;:::-;5644:29;5666:6;5644:29;:::i;:::-;5639:3;5635:39;5628:46;;5395:285;5303:377;;;;:::o;5686:423::-;5827:4;5865:2;5854:9;5850:18;5842:26;;5878:71;5946:1;5935:9;5931:17;5922:6;5878:71;:::i;:::-;5996:9;5990:4;5986:20;5981:2;5970:9;5966:18;5959:48;6024:78;6097:4;6088:6;6024:78;:::i;:::-;6016:86;;5686:423;;;;;:::o;6115:180::-;6163:77;6160:1;6153:88;6260:4;6257:1;6250:15;6284:4;6281:1;6274:15;6301:320;6345:6;6382:1;6376:4;6372:12;6362:22;;6429:1;6423:4;6419:12;6450:18;6440:81;;6506:4;6498:6;6494:17;6484:27;;6440:81;6568:2;6560:6;6557:14;6537:18;6534:38;6531:84;;6587:18;;:::i;:::-;6531:84;6352:269;6301:320;;;:::o;6627:141::-;6676:4;6699:3;6691:11;;6722:3;6719:1;6712:14;6756:4;6753:1;6743:18;6735:26;;6627:141;;;:::o;6774:93::-;6811:6;6858:2;6853;6846:5;6842:14;6838:23;6828:33;;6774:93;;;:::o;6873:107::-;6917:8;6967:5;6961:4;6957:16;6936:37;;6873:107;;;;:::o;6986:393::-;7055:6;7105:1;7093:10;7089:18;7128:97;7158:66;7147:9;7128:97;:::i;:::-;7246:39;7276:8;7265:9;7246:39;:::i;:::-;7234:51;;7318:4;7314:9;7307:5;7303:21;7294:30;;7367:4;7357:8;7353:19;7346:5;7343:30;7333:40;;7062:317;;6986:393;;;;;:::o;7385:60::-;7413:3;7434:5;7427:12;;7385:60;;;:::o;7451:142::-;7501:9;7534:53;7552:34;7561:24;7579:5;7561:24;:::i;:::-;7552:34;:::i;:::-;7534:53;:::i;:::-;7521:66;;7451:142;;;:::o;7599:75::-;7642:3;7663:5;7656:12;;7599:75;;;:::o;7680:269::-;7790:39;7821:7;7790:39;:::i;:::-;7851:91;7900:41;7924:16;7900:41;:::i;:::-;7892:6;7885:4;7879:11;7851:91;:::i;:::-;7845:4;7838:105;7756:193;7680:269;;;:::o;7955:73::-;8000:3;7955:73;:::o;8034:189::-;8111:32;;:::i;:::-;8152:65;8210:6;8202;8196:4;8152:65;:::i;:::-;8087:136;8034:189;;:::o;8229:186::-;8289:120;8306:3;8299:5;8296:14;8289:120;;;8360:39;8397:1;8390:5;8360:39;:::i;:::-;8333:1;8326:5;8322:13;8313:22;;8289:120;;;8229:186;;:::o;8421:543::-;8522:2;8517:3;8514:11;8511:446;;;8556:38;8588:5;8556:38;:::i;:::-;8640:29;8658:10;8640:29;:::i;:::-;8630:8;8626:44;8823:2;8811:10;8808:18;8805:49;;;8844:8;8829:23;;8805:49;8867:80;8923:22;8941:3;8923:22;:::i;:::-;8913:8;8909:37;8896:11;8867:80;:::i;:::-;8526:431;;8511:446;8421:543;;;:::o;8970:117::-;9024:8;9074:5;9068:4;9064:16;9043:37;;8970:117;;;;:::o;9093:169::-;9137:6;9170:51;9218:1;9214:6;9206:5;9203:1;9199:13;9170:51;:::i;:::-;9166:56;9251:4;9245;9241:15;9231:25;;9144:118;9093:169;;;;:::o;9267:295::-;9343:4;9489:29;9514:3;9508:4;9489:29;:::i;:::-;9481:37;;9551:3;9548:1;9544:11;9538:4;9535:21;9527:29;;9267:295;;;;:::o;9567:1395::-;9684:37;9717:3;9684:37;:::i;:::-;9786:18;9778:6;9775:30;9772:56;;;9808:18;;:::i;:::-;9772:56;9852:38;9884:4;9878:11;9852:38;:::i;:::-;9937:67;9997:6;9989;9983:4;9937:67;:::i;:::-;10031:1;10055:4;10042:17;;10087:2;10079:6;10076:14;10104:1;10099:618;;;;10761:1;10778:6;10775:77;;;10827:9;10822:3;10818:19;10812:26;10803:35;;10775:77;10878:67;10938:6;10931:5;10878:67;:::i;:::-;10872:4;10865:81;10734:222;10069:887;;10099:618;10151:4;10147:9;10139:6;10135:22;10185:37;10217:4;10185:37;:::i;:::-;10244:1;10258:208;10272:7;10269:1;10266:14;10258:208;;;10351:9;10346:3;10342:19;10336:26;10328:6;10321:42;10402:1;10394:6;10390:14;10380:24;;10449:2;10438:9;10434:18;10421:31;;10295:4;10292:1;10288:12;10283:17;;10258:208;;;10494:6;10485:7;10482:19;10479:179;;;10552:9;10547:3;10543:19;10537:26;10595:48;10637:4;10629:6;10625:17;10614:9;10595:48;:::i;:::-;10587:6;10580:64;10502:156;10479:179;10704:1;10700;10692:6;10688:14;10684:22;10678:4;10671:36;10106:611;;;10069:887;;9659:1303;;;9567:1395;;:::o;10968:148::-;11070:11;11107:3;11092:18;;10968:148;;;;:::o;11122:390::-;11228:3;11256:39;11289:5;11256:39;:::i;:::-;11311:89;11393:6;11388:3;11311:89;:::i;:::-;11304:96;;11409:65;11467:6;11462:3;11455:4;11448:5;11444:16;11409:65;:::i;:::-;11499:6;11494:3;11490:16;11483:23;;11232:280;11122:390;;;;:::o;11518:275::-;11650:3;11672:95;11763:3;11754:6;11672:95;:::i;:::-;11665:102;;11784:3;11777:10;;11518:275;;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "458000",
"executionCost": "491",
"totalCost": "458491"
},
"external": {
"addPerson(string,uint256)": "infinite",
"nameToFavoriteNumber(string)": "infinite",
"people(uint256)": "infinite",
"retrieve()": "2410",
"store(uint256)": "22514"
}
},
"methodIdentifiers": {
"addPerson(string,uint256)": "6f760f41",
"nameToFavoriteNumber(string)": "8bab8dd5",
"people(uint256)": "9e7a13ad",
"retrieve()": "2e64cec1",
"store(uint256)": "6057361d"
}
},
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "_name",
"type": "string"
},
{
"internalType": "uint256",
"name": "_favoriteNumber",
"type": "uint256"
}
],
"name": "addPerson",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"name": "nameToFavoriteNumber",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "people",
"outputs": [
{
"internalType": "uint256",
"name": "favoriteNumber",
"type": "uint256"
},
{
"internalType": "string",
"name": "name",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "retrieve",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_favoriteNumber",
"type": "uint256"
}
],
"name": "store",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.24+commit.e11b9ed9"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "_name",
"type": "string"
},
{
"internalType": "uint256",
"name": "_favoriteNumber",
"type": "uint256"
}
],
"name": "addPerson",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"name": "nameToFavoriteNumber",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "people",
"outputs": [
{
"internalType": "uint256",
"name": "favoriteNumber",
"type": "uint256"
},
{
"internalType": "string",
"name": "name",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "retrieve",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_favoriteNumber",
"type": "uint256"
}
],
"name": "store",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/SimpleStorage.sol": "SimpleStorage"
},
"evmVersion": "shanghai",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/SimpleStorage.sol": {
"keccak256": "0xf2b6ee6b2a4fc5edcbbc00a8a3120da09204f789423942e6616354f5d8c50f38",
"license": "MIT",
"urls": [
"bzz-raw://189baf8ae9e68423a851cf1e4cd206f54315e55452be5b13bacc986c8106d094",
"dweb:/ipfs/QmPesBwANsVzFkXtczZGc984ucyXARMXbSXmDTyDJiUAHx"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561000f575f80fd5b506101438061001d5f395ff3fe608060405234801561000f575f80fd5b5060043610610034575f3560e01c80632e64cec1146100385780636057361d14610056575b5f80fd5b610040610072565b60405161004d919061009b565b60405180910390f35b610070600480360381019061006b91906100e2565b61007a565b005b5f8054905090565b805f8190555050565b5f819050919050565b61009581610083565b82525050565b5f6020820190506100ae5f83018461008c565b92915050565b5f80fd5b6100c181610083565b81146100cb575f80fd5b50565b5f813590506100dc816100b8565b92915050565b5f602082840312156100f7576100f66100b4565b5b5f610104848285016100ce565b9150509291505056fea2646970667358221220b65c8df632fdcb77488e6a144c951b3e4f55657c0f37cb17ca681698a5e009c664736f6c63430008180033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x143 DUP1 PUSH2 0x1D PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x34 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2E64CEC1 EQ PUSH2 0x38 JUMPI DUP1 PUSH4 0x6057361D EQ PUSH2 0x56 JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x40 PUSH2 0x72 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4D SWAP2 SWAP1 PUSH2 0x9B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x70 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6B SWAP2 SWAP1 PUSH2 0xE2 JUMP JUMPDEST PUSH2 0x7A JUMP JUMPDEST STOP JUMPDEST PUSH0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH0 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x95 DUP2 PUSH2 0x83 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xAE PUSH0 DUP4 ADD DUP5 PUSH2 0x8C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0xC1 DUP2 PUSH2 0x83 JUMP JUMPDEST DUP2 EQ PUSH2 0xCB JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xDC DUP2 PUSH2 0xB8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xF7 JUMPI PUSH2 0xF6 PUSH2 0xB4 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x104 DUP5 DUP3 DUP6 ADD PUSH2 0xCE JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xB6 TLOAD DUP14 0xF6 ORIGIN REVERT 0xCB PUSH24 0x488E6A144C951B3E4F55657C0F37CB17CA681698A5E009C6 PUSH5 0x736F6C6343 STOP ADDMOD XOR STOP CALLER ",
"sourceMap": "228:356:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@retrieve_24": {
"entryPoint": 114,
"id": 24,
"parameterSlots": 0,
"returnSlots": 1
},
"@store_15": {
"entryPoint": 122,
"id": 15,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_t_uint256": {
"entryPoint": 206,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 226,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 140,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 155,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 131,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 180,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 184,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nativeSrc": "0:1374:1",
"nodeType": "YulBlock",
"src": "0:1374:1",
"statements": [
{
"body": {
"nativeSrc": "52:32:1",
"nodeType": "YulBlock",
"src": "52:32:1",
"statements": [
{
"nativeSrc": "62:16:1",
"nodeType": "YulAssignment",
"src": "62:16:1",
"value": {
"name": "value",
"nativeSrc": "73:5:1",
"nodeType": "YulIdentifier",
"src": "73:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "62:7:1",
"nodeType": "YulIdentifier",
"src": "62:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nativeSrc": "7:77:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "34:5:1",
"nodeType": "YulTypedName",
"src": "34:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "44:7:1",
"nodeType": "YulTypedName",
"src": "44:7:1",
"type": ""
}
],
"src": "7:77:1"
},
{
"body": {
"nativeSrc": "155:53:1",
"nodeType": "YulBlock",
"src": "155:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "172:3:1",
"nodeType": "YulIdentifier",
"src": "172:3:1"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "195:5:1",
"nodeType": "YulIdentifier",
"src": "195:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "177:17:1",
"nodeType": "YulIdentifier",
"src": "177:17:1"
},
"nativeSrc": "177:24:1",
"nodeType": "YulFunctionCall",
"src": "177:24:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "165:6:1",
"nodeType": "YulIdentifier",
"src": "165:6:1"
},
"nativeSrc": "165:37:1",
"nodeType": "YulFunctionCall",
"src": "165:37:1"
},
"nativeSrc": "165:37:1",
"nodeType": "YulExpressionStatement",
"src": "165:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "90:118:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "143:5:1",
"nodeType": "YulTypedName",
"src": "143:5:1",
"type": ""
},
{
"name": "pos",
"nativeSrc": "150:3:1",
"nodeType": "YulTypedName",
"src": "150:3:1",
"type": ""
}
],
"src": "90:118:1"
},
{
"body": {
"nativeSrc": "312:124:1",
"nodeType": "YulBlock",
"src": "312:124:1",
"statements": [
{
"nativeSrc": "322:26:1",
"nodeType": "YulAssignment",
"src": "322:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "334:9:1",
"nodeType": "YulIdentifier",
"src": "334:9:1"
},
{
"kind": "number",
"nativeSrc": "345:2:1",
"nodeType": "YulLiteral",
"src": "345:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "330:3:1",
"nodeType": "YulIdentifier",
"src": "330:3:1"
},
"nativeSrc": "330:18:1",
"nodeType": "YulFunctionCall",
"src": "330:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "322:4:1",
"nodeType": "YulIdentifier",
"src": "322:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "402:6:1",
"nodeType": "YulIdentifier",
"src": "402:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "415:9:1",
"nodeType": "YulIdentifier",
"src": "415:9:1"
},
{
"kind": "number",
"nativeSrc": "426:1:1",
"nodeType": "YulLiteral",
"src": "426:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "411:3:1",
"nodeType": "YulIdentifier",
"src": "411:3:1"
},
"nativeSrc": "411:17:1",
"nodeType": "YulFunctionCall",
"src": "411:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "358:43:1",
"nodeType": "YulIdentifier",
"src": "358:43:1"
},
"nativeSrc": "358:71:1",
"nodeType": "YulFunctionCall",
"src": "358:71:1"
},
"nativeSrc": "358:71:1",
"nodeType": "YulExpressionStatement",
"src": "358:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nativeSrc": "214:222:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "284:9:1",
"nodeType": "YulTypedName",
"src": "284:9:1",
"type": ""
},
{
"name": "value0",
"nativeSrc": "296:6:1",
"nodeType": "YulTypedName",
"src": "296:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "307:4:1",
"nodeType": "YulTypedName",
"src": "307:4:1",
"type": ""
}
],
"src": "214:222:1"
},
{
"body": {
"nativeSrc": "482:35:1",
"nodeType": "YulBlock",
"src": "482:35:1",
"statements": [
{
"nativeSrc": "492:19:1",
"nodeType": "YulAssignment",
"src": "492:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nativeSrc": "508:2:1",
"nodeType": "YulLiteral",
"src": "508:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "502:5:1",
"nodeType": "YulIdentifier",
"src": "502:5:1"
},
"nativeSrc": "502:9:1",
"nodeType": "YulFunctionCall",
"src": "502:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nativeSrc": "492:6:1",
"nodeType": "YulIdentifier",
"src": "492:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nativeSrc": "442:75:1",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nativeSrc": "475:6:1",
"nodeType": "YulTypedName",
"src": "475:6:1",
"type": ""
}
],
"src": "442:75:1"
},
{
"body": {
"nativeSrc": "612:28:1",
"nodeType": "YulBlock",
"src": "612:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "629:1:1",
"nodeType": "YulLiteral",
"src": "629:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "632:1:1",
"nodeType": "YulLiteral",
"src": "632:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "622:6:1",
"nodeType": "YulIdentifier",
"src": "622:6:1"
},
"nativeSrc": "622:12:1",
"nodeType": "YulFunctionCall",
"src": "622:12:1"
},
"nativeSrc": "622:12:1",
"nodeType": "YulExpressionStatement",
"src": "622:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "523:117:1",
"nodeType": "YulFunctionDefinition",
"src": "523:117:1"
},
{
"body": {
"nativeSrc": "735:28:1",
"nodeType": "YulBlock",
"src": "735:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "752:1:1",
"nodeType": "YulLiteral",
"src": "752:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "755:1:1",
"nodeType": "YulLiteral",
"src": "755:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "745:6:1",
"nodeType": "YulIdentifier",
"src": "745:6:1"
},
"nativeSrc": "745:12:1",
"nodeType": "YulFunctionCall",
"src": "745:12:1"
},
"nativeSrc": "745:12:1",
"nodeType": "YulExpressionStatement",
"src": "745:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nativeSrc": "646:117:1",
"nodeType": "YulFunctionDefinition",
"src": "646:117:1"
},
{
"body": {
"nativeSrc": "812:79:1",
"nodeType": "YulBlock",
"src": "812:79:1",
"statements": [
{
"body": {
"nativeSrc": "869:16:1",
"nodeType": "YulBlock",
"src": "869:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "878:1:1",
"nodeType": "YulLiteral",
"src": "878:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "881:1:1",
"nodeType": "YulLiteral",
"src": "881:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "871:6:1",
"nodeType": "YulIdentifier",
"src": "871:6:1"
},
"nativeSrc": "871:12:1",
"nodeType": "YulFunctionCall",
"src": "871:12:1"
},
"nativeSrc": "871:12:1",
"nodeType": "YulExpressionStatement",
"src": "871:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "835:5:1",
"nodeType": "YulIdentifier",
"src": "835:5:1"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "860:5:1",
"nodeType": "YulIdentifier",
"src": "860:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "842:17:1",
"nodeType": "YulIdentifier",
"src": "842:17:1"
},
"nativeSrc": "842:24:1",
"nodeType": "YulFunctionCall",
"src": "842:24:1"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "832:2:1",
"nodeType": "YulIdentifier",
"src": "832:2:1"
},
"nativeSrc": "832:35:1",
"nodeType": "YulFunctionCall",
"src": "832:35:1"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "825:6:1",
"nodeType": "YulIdentifier",
"src": "825:6:1"
},
"nativeSrc": "825:43:1",
"nodeType": "YulFunctionCall",
"src": "825:43:1"
},
"nativeSrc": "822:63:1",
"nodeType": "YulIf",
"src": "822:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nativeSrc": "769:122:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "805:5:1",
"nodeType": "YulTypedName",
"src": "805:5:1",
"type": ""
}
],
"src": "769:122:1"
},
{
"body": {
"nativeSrc": "949:87:1",
"nodeType": "YulBlock",
"src": "949:87:1",
"statements": [
{
"nativeSrc": "959:29:1",
"nodeType": "YulAssignment",
"src": "959:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "981:6:1",
"nodeType": "YulIdentifier",
"src": "981:6:1"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "968:12:1",
"nodeType": "YulIdentifier",
"src": "968:12:1"
},
"nativeSrc": "968:20:1",
"nodeType": "YulFunctionCall",
"src": "968:20:1"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "959:5:1",
"nodeType": "YulIdentifier",
"src": "959:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nativeSrc": "1024:5:1",
"nodeType": "YulIdentifier",
"src": "1024:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nativeSrc": "997:26:1",
"nodeType": "YulIdentifier",
"src": "997:26:1"
},
"nativeSrc": "997:33:1",
"nodeType": "YulFunctionCall",
"src": "997:33:1"
},
"nativeSrc": "997:33:1",
"nodeType": "YulExpressionStatement",
"src": "997:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nativeSrc": "897:139:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "927:6:1",
"nodeType": "YulTypedName",
"src": "927:6:1",
"type": ""
},
{
"name": "end",
"nativeSrc": "935:3:1",
"nodeType": "YulTypedName",
"src": "935:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nativeSrc": "943:5:1",
"nodeType": "YulTypedName",
"src": "943:5:1",
"type": ""
}
],
"src": "897:139:1"
},
{
"body": {
"nativeSrc": "1108:263:1",
"nodeType": "YulBlock",
"src": "1108:263:1",
"statements": [
{
"body": {
"nativeSrc": "1154:83:1",
"nodeType": "YulBlock",
"src": "1154:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "1156:77:1",
"nodeType": "YulIdentifier",
"src": "1156:77:1"
},
"nativeSrc": "1156:79:1",
"nodeType": "YulFunctionCall",
"src": "1156:79:1"
},
"nativeSrc": "1156:79:1",
"nodeType": "YulExpressionStatement",
"src": "1156:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "1129:7:1",
"nodeType": "YulIdentifier",
"src": "1129:7:1"
},
{
"name": "headStart",
"nativeSrc": "1138:9:1",
"nodeType": "YulIdentifier",
"src": "1138:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "1125:3:1",
"nodeType": "YulIdentifier",
"src": "1125:3:1"
},
"nativeSrc": "1125:23:1",
"nodeType": "YulFunctionCall",
"src": "1125:23:1"
},
{
"kind": "number",
"nativeSrc": "1150:2:1",
"nodeType": "YulLiteral",
"src": "1150:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "1121:3:1",
"nodeType": "YulIdentifier",
"src": "1121:3:1"
},
"nativeSrc": "1121:32:1",
"nodeType": "YulFunctionCall",
"src": "1121:32:1"
},
"nativeSrc": "1118:119:1",
"nodeType": "YulIf",
"src": "1118:119:1"
},
{
"nativeSrc": "1247:117:1",
"nodeType": "YulBlock",
"src": "1247:117:1",
"statements": [
{
"nativeSrc": "1262:15:1",
"nodeType": "YulVariableDeclaration",
"src": "1262:15:1",
"value": {
"kind": "number",
"nativeSrc": "1276:1:1",
"nodeType": "YulLiteral",
"src": "1276:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "1266:6:1",
"nodeType": "YulTypedName",
"src": "1266:6:1",
"type": ""
}
]
},
{
"nativeSrc": "1291:63:1",
"nodeType": "YulAssignment",
"src": "1291:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "1326:9:1",
"nodeType": "YulIdentifier",
"src": "1326:9:1"
},
{
"name": "offset",
"nativeSrc": "1337:6:1",
"nodeType": "YulIdentifier",
"src": "1337:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1322:3:1",
"nodeType": "YulIdentifier",
"src": "1322:3:1"
},
"nativeSrc": "1322:22:1",
"nodeType": "YulFunctionCall",
"src": "1322:22:1"
},
{
"name": "dataEnd",
"nativeSrc": "1346:7:1",
"nodeType": "YulIdentifier",
"src": "1346:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nativeSrc": "1301:20:1",
"nodeType": "YulIdentifier",
"src": "1301:20:1"
},
"nativeSrc": "1301:53:1",
"nodeType": "YulFunctionCall",
"src": "1301:53:1"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "1291:6:1",
"nodeType": "YulIdentifier",
"src": "1291:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nativeSrc": "1042:329:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "1078:9:1",
"nodeType": "YulTypedName",
"src": "1078:9:1",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "1089:7:1",
"nodeType": "YulTypedName",
"src": "1089:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "1101:6:1",
"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": "608060405234801561000f575f80fd5b5060043610610034575f3560e01c80632e64cec1146100385780636057361d14610056575b5f80fd5b610040610072565b60405161004d919061009b565b60405180910390f35b610070600480360381019061006b91906100e2565b61007a565b005b5f8054905090565b805f8190555050565b5f819050919050565b61009581610083565b82525050565b5f6020820190506100ae5f83018461008c565b92915050565b5f80fd5b6100c181610083565b81146100cb575f80fd5b50565b5f813590506100dc816100b8565b92915050565b5f602082840312156100f7576100f66100b4565b5b5f610104848285016100ce565b9150509291505056fea2646970667358221220b65c8df632fdcb77488e6a144c951b3e4f55657c0f37cb17ca681698a5e009c664736f6c63430008180033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x34 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2E64CEC1 EQ PUSH2 0x38 JUMPI DUP1 PUSH4 0x6057361D EQ PUSH2 0x56 JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x40 PUSH2 0x72 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4D SWAP2 SWAP1 PUSH2 0x9B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x70 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6B SWAP2 SWAP1 PUSH2 0xE2 JUMP JUMPDEST PUSH2 0x7A JUMP JUMPDEST STOP JUMPDEST PUSH0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH0 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x95 DUP2 PUSH2 0x83 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xAE PUSH0 DUP4 ADD DUP5 PUSH2 0x8C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0xC1 DUP2 PUSH2 0x83 JUMP JUMPDEST DUP2 EQ PUSH2 0xCB JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xDC DUP2 PUSH2 0xB8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xF7 JUMPI PUSH2 0xF6 PUSH2 0xB4 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x104 DUP5 DUP3 DUP6 ADD PUSH2 0xCE JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xB6 TLOAD DUP14 0xF6 ORIGIN REVERT 0xCB PUSH24 0x488E6A144C951B3E4F55657C0F37CB17CA681698A5E009C6 PUSH5 0x736F6C6343 STOP ADDMOD XOR STOP CALLER ",
"sourceMap": "228:356:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;503:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;358:64;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;503:79;544:7;569:6;;562:13;;503:79;:::o;358:64::-;412:3;403:6;:12;;;;358: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": "64600",
"executionCost": "115",
"totalCost": "64715"
},
"external": {
"retrieve()": "2410",
"store(uint256)": "22514"
}
},
"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"
}
]
}
{
"compiler": {
"version": "0.8.24+commit.e11b9ed9"
},
"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/SimpleStorage.sol": "Storage"
},
"evmVersion": "shanghai",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/SimpleStorage.sol": {
"keccak256": "0x5c4f33d8a89c28e76a0c4cc1981a78dec73609298a4d8ddb0fa93b5d4afb9cb1",
"license": "GPL-3.0",
"urls": [
"bzz-raw://db008424fbefc6f44a5b017c358788b5ccc7bd7f8984a84867258af88f34c84e",
"dweb:/ipfs/QmRobiZvXWvdxwzcLtCw3a6Ce3EMdJHKvKBaKpxzCSxXiX"
]
}
},
"version": 1
}
// I'm a comment!
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.8;
// pragma solidity ^0.8.0;
// pragma solidity >=0.8.0 <0.9.0;
contract SimpleStorage {
uint256 favoriteNumber;
struct People {
uint256 favoriteNumber;
string name;
}
// uint256[] public anArray;
People[] public people;
mapping(string => uint256) public nameToFavoriteNumber;
function store(uint256 _favoriteNumber) public {
favoriteNumber = _favoriteNumber;
}
function retrieve() public view returns (uint256){
return favoriteNumber;
}
function addPerson(string memory _name, uint256 _favoriteNumber) public {
people.push(People(_favoriteNumber, _name));
nameToFavoriteNumber[_name] = _favoriteNumber;
}
}
This file has been truncated, but you can view the full file.
{
"id": "945dca256e01da7f8f7ebbb96fa82b8b",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.24",
"solcLongVersion": "0.8.24+commit.e11b9ed9",
"input": {
"language": "Solidity",
"sources": {
"contracts/SimpleStorage.sol": {
"content": "// I'm a comment!\n// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.8;\n// pragma solidity ^0.8.0;\n// pragma solidity >=0.8.0 <0.9.0;\n\ncontract SimpleStorage {\n\n uint256 favoriteNumber;\n\n struct People {\n uint256 favoriteNumber;\n string name;\n }\n // uint256[] public anArray;\n People[] public people;\n\n mapping(string => uint256) public nameToFavoriteNumber;\n\n function store(uint256 _favoriteNumber) public {\n favoriteNumber = _favoriteNumber;\n }\n \n function retrieve() public view returns (uint256){\n return favoriteNumber;\n }\n\n function addPerson(string memory _name, uint256 _favoriteNumber) public {\n people.push(People(_favoriteNumber, _name));\n nameToFavoriteNumber[_name] = _favoriteNumber;\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/SimpleStorage.sol": {
"SimpleStorage": {
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "_name",
"type": "string"
},
{
"internalType": "uint256",
"name": "_favoriteNumber",
"type": "uint256"
}
],
"name": "addPerson",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"name": "nameToFavoriteNumber",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "people",
"outputs": [
{
"internalType": "uint256",
"name": "favoriteNumber",
"type": "uint256"
},
{
"internalType": "string",
"name": "name",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "retrieve",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_favoriteNumber",
"type": "uint256"
}
],
"name": "store",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/SimpleStorage.sol\":138:787 contract SimpleStorage {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"contracts/SimpleStorage.sol\":138:787 contract SimpleStorage {... */\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 0x2e64cec1\n eq\n tag_3\n jumpi\n dup1\n 0x6057361d\n eq\n tag_4\n jumpi\n dup1\n 0x6f760f41\n eq\n tag_5\n jumpi\n dup1\n 0x8bab8dd5\n eq\n tag_6\n jumpi\n dup1\n 0x9e7a13ad\n eq\n tag_7\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"contracts/SimpleStorage.sol\":505:592 function retrieve() public view returns (uint256){... */\n tag_3:\n tag_8\n tag_9\n jump\t// in\n tag_8:\n mload(0x40)\n tag_10\n swap2\n swap1\n tag_11\n jump\t// in\n tag_10:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/SimpleStorage.sol\":399:495 function store(uint256 _favoriteNumber) public {... */\n tag_4:\n tag_12\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_13\n swap2\n swap1\n tag_14\n jump\t// in\n tag_13:\n tag_15\n jump\t// in\n tag_12:\n stop\n /* \"contracts/SimpleStorage.sol\":598:785 function addPerson(string memory _name, uint256 _favoriteNumber) public {... */\n tag_5:\n tag_16\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_17\n swap2\n swap1\n tag_18\n jump\t// in\n tag_17:\n tag_19\n jump\t// in\n tag_16:\n stop\n /* \"contracts/SimpleStorage.sol\":338:392 mapping(string => uint256) public nameToFavoriteNumber */\n tag_6:\n tag_20\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_21\n swap2\n swap1\n tag_22\n jump\t// in\n tag_21:\n tag_23\n jump\t// in\n tag_20:\n mload(0x40)\n tag_24\n swap2\n swap1\n tag_11\n jump\t// in\n tag_24:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/SimpleStorage.sol\":309:331 People[] public people */\n tag_7:\n tag_25\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_26\n swap2\n swap1\n tag_14\n jump\t// in\n tag_26:\n tag_27\n jump\t// in\n tag_25:\n mload(0x40)\n tag_28\n swap3\n swap2\n swap1\n tag_29\n jump\t// in\n tag_28:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/SimpleStorage.sol\":505:592 function retrieve() public view returns (uint256){... */\n tag_9:\n /* \"contracts/SimpleStorage.sol\":546:553 uint256 */\n 0x00\n /* \"contracts/SimpleStorage.sol\":571:585 favoriteNumber */\n dup1\n sload\n /* \"contracts/SimpleStorage.sol\":564:585 return favoriteNumber */\n swap1\n pop\n /* \"contracts/SimpleStorage.sol\":505:592 function retrieve() public view returns (uint256){... */\n swap1\n jump\t// out\n /* \"contracts/SimpleStorage.sol\":399:495 function store(uint256 _favoriteNumber) public {... */\n tag_15:\n /* \"contracts/SimpleStorage.sol\":473:488 _favoriteNumber */\n dup1\n /* \"contracts/SimpleStorage.sol\":456:470 favoriteNumber */\n 0x00\n /* \"contracts/SimpleStorage.sol\":456:488 favoriteNumber = _favoriteNumber */\n dup2\n swap1\n sstore\n pop\n /* \"contracts/SimpleStorage.sol\":399:495 function store(uint256 _favoriteNumber) public {... */\n pop\n jump\t// out\n /* \"contracts/SimpleStorage.sol\":598:785 function addPerson(string memory _name, uint256 _favoriteNumber) public {... */\n tag_19:\n /* \"contracts/SimpleStorage.sol\":680:686 people */\n 0x01\n /* \"contracts/SimpleStorage.sol\":692:722 People(_favoriteNumber, _name) */\n mload(0x40)\n dup1\n 0x40\n add\n 0x40\n mstore\n dup1\n /* \"contracts/SimpleStorage.sol\":699:714 _favoriteNumber */\n dup4\n /* \"contracts/SimpleStorage.sol\":692:722 People(_favoriteNumber, _name) */\n dup2\n mstore\n 0x20\n add\n /* \"contracts/SimpleStorage.sol\":716:721 _name */\n dup5\n /* \"contracts/SimpleStorage.sol\":692:722 People(_favoriteNumber, _name) */\n dup2\n mstore\n pop\n /* \"contracts/SimpleStorage.sol\":680:723 people.push(People(_favoriteNumber, _name)) */\n swap1\n dup1\n 0x01\n dup2\n sload\n add\n dup1\n dup3\n sstore\n dup1\n swap2\n pop\n pop\n 0x01\n swap1\n sub\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x02\n mul\n add\n 0x00\n swap1\n swap2\n swap1\n swap2\n swap1\n swap2\n pop\n 0x00\n dup3\n add\n mload\n dup2\n 0x00\n add\n sstore\n 0x20\n dup3\n add\n mload\n dup2\n 0x01\n add\n swap1\n dup2\n tag_34\n swap2\n swap1\n tag_35\n jump\t// in\n tag_34:\n pop\n pop\n pop\n /* \"contracts/SimpleStorage.sol\":763:778 _favoriteNumber */\n dup1\n /* \"contracts/SimpleStorage.sol\":733:753 nameToFavoriteNumber */\n 0x02\n /* \"contracts/SimpleStorage.sol\":754:759 _name */\n dup4\n /* \"contracts/SimpleStorage.sol\":733:760 nameToFavoriteNumber[_name] */\n mload(0x40)\n tag_36\n swap2\n swap1\n tag_37\n jump\t// in\n tag_36:\n swap1\n dup2\n mstore\n 0x20\n add\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n keccak256\n /* \"contracts/SimpleStorage.sol\":733:778 nameToFavoriteNumber[_name] = _favoriteNumber */\n dup2\n swap1\n sstore\n pop\n /* \"contracts/SimpleStorage.sol\":598:785 function addPerson(string memory _name, uint256 _favoriteNumber) public {... */\n pop\n pop\n jump\t// out\n /* \"contracts/SimpleStorage.sol\":338:392 mapping(string => uint256) public nameToFavoriteNumber */\n tag_23:\n 0x02\n dup2\n dup1\n mload\n 0x20\n dup2\n add\n dup3\n add\n dup1\n mload\n dup5\n dup3\n mstore\n 0x20\n dup4\n add\n 0x20\n dup6\n add\n keccak256\n dup2\n dup4\n mstore\n dup1\n swap6\n pop\n pop\n pop\n pop\n pop\n pop\n 0x00\n swap2\n pop\n swap1\n pop\n sload\n dup2\n jump\t// out\n /* \"contracts/SimpleStorage.sol\":309:331 People[] public people */\n tag_27:\n 0x01\n dup2\n dup2\n sload\n dup2\n lt\n tag_38\n jumpi\n 0x00\n dup1\n revert\n tag_38:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x02\n mul\n add\n 0x00\n swap2\n pop\n swap1\n pop\n dup1\n 0x00\n add\n sload\n swap1\n dup1\n 0x01\n add\n dup1\n sload\n tag_40\n swap1\n tag_41\n jump\t// in\n tag_40:\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n tag_42\n swap1\n tag_41\n jump\t// in\n tag_42:\n dup1\n iszero\n tag_43\n jumpi\n dup1\n 0x1f\n lt\n tag_44\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_43)\n tag_44:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_45:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_45\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_43:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n dup3\n jump\t// out\n /* \"#utility.yul\":7:84 */\n tag_46:\n /* \"#utility.yul\":44:51 */\n 0x00\n /* \"#utility.yul\":73:78 */\n dup2\n /* \"#utility.yul\":62:78 */\n swap1\n pop\n /* \"#utility.yul\":7:84 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":90:208 */\n tag_47:\n /* \"#utility.yul\":177:201 */\n tag_88\n /* \"#utility.yul\":195:200 */\n dup2\n /* \"#utility.yul\":177:201 */\n tag_46\n jump\t// in\n tag_88:\n /* \"#utility.yul\":172:175 */\n dup3\n /* \"#utility.yul\":165:202 */\n mstore\n /* \"#utility.yul\":90:208 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":214:436 */\n tag_11:\n /* \"#utility.yul\":307:311 */\n 0x00\n /* \"#utility.yul\":345:347 */\n 0x20\n /* \"#utility.yul\":334:343 */\n dup3\n /* \"#utility.yul\":330:348 */\n add\n /* \"#utility.yul\":322:348 */\n swap1\n pop\n /* \"#utility.yul\":358:429 */\n tag_90\n /* \"#utility.yul\":426:427 */\n 0x00\n /* \"#utility.yul\":415:424 */\n dup4\n /* \"#utility.yul\":411:428 */\n add\n /* \"#utility.yul\":402:408 */\n dup5\n /* \"#utility.yul\":358:429 */\n tag_47\n jump\t// in\n tag_90:\n /* \"#utility.yul\":214:436 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":442:517 */\n tag_48:\n /* \"#utility.yul\":475:481 */\n 0x00\n /* \"#utility.yul\":508:510 */\n 0x40\n /* \"#utility.yul\":502:511 */\n mload\n /* \"#utility.yul\":492:511 */\n swap1\n pop\n /* \"#utility.yul\":442:517 */\n swap1\n jump\t// out\n /* \"#utility.yul\":523:640 */\n tag_49:\n /* \"#utility.yul\":632:633 */\n 0x00\n /* \"#utility.yul\":629:630 */\n dup1\n /* \"#utility.yul\":622:634 */\n revert\n /* \"#utility.yul\":646:763 */\n tag_50:\n /* \"#utility.yul\":755:756 */\n 0x00\n /* \"#utility.yul\":752:753 */\n dup1\n /* \"#utility.yul\":745:757 */\n revert\n /* \"#utility.yul\":769:891 */\n tag_51:\n /* \"#utility.yul\":842:866 */\n tag_95\n /* \"#utility.yul\":860:865 */\n dup2\n /* \"#utility.yul\":842:866 */\n tag_46\n jump\t// in\n tag_95:\n /* \"#utility.yul\":835:840 */\n dup2\n /* \"#utility.yul\":832:867 */\n eq\n /* \"#utility.yul\":822:885 */\n tag_96\n jumpi\n /* \"#utility.yul\":881:882 */\n 0x00\n /* \"#utility.yul\":878:879 */\n dup1\n /* \"#utility.yul\":871:883 */\n revert\n /* \"#utility.yul\":822:885 */\n tag_96:\n /* \"#utility.yul\":769:891 */\n pop\n jump\t// out\n /* \"#utility.yul\":897:1036 */\n tag_52:\n /* \"#utility.yul\":943:948 */\n 0x00\n /* \"#utility.yul\":981:987 */\n dup2\n /* \"#utility.yul\":968:988 */\n calldataload\n /* \"#utility.yul\":959:988 */\n swap1\n pop\n /* \"#utility.yul\":997:1030 */\n tag_98\n /* \"#utility.yul\":1024:1029 */\n dup2\n /* \"#utility.yul\":997:1030 */\n tag_51\n jump\t// in\n tag_98:\n /* \"#utility.yul\":897:1036 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1042:1371 */\n tag_14:\n /* \"#utility.yul\":1101:1107 */\n 0x00\n /* \"#utility.yul\":1150:1152 */\n 0x20\n /* \"#utility.yul\":1138:1147 */\n dup3\n /* \"#utility.yul\":1129:1136 */\n dup5\n /* \"#utility.yul\":1125:1148 */\n sub\n /* \"#utility.yul\":1121:1153 */\n slt\n /* \"#utility.yul\":1118:1237 */\n iszero\n tag_100\n jumpi\n /* \"#utility.yul\":1156:1235 */\n tag_101\n tag_49\n jump\t// in\n tag_101:\n /* \"#utility.yul\":1118:1237 */\n tag_100:\n /* \"#utility.yul\":1276:1277 */\n 0x00\n /* \"#utility.yul\":1301:1354 */\n tag_102\n /* \"#utility.yul\":1346:1353 */\n dup5\n /* \"#utility.yul\":1337:1343 */\n dup3\n /* \"#utility.yul\":1326:1335 */\n dup6\n /* \"#utility.yul\":1322:1344 */\n add\n /* \"#utility.yul\":1301:1354 */\n tag_52\n jump\t// in\n tag_102:\n /* \"#utility.yul\":1291:1354 */\n swap2\n pop\n /* \"#utility.yul\":1247:1364 */\n pop\n /* \"#utility.yul\":1042:1371 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1377:1494 */\n tag_53:\n /* \"#utility.yul\":1486:1487 */\n 0x00\n /* \"#utility.yul\":1483:1484 */\n dup1\n /* \"#utility.yul\":1476:1488 */\n revert\n /* \"#utility.yul\":1500:1617 */\n tag_54:\n /* \"#utility.yul\":1609:1610 */\n 0x00\n /* \"#utility.yul\":1606:1607 */\n dup1\n /* \"#utility.yul\":1599:1611 */\n revert\n /* \"#utility.yul\":1623:1725 */\n tag_55:\n /* \"#utility.yul\":1664:1670 */\n 0x00\n /* \"#utility.yul\":1715:1717 */\n 0x1f\n /* \"#utility.yul\":1711:1718 */\n not\n /* \"#utility.yul\":1706:1708 */\n 0x1f\n /* \"#utility.yul\":1699:1704 */\n dup4\n /* \"#utility.yul\":1695:1709 */\n add\n /* \"#utility.yul\":1691:1719 */\n and\n /* \"#utility.yul\":1681:1719 */\n swap1\n pop\n /* \"#utility.yul\":1623:1725 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1731:1911 */\n tag_56:\n /* \"#utility.yul\":1779:1856 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":1776:1777 */\n 0x00\n /* \"#utility.yul\":1769:1857 */\n mstore\n /* \"#utility.yul\":1876:1880 */\n 0x41\n /* \"#utility.yul\":1873:1874 */\n 0x04\n /* \"#utility.yul\":1866:1881 */\n mstore\n /* \"#utility.yul\":1900:1904 */\n 0x24\n /* \"#utility.yul\":1897:1898 */\n 0x00\n /* \"#utility.yul\":1890:1905 */\n revert\n /* \"#utility.yul\":1917:2198 */\n tag_57:\n /* \"#utility.yul\":2000:2027 */\n tag_108\n /* \"#utility.yul\":2022:2026 */\n dup3\n /* \"#utility.yul\":2000:2027 */\n tag_55\n jump\t// in\n tag_108:\n /* \"#utility.yul\":1992:1998 */\n dup2\n /* \"#utility.yul\":1988:2028 */\n add\n /* \"#utility.yul\":2130:2136 */\n dup2\n /* \"#utility.yul\":2118:2128 */\n dup2\n /* \"#utility.yul\":2115:2137 */\n lt\n /* \"#utility.yul\":2094:2112 */\n 0xffffffffffffffff\n /* \"#utility.yul\":2082:2092 */\n dup3\n /* \"#utility.yul\":2079:2113 */\n gt\n /* \"#utility.yul\":2076:2138 */\n or\n /* \"#utility.yul\":2073:2161 */\n iszero\n tag_109\n jumpi\n /* \"#utility.yul\":2141:2159 */\n tag_110\n tag_56\n jump\t// in\n tag_110:\n /* \"#utility.yul\":2073:2161 */\n tag_109:\n /* \"#utility.yul\":2181:2191 */\n dup1\n /* \"#utility.yul\":2177:2179 */\n 0x40\n /* \"#utility.yul\":2170:2192 */\n mstore\n /* \"#utility.yul\":1960:2198 */\n pop\n /* \"#utility.yul\":1917:2198 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2204:2333 */\n tag_58:\n /* \"#utility.yul\":2238:2244 */\n 0x00\n /* \"#utility.yul\":2265:2285 */\n tag_112\n tag_48\n jump\t// in\n tag_112:\n /* \"#utility.yul\":2255:2285 */\n swap1\n pop\n /* \"#utility.yul\":2294:2327 */\n tag_113\n /* \"#utility.yul\":2322:2326 */\n dup3\n /* \"#utility.yul\":2314:2320 */\n dup3\n /* \"#utility.yul\":2294:2327 */\n tag_57\n jump\t// in\n tag_113:\n /* \"#utility.yul\":2204:2333 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2339:2647 */\n tag_59:\n /* \"#utility.yul\":2401:2405 */\n 0x00\n /* \"#utility.yul\":2491:2509 */\n 0xffffffffffffffff\n /* \"#utility.yul\":2483:2489 */\n dup3\n /* \"#utility.yul\":2480:2510 */\n gt\n /* \"#utility.yul\":2477:2533 */\n iszero\n tag_115\n jumpi\n /* \"#utility.yul\":2513:2531 */\n tag_116\n tag_56\n jump\t// in\n tag_116:\n /* \"#utility.yul\":2477:2533 */\n tag_115:\n /* \"#utility.yul\":2551:2580 */\n tag_117\n /* \"#utility.yul\":2573:2579 */\n dup3\n /* \"#utility.yul\":2551:2580 */\n tag_55\n jump\t// in\n tag_117:\n /* \"#utility.yul\":2543:2580 */\n swap1\n pop\n /* \"#utility.yul\":2635:2639 */\n 0x20\n /* \"#utility.yul\":2629:2633 */\n dup2\n /* \"#utility.yul\":2625:2640 */\n add\n /* \"#utility.yul\":2617:2640 */\n swap1\n pop\n /* \"#utility.yul\":2339:2647 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2653:2799 */\n tag_60:\n /* \"#utility.yul\":2750:2756 */\n dup3\n /* \"#utility.yul\":2745:2748 */\n dup2\n /* \"#utility.yul\":2740:2743 */\n dup4\n /* \"#utility.yul\":2727:2757 */\n calldatacopy\n /* \"#utility.yul\":2791:2792 */\n 0x00\n /* \"#utility.yul\":2782:2788 */\n dup4\n /* \"#utility.yul\":2777:2780 */\n dup4\n /* \"#utility.yul\":2773:2789 */\n add\n /* \"#utility.yul\":2766:2793 */\n mstore\n /* \"#utility.yul\":2653:2799 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2805:3230 */\n tag_61:\n /* \"#utility.yul\":2883:2888 */\n 0x00\n /* \"#utility.yul\":2908:2974 */\n tag_120\n /* \"#utility.yul\":2924:2973 */\n tag_121\n /* \"#utility.yul\":2966:2972 */\n dup5\n /* \"#utility.yul\":2924:2973 */\n tag_59\n jump\t// in\n tag_121:\n /* \"#utility.yul\":2908:2974 */\n tag_58\n jump\t// in\n tag_120:\n /* \"#utility.yul\":2899:2974 */\n swap1\n pop\n /* \"#utility.yul\":2997:3003 */\n dup3\n /* \"#utility.yul\":2990:2995 */\n dup2\n /* \"#utility.yul\":2983:3004 */\n mstore\n /* \"#utility.yul\":3035:3039 */\n 0x20\n /* \"#utility.yul\":3028:3033 */\n dup2\n /* \"#utility.yul\":3024:3040 */\n add\n /* \"#utility.yul\":3073:3076 */\n dup5\n /* \"#utility.yul\":3064:3070 */\n dup5\n /* \"#utility.yul\":3059:3062 */\n dup5\n /* \"#utility.yul\":3055:3071 */\n add\n /* \"#utility.yul\":3052:3077 */\n gt\n /* \"#utility.yul\":3049:3161 */\n iszero\n tag_122\n jumpi\n /* \"#utility.yul\":3080:3159 */\n tag_123\n tag_54\n jump\t// in\n tag_123:\n /* \"#utility.yul\":3049:3161 */\n tag_122:\n /* \"#utility.yul\":3170:3224 */\n tag_124\n /* \"#utility.yul\":3217:3223 */\n dup5\n /* \"#utility.yul\":3212:3215 */\n dup3\n /* \"#utility.yul\":3207:3210 */\n dup6\n /* \"#utility.yul\":3170:3224 */\n tag_60\n jump\t// in\n tag_124:\n /* \"#utility.yul\":2889:3230 */\n pop\n /* \"#utility.yul\":2805:3230 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3250:3590 */\n tag_62:\n /* \"#utility.yul\":3306:3311 */\n 0x00\n /* \"#utility.yul\":3355:3358 */\n dup3\n /* \"#utility.yul\":3348:3352 */\n 0x1f\n /* \"#utility.yul\":3340:3346 */\n dup4\n /* \"#utility.yul\":3336:3353 */\n add\n /* \"#utility.yul\":3332:3359 */\n slt\n /* \"#utility.yul\":3322:3444 */\n tag_126\n jumpi\n /* \"#utility.yul\":3363:3442 */\n tag_127\n tag_53\n jump\t// in\n tag_127:\n /* \"#utility.yul\":3322:3444 */\n tag_126:\n /* \"#utility.yul\":3480:3486 */\n dup2\n /* \"#utility.yul\":3467:3487 */\n calldataload\n /* \"#utility.yul\":3505:3584 */\n tag_128\n /* \"#utility.yul\":3580:3583 */\n dup5\n /* \"#utility.yul\":3572:3578 */\n dup3\n /* \"#utility.yul\":3565:3569 */\n 0x20\n /* \"#utility.yul\":3557:3563 */\n dup7\n /* \"#utility.yul\":3553:3570 */\n add\n /* \"#utility.yul\":3505:3584 */\n tag_61\n jump\t// in\n tag_128:\n /* \"#utility.yul\":3496:3584 */\n swap2\n pop\n /* \"#utility.yul\":3312:3590 */\n pop\n /* \"#utility.yul\":3250:3590 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3596:4250 */\n tag_18:\n /* \"#utility.yul\":3674:3680 */\n 0x00\n /* \"#utility.yul\":3682:3688 */\n dup1\n /* \"#utility.yul\":3731:3733 */\n 0x40\n /* \"#utility.yul\":3719:3728 */\n dup4\n /* \"#utility.yul\":3710:3717 */\n dup6\n /* \"#utility.yul\":3706:3729 */\n sub\n /* \"#utility.yul\":3702:3734 */\n slt\n /* \"#utility.yul\":3699:3818 */\n iszero\n tag_130\n jumpi\n /* \"#utility.yul\":3737:3816 */\n tag_131\n tag_49\n jump\t// in\n tag_131:\n /* \"#utility.yul\":3699:3818 */\n tag_130:\n /* \"#utility.yul\":3885:3886 */\n 0x00\n /* \"#utility.yul\":3874:3883 */\n dup4\n /* \"#utility.yul\":3870:3887 */\n add\n /* \"#utility.yul\":3857:3888 */\n calldataload\n /* \"#utility.yul\":3915:3933 */\n 0xffffffffffffffff\n /* \"#utility.yul\":3907:3913 */\n dup2\n /* \"#utility.yul\":3904:3934 */\n gt\n /* \"#utility.yul\":3901:4018 */\n iszero\n tag_132\n jumpi\n /* \"#utility.yul\":3937:4016 */\n tag_133\n tag_50\n jump\t// in\n tag_133:\n /* \"#utility.yul\":3901:4018 */\n tag_132:\n /* \"#utility.yul\":4042:4105 */\n tag_134\n /* \"#utility.yul\":4097:4104 */\n dup6\n /* \"#utility.yul\":4088:4094 */\n dup3\n /* \"#utility.yul\":4077:4086 */\n dup7\n /* \"#utility.yul\":4073:4095 */\n add\n /* \"#utility.yul\":4042:4105 */\n tag_62\n jump\t// in\n tag_134:\n /* \"#utility.yul\":4032:4105 */\n swap3\n pop\n /* \"#utility.yul\":3828:4115 */\n pop\n /* \"#utility.yul\":4154:4156 */\n 0x20\n /* \"#utility.yul\":4180:4233 */\n tag_135\n /* \"#utility.yul\":4225:4232 */\n dup6\n /* \"#utility.yul\":4216:4222 */\n dup3\n /* \"#utility.yul\":4205:4214 */\n dup7\n /* \"#utility.yul\":4201:4223 */\n add\n /* \"#utility.yul\":4180:4233 */\n tag_52\n jump\t// in\n tag_135:\n /* \"#utility.yul\":4170:4233 */\n swap2\n pop\n /* \"#utility.yul\":4125:4243 */\n pop\n /* \"#utility.yul\":3596:4250 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4256:4765 */\n tag_22:\n /* \"#utility.yul\":4325:4331 */\n 0x00\n /* \"#utility.yul\":4374:4376 */\n 0x20\n /* \"#utility.yul\":4362:4371 */\n dup3\n /* \"#utility.yul\":4353:4360 */\n dup5\n /* \"#utility.yul\":4349:4372 */\n sub\n /* \"#utility.yul\":4345:4377 */\n slt\n /* \"#utility.yul\":4342:4461 */\n iszero\n tag_137\n jumpi\n /* \"#utility.yul\":4380:4459 */\n tag_138\n tag_49\n jump\t// in\n tag_138:\n /* \"#utility.yul\":4342:4461 */\n tag_137:\n /* \"#utility.yul\":4528:4529 */\n 0x00\n /* \"#utility.yul\":4517:4526 */\n dup3\n /* \"#utility.yul\":4513:4530 */\n add\n /* \"#utility.yul\":4500:4531 */\n calldataload\n /* \"#utility.yul\":4558:4576 */\n 0xffffffffffffffff\n /* \"#utility.yul\":4550:4556 */\n dup2\n /* \"#utility.yul\":4547:4577 */\n gt\n /* \"#utility.yul\":4544:4661 */\n iszero\n tag_139\n jumpi\n /* \"#utility.yul\":4580:4659 */\n tag_140\n tag_50\n jump\t// in\n tag_140:\n /* \"#utility.yul\":4544:4661 */\n tag_139:\n /* \"#utility.yul\":4685:4748 */\n tag_141\n /* \"#utility.yul\":4740:4747 */\n dup5\n /* \"#utility.yul\":4731:4737 */\n dup3\n /* \"#utility.yul\":4720:4729 */\n dup6\n /* \"#utility.yul\":4716:4738 */\n add\n /* \"#utility.yul\":4685:4748 */\n tag_62\n jump\t// in\n tag_141:\n /* \"#utility.yul\":4675:4748 */\n swap2\n pop\n /* \"#utility.yul\":4471:4758 */\n pop\n /* \"#utility.yul\":4256:4765 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4771:4870 */\n tag_63:\n /* \"#utility.yul\":4823:4829 */\n 0x00\n /* \"#utility.yul\":4857:4862 */\n dup2\n /* \"#utility.yul\":4851:4863 */\n mload\n /* \"#utility.yul\":4841:4863 */\n swap1\n pop\n /* \"#utility.yul\":4771:4870 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4876:5045 */\n tag_64:\n /* \"#utility.yul\":4960:4971 */\n 0x00\n /* \"#utility.yul\":4994:5000 */\n dup3\n /* \"#utility.yul\":4989:4992 */\n dup3\n /* \"#utility.yul\":4982:5001 */\n mstore\n /* \"#utility.yul\":5034:5038 */\n 0x20\n /* \"#utility.yul\":5029:5032 */\n dup3\n /* \"#utility.yul\":5025:5039 */\n add\n /* \"#utility.yul\":5010:5039 */\n swap1\n pop\n /* \"#utility.yul\":4876:5045 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5051:5297 */\n tag_65:\n /* \"#utility.yul\":5132:5133 */\n 0x00\n /* \"#utility.yul\":5142:5255 */\n tag_145:\n /* \"#utility.yul\":5156:5162 */\n dup4\n /* \"#utility.yul\":5153:5154 */\n dup2\n /* \"#utility.yul\":5150:5163 */\n lt\n /* \"#utility.yul\":5142:5255 */\n iszero\n tag_147\n jumpi\n /* \"#utility.yul\":5241:5242 */\n dup1\n /* \"#utility.yul\":5236:5239 */\n dup3\n /* \"#utility.yul\":5232:5243 */\n add\n /* \"#utility.yul\":5226:5244 */\n mload\n /* \"#utility.yul\":5222:5223 */\n dup2\n /* \"#utility.yul\":5217:5220 */\n dup5\n /* \"#utility.yul\":5213:5224 */\n add\n /* \"#utility.yul\":5206:5245 */\n mstore\n /* \"#utility.yul\":5178:5180 */\n 0x20\n /* \"#utility.yul\":5175:5176 */\n dup2\n /* \"#utility.yul\":5171:5181 */\n add\n /* \"#utility.yul\":5166:5181 */\n swap1\n pop\n /* \"#utility.yul\":5142:5255 */\n jump(tag_145)\n tag_147:\n /* \"#utility.yul\":5289:5290 */\n 0x00\n /* \"#utility.yul\":5280:5286 */\n dup5\n /* \"#utility.yul\":5275:5278 */\n dup5\n /* \"#utility.yul\":5271:5287 */\n add\n /* \"#utility.yul\":5264:5291 */\n mstore\n /* \"#utility.yul\":5113:5297 */\n pop\n /* \"#utility.yul\":5051:5297 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5303:5680 */\n tag_66:\n /* \"#utility.yul\":5391:5394 */\n 0x00\n /* \"#utility.yul\":5419:5458 */\n tag_149\n /* \"#utility.yul\":5452:5457 */\n dup3\n /* \"#utility.yul\":5419:5458 */\n tag_63\n jump\t// in\n tag_149:\n /* \"#utility.yul\":5474:5545 */\n tag_150\n /* \"#utility.yul\":5538:5544 */\n dup2\n /* \"#utility.yul\":5533:5536 */\n dup6\n /* \"#utility.yul\":5474:5545 */\n tag_64\n jump\t// in\n tag_150:\n /* \"#utility.yul\":5467:5545 */\n swap4\n pop\n /* \"#utility.yul\":5554:5619 */\n tag_151\n /* \"#utility.yul\":5612:5618 */\n dup2\n /* \"#utility.yul\":5607:5610 */\n dup6\n /* \"#utility.yul\":5600:5604 */\n 0x20\n /* \"#utility.yul\":5593:5598 */\n dup7\n /* \"#utility.yul\":5589:5605 */\n add\n /* \"#utility.yul\":5554:5619 */\n tag_65\n jump\t// in\n tag_151:\n /* \"#utility.yul\":5644:5673 */\n tag_152\n /* \"#utility.yul\":5666:5672 */\n dup2\n /* \"#utility.yul\":5644:5673 */\n tag_55\n jump\t// in\n tag_152:\n /* \"#utility.yul\":5639:5642 */\n dup5\n /* \"#utility.yul\":5635:5674 */\n add\n /* \"#utility.yul\":5628:5674 */\n swap2\n pop\n /* \"#utility.yul\":5395:5680 */\n pop\n /* \"#utility.yul\":5303:5680 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5686:6109 */\n tag_29:\n /* \"#utility.yul\":5827:5831 */\n 0x00\n /* \"#utility.yul\":5865:5867 */\n 0x40\n /* \"#utility.yul\":5854:5863 */\n dup3\n /* \"#utility.yul\":5850:5868 */\n add\n /* \"#utility.yul\":5842:5868 */\n swap1\n pop\n /* \"#utility.yul\":5878:5949 */\n tag_154\n /* \"#utility.yul\":5946:5947 */\n 0x00\n /* \"#utility.yul\":5935:5944 */\n dup4\n /* \"#utility.yul\":5931:5948 */\n add\n /* \"#utility.yul\":5922:5928 */\n dup6\n /* \"#utility.yul\":5878:5949 */\n tag_47\n jump\t// in\n tag_154:\n /* \"#utility.yul\":5996:6005 */\n dup2\n /* \"#utility.yul\":5990:5994 */\n dup2\n /* \"#utility.yul\":5986:6006 */\n sub\n /* \"#utility.yul\":5981:5983 */\n 0x20\n /* \"#utility.yul\":5970:5979 */\n dup4\n /* \"#utility.yul\":5966:5984 */\n add\n /* \"#utility.yul\":5959:6007 */\n mstore\n /* \"#utility.yul\":6024:6102 */\n tag_155\n /* \"#utility.yul\":6097:6101 */\n dup2\n /* \"#utility.yul\":6088:6094 */\n dup5\n /* \"#utility.yul\":6024:6102 */\n tag_66\n jump\t// in\n tag_155:\n /* \"#utility.yul\":6016:6102 */\n swap1\n pop\n /* \"#utility.yul\":5686:6109 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6115:6295 */\n tag_67:\n /* \"#utility.yul\":6163:6240 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":6160:6161 */\n 0x00\n /* \"#utility.yul\":6153:6241 */\n mstore\n /* \"#utility.yul\":6260:6264 */\n 0x22\n /* \"#utility.yul\":6257:6258 */\n 0x04\n /* \"#utility.yul\":6250:6265 */\n mstore\n /* \"#utility.yul\":6284:6288 */\n 0x24\n /* \"#utility.yul\":6281:6282 */\n 0x00\n /* \"#utility.yul\":6274:6289 */\n revert\n /* \"#utility.yul\":6301:6621 */\n tag_41:\n /* \"#utility.yul\":6345:6351 */\n 0x00\n /* \"#utility.yul\":6382:6383 */\n 0x02\n /* \"#utility.yul\":6376:6380 */\n dup3\n /* \"#utility.yul\":6372:6384 */\n div\n /* \"#utility.yul\":6362:6384 */\n swap1\n pop\n /* \"#utility.yul\":6429:6430 */\n 0x01\n /* \"#utility.yul\":6423:6427 */\n dup3\n /* \"#utility.yul\":6419:6431 */\n and\n /* \"#utility.yul\":6450:6468 */\n dup1\n /* \"#utility.yul\":6440:6521 */\n tag_158\n jumpi\n /* \"#utility.yul\":6506:6510 */\n 0x7f\n /* \"#utility.yul\":6498:6504 */\n dup3\n /* \"#utility.yul\":6494:6511 */\n and\n /* \"#utility.yul\":6484:6511 */\n swap2\n pop\n /* \"#utility.yul\":6440:6521 */\n tag_158:\n /* \"#utility.yul\":6568:6570 */\n 0x20\n /* \"#utility.yul\":6560:6566 */\n dup3\n /* \"#utility.yul\":6557:6571 */\n lt\n /* \"#utility.yul\":6537:6555 */\n dup2\n /* \"#utility.yul\":6534:6572 */\n sub\n /* \"#utility.yul\":6531:6615 */\n tag_159\n jumpi\n /* \"#utility.yul\":6587:6605 */\n tag_160\n tag_67\n jump\t// in\n tag_160:\n /* \"#utility.yul\":6531:6615 */\n tag_159:\n /* \"#utility.yul\":6352:6621 */\n pop\n /* \"#utility.yul\":6301:6621 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6627:6768 */\n tag_68:\n /* \"#utility.yul\":6676:6680 */\n 0x00\n /* \"#utility.yul\":6699:6702 */\n dup2\n /* \"#utility.yul\":6691:6702 */\n swap1\n pop\n /* \"#utility.yul\":6722:6725 */\n dup2\n /* \"#utility.yul\":6719:6720 */\n 0x00\n /* \"#utility.yul\":6712:6726 */\n mstore\n /* \"#utility.yul\":6756:6760 */\n 0x20\n /* \"#utility.yul\":6753:6754 */\n 0x00\n /* \"#utility.yul\":6743:6761 */\n keccak256\n /* \"#utility.yul\":6735:6761 */\n swap1\n pop\n /* \"#utility.yul\":6627:6768 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6774:6867 */\n tag_69:\n /* \"#utility.yul\":6811:6817 */\n 0x00\n /* \"#utility.yul\":6858:6860 */\n 0x20\n /* \"#utility.yul\":6853:6855 */\n 0x1f\n /* \"#utility.yul\":6846:6851 */\n dup4\n /* \"#utility.yul\":6842:6856 */\n add\n /* \"#utility.yul\":6838:6861 */\n div\n /* \"#utility.yul\":6828:6861 */\n swap1\n pop\n /* \"#utility.yul\":6774:6867 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6873:6980 */\n tag_70:\n /* \"#utility.yul\":6917:6925 */\n 0x00\n /* \"#utility.yul\":6967:6972 */\n dup3\n /* \"#utility.yul\":6961:6965 */\n dup3\n /* \"#utility.yul\":6957:6973 */\n shl\n /* \"#utility.yul\":6936:6973 */\n swap1\n pop\n /* \"#utility.yul\":6873:6980 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6986:7379 */\n tag_71:\n /* \"#utility.yul\":7055:7061 */\n 0x00\n /* \"#utility.yul\":7105:7106 */\n 0x08\n /* \"#utility.yul\":7093:7103 */\n dup4\n /* \"#utility.yul\":7089:7107 */\n mul\n /* \"#utility.yul\":7128:7225 */\n tag_165\n /* \"#utility.yul\":7158:7224 */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":7147:7156 */\n dup3\n /* \"#utility.yul\":7128:7225 */\n tag_70\n jump\t// in\n tag_165:\n /* \"#utility.yul\":7246:7285 */\n tag_166\n /* \"#utility.yul\":7276:7284 */\n dup7\n /* \"#utility.yul\":7265:7274 */\n dup4\n /* \"#utility.yul\":7246:7285 */\n tag_70\n jump\t// in\n tag_166:\n /* \"#utility.yul\":7234:7285 */\n swap6\n pop\n /* \"#utility.yul\":7318:7322 */\n dup1\n /* \"#utility.yul\":7314:7323 */\n not\n /* \"#utility.yul\":7307:7312 */\n dup5\n /* \"#utility.yul\":7303:7324 */\n and\n /* \"#utility.yul\":7294:7324 */\n swap4\n pop\n /* \"#utility.yul\":7367:7371 */\n dup1\n /* \"#utility.yul\":7357:7365 */\n dup7\n /* \"#utility.yul\":7353:7372 */\n and\n /* \"#utility.yul\":7346:7351 */\n dup5\n /* \"#utility.yul\":7343:7373 */\n or\n /* \"#utility.yul\":7333:7373 */\n swap3\n pop\n /* \"#utility.yul\":7062:7379 */\n pop\n pop\n /* \"#utility.yul\":6986:7379 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7385:7445 */\n tag_72:\n /* \"#utility.yul\":7413:7416 */\n 0x00\n /* \"#utility.yul\":7434:7439 */\n dup2\n /* \"#utility.yul\":7427:7439 */\n swap1\n pop\n /* \"#utility.yul\":7385:7445 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7451:7593 */\n tag_73:\n /* \"#utility.yul\":7501:7510 */\n 0x00\n /* \"#utility.yul\":7534:7587 */\n tag_169\n /* \"#utility.yul\":7552:7586 */\n tag_170\n /* \"#utility.yul\":7561:7585 */\n tag_171\n /* \"#utility.yul\":7579:7584 */\n dup5\n /* \"#utility.yul\":7561:7585 */\n tag_46\n jump\t// in\n tag_171:\n /* \"#utility.yul\":7552:7586 */\n tag_72\n jump\t// in\n tag_170:\n /* \"#utility.yul\":7534:7587 */\n tag_46\n jump\t// in\n tag_169:\n /* \"#utility.yul\":7521:7587 */\n swap1\n pop\n /* \"#utility.yul\":7451:7593 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7599:7674 */\n tag_74:\n /* \"#utility.yul\":7642:7645 */\n 0x00\n /* \"#utility.yul\":7663:7668 */\n dup2\n /* \"#utility.yul\":7656:7668 */\n swap1\n pop\n /* \"#utility.yul\":7599:7674 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7680:7949 */\n tag_75:\n /* \"#utility.yul\":7790:7829 */\n tag_174\n /* \"#utility.yul\":7821:7828 */\n dup4\n /* \"#utility.yul\":7790:7829 */\n tag_73\n jump\t// in\n tag_174:\n /* \"#utility.yul\":7851:7942 */\n tag_175\n /* \"#utility.yul\":7900:7941 */\n tag_176\n /* \"#utility.yul\":7924:7940 */\n dup3\n /* \"#utility.yul\":7900:7941 */\n tag_74\n jump\t// in\n tag_176:\n /* \"#utility.yul\":7892:7898 */\n dup5\n /* \"#utility.yul\":7885:7889 */\n dup5\n /* \"#utility.yul\":7879:7890 */\n sload\n /* \"#utility.yul\":7851:7942 */\n tag_71\n jump\t// in\n tag_175:\n /* \"#utility.yul\":7845:7849 */\n dup3\n /* \"#utility.yul\":7838:7943 */\n sstore\n /* \"#utility.yul\":7756:7949 */\n pop\n /* \"#utility.yul\":7680:7949 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7955:8028 */\n tag_76:\n /* \"#utility.yul\":8000:8003 */\n 0x00\n /* \"#utility.yul\":7955:8028 */\n swap1\n jump\t// out\n /* \"#utility.yul\":8034:8223 */\n tag_77:\n /* \"#utility.yul\":8111:8143 */\n tag_179\n tag_76\n jump\t// in\n tag_179:\n /* \"#utility.yul\":8152:8217 */\n tag_180\n /* \"#utility.yul\":8210:8216 */\n dup2\n /* \"#utility.yul\":8202:8208 */\n dup5\n /* \"#utility.yul\":8196:8200 */\n dup5\n /* \"#utility.yul\":8152:8217 */\n tag_75\n jump\t// in\n tag_180:\n /* \"#utility.yul\":8087:8223 */\n pop\n /* \"#utility.yul\":8034:8223 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":8229:8415 */\n tag_78:\n /* \"#utility.yul\":8289:8409 */\n tag_182:\n /* \"#utility.yul\":8306:8309 */\n dup2\n /* \"#utility.yul\":8299:8304 */\n dup2\n /* \"#utility.yul\":8296:8310 */\n lt\n /* \"#utility.yul\":8289:8409 */\n iszero\n tag_184\n jumpi\n /* \"#utility.yul\":8360:8399 */\n tag_185\n /* \"#utility.yul\":8397:8398 */\n 0x00\n /* \"#utility.yul\":8390:8395 */\n dup3\n /* \"#utility.yul\":8360:8399 */\n tag_77\n jump\t// in\n tag_185:\n /* \"#utility.yul\":8333:8334 */\n 0x01\n /* \"#utility.yul\":8326:8331 */\n dup2\n /* \"#utility.yul\":8322:8335 */\n add\n /* \"#utility.yul\":8313:8335 */\n swap1\n pop\n /* \"#utility.yul\":8289:8409 */\n jump(tag_182)\n tag_184:\n /* \"#utility.yul\":8229:8415 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":8421:8964 */\n tag_79:\n /* \"#utility.yul\":8522:8524 */\n 0x1f\n /* \"#utility.yul\":8517:8520 */\n dup3\n /* \"#utility.yul\":8514:8525 */\n gt\n /* \"#utility.yul\":8511:8957 */\n iszero\n tag_187\n jumpi\n /* \"#utility.yul\":8556:8594 */\n tag_188\n /* \"#utility.yul\":8588:8593 */\n dup2\n /* \"#utility.yul\":8556:8594 */\n tag_68\n jump\t// in\n tag_188:\n /* \"#utility.yul\":8640:8669 */\n tag_189\n /* \"#utility.yul\":8658:8668 */\n dup5\n /* \"#utility.yul\":8640:8669 */\n tag_69\n jump\t// in\n tag_189:\n /* \"#utility.yul\":8630:8638 */\n dup2\n /* \"#utility.yul\":8626:8670 */\n add\n /* \"#utility.yul\":8823:8825 */\n 0x20\n /* \"#utility.yul\":8811:8821 */\n dup6\n /* \"#utility.yul\":8808:8826 */\n lt\n /* \"#utility.yul\":8805:8854 */\n iszero\n tag_190\n jumpi\n /* \"#utility.yul\":8844:8852 */\n dup2\n /* \"#utility.yul\":8829:8852 */\n swap1\n pop\n /* \"#utility.yul\":8805:8854 */\n tag_190:\n /* \"#utility.yul\":8867:8947 */\n tag_191\n /* \"#utility.yul\":8923:8945 */\n tag_192\n /* \"#utility.yul\":8941:8944 */\n dup6\n /* \"#utility.yul\":8923:8945 */\n tag_69\n jump\t// in\n tag_192:\n /* \"#utility.yul\":8913:8921 */\n dup4\n /* \"#utility.yul\":8909:8946 */\n add\n /* \"#utility.yul\":8896:8907 */\n dup3\n /* \"#utility.yul\":8867:8947 */\n tag_78\n jump\t// in\n tag_191:\n /* \"#utility.yul\":8526:8957 */\n pop\n pop\n /* \"#utility.yul\":8511:8957 */\n tag_187:\n /* \"#utility.yul\":8421:8964 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":8970:9087 */\n tag_80:\n /* \"#utility.yul\":9024:9032 */\n 0x00\n /* \"#utility.yul\":9074:9079 */\n dup3\n /* \"#utility.yul\":9068:9072 */\n dup3\n /* \"#utility.yul\":9064:9080 */\n shr\n /* \"#utility.yul\":9043:9080 */\n swap1\n pop\n /* \"#utility.yul\":8970:9087 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":9093:9262 */\n tag_81:\n /* \"#utility.yul\":9137:9143 */\n 0x00\n /* \"#utility.yul\":9170:9221 */\n tag_195\n /* \"#utility.yul\":9218:9219 */\n 0x00\n /* \"#utility.yul\":9214:9220 */\n not\n /* \"#utility.yul\":9206:9211 */\n dup5\n /* \"#utility.yul\":9203:9204 */\n 0x08\n /* \"#utility.yul\":9199:9212 */\n mul\n /* \"#utility.yul\":9170:9221 */\n tag_80\n jump\t// in\n tag_195:\n /* \"#utility.yul\":9166:9222 */\n not\n /* \"#utility.yul\":9251:9255 */\n dup1\n /* \"#utility.yul\":9245:9249 */\n dup4\n /* \"#utility.yul\":9241:9256 */\n and\n /* \"#utility.yul\":9231:9256 */\n swap2\n pop\n /* \"#utility.yul\":9144:9262 */\n pop\n /* \"#utility.yul\":9093:9262 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":9267:9562 */\n tag_82:\n /* \"#utility.yul\":9343:9347 */\n 0x00\n /* \"#utility.yul\":9489:9518 */\n tag_197\n /* \"#utility.yul\":9514:9517 */\n dup4\n /* \"#utility.yul\":9508:9512 */\n dup4\n /* \"#utility.yul\":9489:9518 */\n tag_81\n jump\t// in\n tag_197:\n /* \"#utility.yul\":9481:9518 */\n swap2\n pop\n /* \"#utility.yul\":9551:9554 */\n dup3\n /* \"#utility.yul\":9548:9549 */\n 0x02\n /* \"#utility.yul\":9544:9555 */\n mul\n /* \"#utility.yul\":9538:9542 */\n dup3\n /* \"#utility.yul\":9535:9556 */\n or\n /* \"#utility.yul\":9527:9556 */\n swap1\n pop\n /* \"#utility.yul\":9267:9562 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":9567:10962 */\n tag_35:\n /* \"#utility.yul\":9684:9721 */\n tag_199\n /* \"#utility.yul\":9717:9720 */\n dup3\n /* \"#utility.yul\":9684:9721 */\n tag_63\n jump\t// in\n tag_199:\n /* \"#utility.yul\":9786:9804 */\n 0xffffffffffffffff\n /* \"#utility.yul\":9778:9784 */\n dup2\n /* \"#utility.yul\":9775:9805 */\n gt\n /* \"#utility.yul\":9772:9828 */\n iszero\n tag_200\n jumpi\n /* \"#utility.yul\":9808:9826 */\n tag_201\n tag_56\n jump\t// in\n tag_201:\n /* \"#utility.yul\":9772:9828 */\n tag_200:\n /* \"#utility.yul\":9852:9890 */\n tag_202\n /* \"#utility.yul\":9884:9888 */\n dup3\n /* \"#utility.yul\":9878:9889 */\n sload\n /* \"#utility.yul\":9852:9890 */\n tag_41\n jump\t// in\n tag_202:\n /* \"#utility.yul\":9937:10004 */\n tag_203\n /* \"#utility.yul\":9997:10003 */\n dup3\n /* \"#utility.yul\":9989:9995 */\n dup3\n /* \"#utility.yul\":9983:9987 */\n dup6\n /* \"#utility.yul\":9937:10004 */\n tag_79\n jump\t// in\n tag_203:\n /* \"#utility.yul\":10031:10032 */\n 0x00\n /* \"#utility.yul\":10055:10059 */\n 0x20\n /* \"#utility.yul\":10042:10059 */\n swap1\n pop\n /* \"#utility.yul\":10087:10089 */\n 0x1f\n /* \"#utility.yul\":10079:10085 */\n dup4\n /* \"#utility.yul\":10076:10090 */\n gt\n /* \"#utility.yul\":10104:10105 */\n 0x01\n /* \"#utility.yul\":10099:10717 */\n dup2\n eq\n tag_205\n jumpi\n /* \"#utility.yul\":10761:10762 */\n 0x00\n /* \"#utility.yul\":10778:10784 */\n dup5\n /* \"#utility.yul\":10775:10852 */\n iszero\n tag_206\n jumpi\n /* \"#utility.yul\":10827:10836 */\n dup3\n /* \"#utility.yul\":10822:10825 */\n dup8\n /* \"#utility.yul\":10818:10837 */\n add\n /* \"#utility.yul\":10812:10838 */\n mload\n /* \"#utility.yul\":10803:10838 */\n swap1\n pop\n /* \"#utility.yul\":10775:10852 */\n tag_206:\n /* \"#utility.yul\":10878:10945 */\n tag_207\n /* \"#utility.yul\":10938:10944 */\n dup6\n /* \"#utility.yul\":10931:10936 */\n dup3\n /* \"#utility.yul\":10878:10945 */\n tag_82\n jump\t// in\n tag_207:\n /* \"#utility.yul\":10872:10876 */\n dup7\n /* \"#utility.yul\":10865:10946 */\n sstore\n /* \"#utility.yul\":10734:10956 */\n pop\n /* \"#utility.yul\":10069:10956 */\n jump(tag_204)\n /* \"#utility.yul\":10099:10717 */\n tag_205:\n /* \"#utility.yul\":10151:10155 */\n 0x1f\n /* \"#utility.yul\":10147:10156 */\n not\n /* \"#utility.yul\":10139:10145 */\n dup5\n /* \"#utility.yul\":10135:10157 */\n and\n /* \"#utility.yul\":10185:10222 */\n tag_208\n /* \"#utility.yul\":10217:10221 */\n dup7\n /* \"#utility.yul\":10185:10222 */\n tag_68\n jump\t// in\n tag_208:\n /* \"#utility.yul\":10244:10245 */\n 0x00\n /* \"#utility.yul\":10258:10466 */\n tag_209:\n /* \"#utility.yul\":10272:10279 */\n dup3\n /* \"#utility.yul\":10269:10270 */\n dup2\n /* \"#utility.yul\":10266:10280 */\n lt\n /* \"#utility.yul\":10258:10466 */\n iszero\n tag_211\n jumpi\n /* \"#utility.yul\":10351:10360 */\n dup5\n /* \"#utility.yul\":10346:10349 */\n dup10\n /* \"#utility.yul\":10342:10361 */\n add\n /* \"#utility.yul\":10336:10362 */\n mload\n /* \"#utility.yul\":10328:10334 */\n dup3\n /* \"#utility.yul\":10321:10363 */\n sstore\n /* \"#utility.yul\":10402:10403 */\n 0x01\n /* \"#utility.yul\":10394:10400 */\n dup3\n /* \"#utility.yul\":10390:10404 */\n add\n /* \"#utility.yul\":10380:10404 */\n swap2\n pop\n /* \"#utility.yul\":10449:10451 */\n 0x20\n /* \"#utility.yul\":10438:10447 */\n dup6\n /* \"#utility.yul\":10434:10452 */\n add\n /* \"#utility.yul\":10421:10452 */\n swap5\n pop\n /* \"#utility.yul\":10295:10299 */\n 0x20\n /* \"#utility.yul\":10292:10293 */\n dup2\n /* \"#utility.yul\":10288:10300 */\n add\n /* \"#utility.yul\":10283:10300 */\n swap1\n pop\n /* \"#utility.yul\":10258:10466 */\n jump(tag_209)\n tag_211:\n /* \"#utility.yul\":10494:10500 */\n dup7\n /* \"#utility.yul\":10485:10492 */\n dup4\n /* \"#utility.yul\":10482:10501 */\n lt\n /* \"#utility.yul\":10479:10658 */\n iszero\n tag_212\n jumpi\n /* \"#utility.yul\":10552:10561 */\n dup5\n /* \"#utility.yul\":10547:10550 */\n dup10\n /* \"#utility.yul\":10543:10562 */\n add\n /* \"#utility.yul\":10537:10563 */\n mload\n /* \"#utility.yul\":10595:10643 */\n tag_213\n /* \"#utility.yul\":10637:10641 */\n 0x1f\n /* \"#utility.yul\":10629:10635 */\n dup10\n /* \"#utility.yul\":10625:10642 */\n and\n /* \"#utility.yul\":10614:10623 */\n dup3\n /* \"#utility.yul\":10595:10643 */\n tag_81\n jump\t// in\n tag_213:\n /* \"#utility.yul\":10587:10593 */\n dup4\n /* \"#utility.yul\":10580:10644 */\n sstore\n /* \"#utility.yul\":10502:10658 */\n pop\n /* \"#utility.yul\":10479:10658 */\n tag_212:\n /* \"#utility.yul\":10704:10705 */\n 0x01\n /* \"#utility.yul\":10700:10701 */\n 0x02\n /* \"#utility.yul\":10692:10698 */\n dup9\n /* \"#utility.yul\":10688:10702 */\n mul\n /* \"#utility.yul\":10684:10706 */\n add\n /* \"#utility.yul\":10678:10682 */\n dup9\n /* \"#utility.yul\":10671:10707 */\n sstore\n /* \"#utility.yul\":10106:10717 */\n pop\n pop\n pop\n /* \"#utility.yul\":10069:10956 */\n tag_204:\n pop\n /* \"#utility.yul\":9659:10962 */\n pop\n pop\n pop\n /* \"#utility.yul\":9567:10962 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":10968:11116 */\n tag_83:\n /* \"#utility.yul\":11070:11081 */\n 0x00\n /* \"#utility.yul\":11107:11110 */\n dup2\n /* \"#utility.yul\":11092:11110 */\n swap1\n pop\n /* \"#utility.yul\":10968:11116 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":11122:11512 */\n tag_84:\n /* \"#utility.yul\":11228:11231 */\n 0x00\n /* \"#utility.yul\":11256:11295 */\n tag_216\n /* \"#utility.yul\":11289:11294 */\n dup3\n /* \"#utility.yul\":11256:11295 */\n tag_63\n jump\t// in\n tag_216:\n /* \"#utility.yul\":11311:11400 */\n tag_217\n /* \"#utility.yul\":11393:11399 */\n dup2\n /* \"#utility.yul\":11388:11391 */\n dup6\n /* \"#utility.yul\":11311:11400 */\n tag_83\n jump\t// in\n tag_217:\n /* \"#utility.yul\":11304:11400 */\n swap4\n pop\n /* \"#utility.yul\":11409:11474 */\n tag_218\n /* \"#utility.yul\":11467:11473 */\n dup2\n /* \"#utility.yul\":11462:11465 */\n dup6\n /* \"#utility.yul\":11455:11459 */\n 0x20\n /* \"#utility.yul\":11448:11453 */\n dup7\n /* \"#utility.yul\":11444:11460 */\n add\n /* \"#utility.yul\":11409:11474 */\n tag_65\n jump\t// in\n tag_218:\n /* \"#utility.yul\":11499:11505 */\n dup1\n /* \"#utility.yul\":11494:11497 */\n dup5\n /* \"#utility.yul\":11490:11506 */\n add\n /* \"#utility.yul\":11483:11506 */\n swap2\n pop\n /* \"#utility.yul\":11232:11512 */\n pop\n /* \"#utility.yul\":11122:11512 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":11518:11793 */\n tag_37:\n /* \"#utility.yul\":11650:11653 */\n 0x00\n /* \"#utility.yul\":11672:11767 */\n tag_220\n /* \"#utility.yul\":11763:11766 */\n dup3\n /* \"#utility.yul\":11754:11760 */\n dup5\n /* \"#utility.yul\":11672:11767 */\n tag_84\n jump\t// in\n tag_220:\n /* \"#utility.yul\":11665:11767 */\n swap2\n pop\n /* \"#utility.yul\":11784:11787 */\n dup2\n /* \"#utility.yul\":11777:11787 */\n swap1\n pop\n /* \"#utility.yul\":11518:11793 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n\n auxdata: 0xa26469706673582212202ca85e69a0270391c3932893581327baecc9b5ea3ac89ecb57ca239aabcf0d3664736f6c63430008180033\n}\n",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561000f575f80fd5b506108f28061001d5f395ff3fe608060405234801561000f575f80fd5b5060043610610055575f3560e01c80632e64cec1146100595780636057361d146100775780636f760f41146100935780638bab8dd5146100af5780639e7a13ad146100df575b5f80fd5b610061610110565b60405161006e919061029f565b60405180910390f35b610091600480360381019061008c91906102f3565b610118565b005b6100ad60048036038101906100a8919061045a565b610121565b005b6100c960048036038101906100c491906104b4565b6101a5565b6040516100d6919061029f565b60405180910390f35b6100f960048036038101906100f491906102f3565b6101d2565b604051610107929190610575565b60405180910390f35b5f8054905090565b805f8190555050565b6001604051806040016040528083815260200184815250908060018154018082558091505060019003905f5260205f2090600202015f909190919091505f820151815f0155602082015181600101908161017b919061079d565b5050508060028360405161018f91906108a6565b9081526020016040518091039020819055505050565b6002818051602081018201805184825260208301602085012081835280955050505050505f915090505481565b600181815481106101e1575f80fd5b905f5260205f2090600202015f91509050805f015490806001018054610206906105d0565b80601f0160208091040260200160405190810160405280929190818152602001828054610232906105d0565b801561027d5780601f106102545761010080835404028352916020019161027d565b820191905f5260205f20905b81548152906001019060200180831161026057829003601f168201915b5050505050905082565b5f819050919050565b61029981610287565b82525050565b5f6020820190506102b25f830184610290565b92915050565b5f604051905090565b5f80fd5b5f80fd5b6102d281610287565b81146102dc575f80fd5b50565b5f813590506102ed816102c9565b92915050565b5f60208284031215610308576103076102c1565b5b5f610315848285016102df565b91505092915050565b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61036c82610326565b810181811067ffffffffffffffff8211171561038b5761038a610336565b5b80604052505050565b5f61039d6102b8565b90506103a98282610363565b919050565b5f67ffffffffffffffff8211156103c8576103c7610336565b5b6103d182610326565b9050602081019050919050565b828183375f83830152505050565b5f6103fe6103f9846103ae565b610394565b90508281526020810184848401111561041a57610419610322565b5b6104258482856103de565b509392505050565b5f82601f8301126104415761044061031e565b5b81356104518482602086016103ec565b91505092915050565b5f80604083850312156104705761046f6102c1565b5b5f83013567ffffffffffffffff81111561048d5761048c6102c5565b5b6104998582860161042d565b92505060206104aa858286016102df565b9150509250929050565b5f602082840312156104c9576104c86102c1565b5b5f82013567ffffffffffffffff8111156104e6576104e56102c5565b5b6104f28482850161042d565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610532578082015181840152602081019050610517565b5f8484015250505050565b5f610547826104fb565b6105518185610505565b9350610561818560208601610515565b61056a81610326565b840191505092915050565b5f6040820190506105885f830185610290565b818103602083015261059a818461053d565b90509392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806105e757607f821691505b6020821081036105fa576105f96105a3565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261065c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610621565b6106668683610621565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6106a161069c61069784610287565b61067e565b610287565b9050919050565b5f819050919050565b6106ba83610687565b6106ce6106c6826106a8565b84845461062d565b825550505050565b5f90565b6106e26106d6565b6106ed8184846106b1565b505050565b5b81811015610710576107055f826106da565b6001810190506106f3565b5050565b601f8211156107555761072681610600565b61072f84610612565b8101602085101561073e578190505b61075261074a85610612565b8301826106f2565b50505b505050565b5f82821c905092915050565b5f6107755f198460080261075a565b1980831691505092915050565b5f61078d8383610766565b9150826002028217905092915050565b6107a6826104fb565b67ffffffffffffffff8111156107bf576107be610336565b5b6107c982546105d0565b6107d4828285610714565b5f60209050601f831160018114610805575f84156107f3578287015190505b6107fd8582610782565b865550610864565b601f19841661081386610600565b5f5b8281101561083a57848901518255600182019150602085019450602081019050610815565b868310156108575784890151610853601f891682610766565b8355505b6001600288020188555050505b505050505050565b5f81905092915050565b5f610880826104fb565b61088a818561086c565b935061089a818560208601610515565b80840191505092915050565b5f6108b18284610876565b91508190509291505056fea26469706673582212202ca85e69a0270391c3932893581327baecc9b5ea3ac89ecb57ca239aabcf0d3664736f6c63430008180033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x8F2 DUP1 PUSH2 0x1D PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x55 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2E64CEC1 EQ PUSH2 0x59 JUMPI DUP1 PUSH4 0x6057361D EQ PUSH2 0x77 JUMPI DUP1 PUSH4 0x6F760F41 EQ PUSH2 0x93 JUMPI DUP1 PUSH4 0x8BAB8DD5 EQ PUSH2 0xAF JUMPI DUP1 PUSH4 0x9E7A13AD EQ PUSH2 0xDF JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x61 PUSH2 0x110 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x6E SWAP2 SWAP1 PUSH2 0x29F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x91 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x8C SWAP2 SWAP1 PUSH2 0x2F3 JUMP JUMPDEST PUSH2 0x118 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xAD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xA8 SWAP2 SWAP1 PUSH2 0x45A JUMP JUMPDEST PUSH2 0x121 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xC9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xC4 SWAP2 SWAP1 PUSH2 0x4B4 JUMP JUMPDEST PUSH2 0x1A5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD6 SWAP2 SWAP1 PUSH2 0x29F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xF9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF4 SWAP2 SWAP1 PUSH2 0x2F3 JUMP JUMPDEST PUSH2 0x1D2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x107 SWAP3 SWAP2 SWAP1 PUSH2 0x575 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH0 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE POP SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH0 DUP3 ADD MLOAD DUP2 PUSH0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP2 PUSH2 0x17B SWAP2 SWAP1 PUSH2 0x79D JUMP JUMPDEST POP POP POP DUP1 PUSH1 0x2 DUP4 PUSH1 0x40 MLOAD PUSH2 0x18F SWAP2 SWAP1 PUSH2 0x8A6 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x2 DUP2 DUP1 MLOAD PUSH1 0x20 DUP2 ADD DUP3 ADD DUP1 MLOAD DUP5 DUP3 MSTORE PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP6 ADD KECCAK256 DUP2 DUP4 MSTORE DUP1 SWAP6 POP POP POP POP POP POP PUSH0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x1E1 JUMPI PUSH0 DUP1 REVERT JUMPDEST SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH0 SWAP2 POP SWAP1 POP DUP1 PUSH0 ADD SLOAD SWAP1 DUP1 PUSH1 0x1 ADD DUP1 SLOAD PUSH2 0x206 SWAP1 PUSH2 0x5D0 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x232 SWAP1 PUSH2 0x5D0 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x27D JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x254 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x27D JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x260 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP DUP3 JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x299 DUP2 PUSH2 0x287 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2B2 PUSH0 DUP4 ADD DUP5 PUSH2 0x290 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x2D2 DUP2 PUSH2 0x287 JUMP JUMPDEST DUP2 EQ PUSH2 0x2DC JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2ED DUP2 PUSH2 0x2C9 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x308 JUMPI PUSH2 0x307 PUSH2 0x2C1 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x315 DUP5 DUP3 DUP6 ADD PUSH2 0x2DF JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH2 0x36C DUP3 PUSH2 0x326 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x38B JUMPI PUSH2 0x38A PUSH2 0x336 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x39D PUSH2 0x2B8 JUMP JUMPDEST SWAP1 POP PUSH2 0x3A9 DUP3 DUP3 PUSH2 0x363 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x3C8 JUMPI PUSH2 0x3C7 PUSH2 0x336 JUMP JUMPDEST JUMPDEST PUSH2 0x3D1 DUP3 PUSH2 0x326 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x3FE PUSH2 0x3F9 DUP5 PUSH2 0x3AE JUMP JUMPDEST PUSH2 0x394 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x41A JUMPI PUSH2 0x419 PUSH2 0x322 JUMP JUMPDEST JUMPDEST PUSH2 0x425 DUP5 DUP3 DUP6 PUSH2 0x3DE JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x441 JUMPI PUSH2 0x440 PUSH2 0x31E JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x451 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x3EC JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x470 JUMPI PUSH2 0x46F PUSH2 0x2C1 JUMP JUMPDEST JUMPDEST PUSH0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x48D JUMPI PUSH2 0x48C PUSH2 0x2C5 JUMP JUMPDEST JUMPDEST PUSH2 0x499 DUP6 DUP3 DUP7 ADD PUSH2 0x42D JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x4AA DUP6 DUP3 DUP7 ADD PUSH2 0x2DF JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4C9 JUMPI PUSH2 0x4C8 PUSH2 0x2C1 JUMP JUMPDEST JUMPDEST PUSH0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x4E6 JUMPI PUSH2 0x4E5 PUSH2 0x2C5 JUMP JUMPDEST JUMPDEST PUSH2 0x4F2 DUP5 DUP3 DUP6 ADD PUSH2 0x42D JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x532 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x517 JUMP JUMPDEST PUSH0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x547 DUP3 PUSH2 0x4FB JUMP JUMPDEST PUSH2 0x551 DUP2 DUP6 PUSH2 0x505 JUMP JUMPDEST SWAP4 POP PUSH2 0x561 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x515 JUMP JUMPDEST PUSH2 0x56A DUP2 PUSH2 0x326 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x588 PUSH0 DUP4 ADD DUP6 PUSH2 0x290 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x59A DUP2 DUP5 PUSH2 0x53D JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x5E7 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x5FA JUMPI PUSH2 0x5F9 PUSH2 0x5A3 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP DUP2 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x8 DUP4 MUL PUSH2 0x65C PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH2 0x621 JUMP JUMPDEST PUSH2 0x666 DUP7 DUP4 PUSH2 0x621 JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x6A1 PUSH2 0x69C PUSH2 0x697 DUP5 PUSH2 0x287 JUMP JUMPDEST PUSH2 0x67E JUMP JUMPDEST PUSH2 0x287 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x6BA DUP4 PUSH2 0x687 JUMP JUMPDEST PUSH2 0x6CE PUSH2 0x6C6 DUP3 PUSH2 0x6A8 JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH2 0x62D JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH0 SWAP1 JUMP JUMPDEST PUSH2 0x6E2 PUSH2 0x6D6 JUMP JUMPDEST PUSH2 0x6ED DUP2 DUP5 DUP5 PUSH2 0x6B1 JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x710 JUMPI PUSH2 0x705 PUSH0 DUP3 PUSH2 0x6DA JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x6F3 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x755 JUMPI PUSH2 0x726 DUP2 PUSH2 0x600 JUMP JUMPDEST PUSH2 0x72F DUP5 PUSH2 0x612 JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x73E JUMPI DUP2 SWAP1 POP JUMPDEST PUSH2 0x752 PUSH2 0x74A DUP6 PUSH2 0x612 JUMP JUMPDEST DUP4 ADD DUP3 PUSH2 0x6F2 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x775 PUSH0 NOT DUP5 PUSH1 0x8 MUL PUSH2 0x75A JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x78D DUP4 DUP4 PUSH2 0x766 JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x7A6 DUP3 PUSH2 0x4FB JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x7BF JUMPI PUSH2 0x7BE PUSH2 0x336 JUMP JUMPDEST JUMPDEST PUSH2 0x7C9 DUP3 SLOAD PUSH2 0x5D0 JUMP JUMPDEST PUSH2 0x7D4 DUP3 DUP3 DUP6 PUSH2 0x714 JUMP JUMPDEST PUSH0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH2 0x805 JUMPI PUSH0 DUP5 ISZERO PUSH2 0x7F3 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH2 0x7FD DUP6 DUP3 PUSH2 0x782 JUMP JUMPDEST DUP7 SSTORE POP PUSH2 0x864 JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH2 0x813 DUP7 PUSH2 0x600 JUMP JUMPDEST PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x83A JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x815 JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH2 0x857 JUMPI DUP5 DUP10 ADD MLOAD PUSH2 0x853 PUSH1 0x1F DUP10 AND DUP3 PUSH2 0x766 JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x880 DUP3 PUSH2 0x4FB JUMP JUMPDEST PUSH2 0x88A DUP2 DUP6 PUSH2 0x86C JUMP JUMPDEST SWAP4 POP PUSH2 0x89A DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x515 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x8B1 DUP3 DUP5 PUSH2 0x876 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x2C 0xA8 MCOPY PUSH10 0xA0270391C39328935813 0x27 0xBA 0xEC 0xC9 0xB5 0xEA GASPRICE 0xC8 SWAP15 0xCB JUMPI 0xCA 0x23 SWAP11 0xAB 0xCF 0xD CALLDATASIZE PUSH5 0x736F6C6343 STOP ADDMOD XOR STOP CALLER ",
"sourceMap": "138:649:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@addPerson_57": {
"entryPoint": 289,
"id": 57,
"parameterSlots": 2,
"returnSlots": 0
},
"@nameToFavoriteNumber_16": {
"entryPoint": 421,
"id": 16,
"parameterSlots": 0,
"returnSlots": 0
},
"@people_12": {
"entryPoint": 466,
"id": 12,
"parameterSlots": 0,
"returnSlots": 0
},
"@retrieve_34": {
"entryPoint": 272,
"id": 34,
"parameterSlots": 0,
"returnSlots": 1
},
"@store_26": {
"entryPoint": 280,
"id": 26,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr": {
"entryPoint": 1004,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr": {
"entryPoint": 1069,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 735,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptr": {
"entryPoint": 1204,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_uint256": {
"entryPoint": 1114,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 755,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1341,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 2166,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 656,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 2214,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 671,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256_t_string_memory_ptr__to_t_uint256_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1397,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 916,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 696,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 942,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_dataslot_t_string_storage": {
"entryPoint": 1536,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 1275,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 1285,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 2156,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"clean_up_bytearray_end_slots_t_string_storage": {
"entryPoint": 1812,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"cleanup_t_uint256": {
"entryPoint": 647,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clear_storage_range_t_bytes1": {
"entryPoint": 1778,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"convert_t_uint256_to_t_uint256": {
"entryPoint": 1671,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage": {
"entryPoint": 1949,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"copy_calldata_to_memory_with_cleanup": {
"entryPoint": 990,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory_with_cleanup": {
"entryPoint": 1301,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"divide_by_32_ceil": {
"entryPoint": 1554,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 1488,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_used_part_and_set_length_of_short_byte_array": {
"entryPoint": 1922,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 867,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"identity": {
"entryPoint": 1662,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mask_bytes_dynamic": {
"entryPoint": 1894,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x22": {
"entryPoint": 1443,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 822,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"prepare_store_t_uint256": {
"entryPoint": 1704,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 798,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 802,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 709,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 705,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 806,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"shift_left_dynamic": {
"entryPoint": 1569,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"shift_right_unsigned_dynamic": {
"entryPoint": 1882,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"storage_set_to_zero_t_uint256": {
"entryPoint": 1754,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"update_byte_slice_dynamic32": {
"entryPoint": 1581,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"update_storage_value_t_uint256_to_t_uint256": {
"entryPoint": 1713,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 713,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"zero_value_for_split_t_uint256": {
"entryPoint": 1750,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nativeSrc": "0:11796:1",
"nodeType": "YulBlock",
"src": "0:11796:1",
"statements": [
{
"body": {
"nativeSrc": "52:32:1",
"nodeType": "YulBlock",
"src": "52:32:1",
"statements": [
{
"nativeSrc": "62:16:1",
"nodeType": "YulAssignment",
"src": "62:16:1",
"value": {
"name": "value",
"nativeSrc": "73:5:1",
"nodeType": "YulIdentifier",
"src": "73:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "62:7:1",
"nodeType": "YulIdentifier",
"src": "62:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nativeSrc": "7:77:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "34:5:1",
"nodeType": "YulTypedName",
"src": "34:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "44:7:1",
"nodeType": "YulTypedName",
"src": "44:7:1",
"type": ""
}
],
"src": "7:77:1"
},
{
"body": {
"nativeSrc": "155:53:1",
"nodeType": "YulBlock",
"src": "155:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "172:3:1",
"nodeType": "YulIdentifier",
"src": "172:3:1"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "195:5:1",
"nodeType": "YulIdentifier",
"src": "195:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "177:17:1",
"nodeType": "YulIdentifier",
"src": "177:17:1"
},
"nativeSrc": "177:24:1",
"nodeType": "YulFunctionCall",
"src": "177:24:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "165:6:1",
"nodeType": "YulIdentifier",
"src": "165:6:1"
},
"nativeSrc": "165:37:1",
"nodeType": "YulFunctionCall",
"src": "165:37:1"
},
"nativeSrc": "165:37:1",
"nodeType": "YulExpressionStatement",
"src": "165:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "90:118:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "143:5:1",
"nodeType": "YulTypedName",
"src": "143:5:1",
"type": ""
},
{
"name": "pos",
"nativeSrc": "150:3:1",
"nodeType": "YulTypedName",
"src": "150:3:1",
"type": ""
}
],
"src": "90:118:1"
},
{
"body": {
"nativeSrc": "312:124:1",
"nodeType": "YulBlock",
"src": "312:124:1",
"statements": [
{
"nativeSrc": "322:26:1",
"nodeType": "YulAssignment",
"src": "322:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "334:9:1",
"nodeType": "YulIdentifier",
"src": "334:9:1"
},
{
"kind": "number",
"nativeSrc": "345:2:1",
"nodeType": "YulLiteral",
"src": "345:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "330:3:1",
"nodeType": "YulIdentifier",
"src": "330:3:1"
},
"nativeSrc": "330:18:1",
"nodeType": "YulFunctionCall",
"src": "330:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "322:4:1",
"nodeType": "YulIdentifier",
"src": "322:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "402:6:1",
"nodeType": "YulIdentifier",
"src": "402:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "415:9:1",
"nodeType": "YulIdentifier",
"src": "415:9:1"
},
{
"kind": "number",
"nativeSrc": "426:1:1",
"nodeType": "YulLiteral",
"src": "426:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "411:3:1",
"nodeType": "YulIdentifier",
"src": "411:3:1"
},
"nativeSrc": "411:17:1",
"nodeType": "YulFunctionCall",
"src": "411:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "358:43:1",
"nodeType": "YulIdentifier",
"src": "358:43:1"
},
"nativeSrc": "358:71:1",
"nodeType": "YulFunctionCall",
"src": "358:71:1"
},
"nativeSrc": "358:71:1",
"nodeType": "YulExpressionStatement",
"src": "358:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nativeSrc": "214:222:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "284:9:1",
"nodeType": "YulTypedName",
"src": "284:9:1",
"type": ""
},
{
"name": "value0",
"nativeSrc": "296:6:1",
"nodeType": "YulTypedName",
"src": "296:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "307:4:1",
"nodeType": "YulTypedName",
"src": "307:4:1",
"type": ""
}
],
"src": "214:222:1"
},
{
"body": {
"nativeSrc": "482:35:1",
"nodeType": "YulBlock",
"src": "482:35:1",
"statements": [
{
"nativeSrc": "492:19:1",
"nodeType": "YulAssignment",
"src": "492:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nativeSrc": "508:2:1",
"nodeType": "YulLiteral",
"src": "508:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "502:5:1",
"nodeType": "YulIdentifier",
"src": "502:5:1"
},
"nativeSrc": "502:9:1",
"nodeType": "YulFunctionCall",
"src": "502:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nativeSrc": "492:6:1",
"nodeType": "YulIdentifier",
"src": "492:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nativeSrc": "442:75:1",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nativeSrc": "475:6:1",
"nodeType": "YulTypedName",
"src": "475:6:1",
"type": ""
}
],
"src": "442:75:1"
},
{
"body": {
"nativeSrc": "612:28:1",
"nodeType": "YulBlock",
"src": "612:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "629:1:1",
"nodeType": "YulLiteral",
"src": "629:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "632:1:1",
"nodeType": "YulLiteral",
"src": "632:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "622:6:1",
"nodeType": "YulIdentifier",
"src": "622:6:1"
},
"nativeSrc": "622:12:1",
"nodeType": "YulFunctionCall",
"src": "622:12:1"
},
"nativeSrc": "622:12:1",
"nodeType": "YulExpressionStatement",
"src": "622:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "523:117:1",
"nodeType": "YulFunctionDefinition",
"src": "523:117:1"
},
{
"body": {
"nativeSrc": "735:28:1",
"nodeType": "YulBlock",
"src": "735:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "752:1:1",
"nodeType": "YulLiteral",
"src": "752:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "755:1:1",
"nodeType": "YulLiteral",
"src": "755:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "745:6:1",
"nodeType": "YulIdentifier",
"src": "745:6:1"
},
"nativeSrc": "745:12:1",
"nodeType": "YulFunctionCall",
"src": "745:12:1"
},
"nativeSrc": "745:12:1",
"nodeType": "YulExpressionStatement",
"src": "745:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nativeSrc": "646:117:1",
"nodeType": "YulFunctionDefinition",
"src": "646:117:1"
},
{
"body": {
"nativeSrc": "812:79:1",
"nodeType": "YulBlock",
"src": "812:79:1",
"statements": [
{
"body": {
"nativeSrc": "869:16:1",
"nodeType": "YulBlock",
"src": "869:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "878:1:1",
"nodeType": "YulLiteral",
"src": "878:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "881:1:1",
"nodeType": "YulLiteral",
"src": "881:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "871:6:1",
"nodeType": "YulIdentifier",
"src": "871:6:1"
},
"nativeSrc": "871:12:1",
"nodeType": "YulFunctionCall",
"src": "871:12:1"
},
"nativeSrc": "871:12:1",
"nodeType": "YulExpressionStatement",
"src": "871:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "835:5:1",
"nodeType": "YulIdentifier",
"src": "835:5:1"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "860:5:1",
"nodeType": "YulIdentifier",
"src": "860:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "842:17:1",
"nodeType": "YulIdentifier",
"src": "842:17:1"
},
"nativeSrc": "842:24:1",
"nodeType": "YulFunctionCall",
"src": "842:24:1"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "832:2:1",
"nodeType": "YulIdentifier",
"src": "832:2:1"
},
"nativeSrc": "832:35:1",
"nodeType": "YulFunctionCall",
"src": "832:35:1"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "825:6:1",
"nodeType": "YulIdentifier",
"src": "825:6:1"
},
"nativeSrc": "825:43:1",
"nodeType": "YulFunctionCall",
"src": "825:43:1"
},
"nativeSrc": "822:63:1",
"nodeType": "YulIf",
"src": "822:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nativeSrc": "769:122:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "805:5:1",
"nodeType": "YulTypedName",
"src": "805:5:1",
"type": ""
}
],
"src": "769:122:1"
},
{
"body": {
"nativeSrc": "949:87:1",
"nodeType": "YulBlock",
"src": "949:87:1",
"statements": [
{
"nativeSrc": "959:29:1",
"nodeType": "YulAssignment",
"src": "959:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "981:6:1",
"nodeType": "YulIdentifier",
"src": "981:6:1"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "968:12:1",
"nodeType": "YulIdentifier",
"src": "968:12:1"
},
"nativeSrc": "968:20:1",
"nodeType": "YulFunctionCall",
"src": "968:20:1"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "959:5:1",
"nodeType": "YulIdentifier",
"src": "959:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nativeSrc": "1024:5:1",
"nodeType": "YulIdentifier",
"src": "1024:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nativeSrc": "997:26:1",
"nodeType": "YulIdentifier",
"src": "997:26:1"
},
"nativeSrc": "997:33:1",
"nodeType": "YulFunctionCall",
"src": "997:33:1"
},
"nativeSrc": "997:33:1",
"nodeType": "YulExpressionStatement",
"src": "997:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nativeSrc": "897:139:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "927:6:1",
"nodeType": "YulTypedName",
"src": "927:6:1",
"type": ""
},
{
"name": "end",
"nativeSrc": "935:3:1",
"nodeType": "YulTypedName",
"src": "935:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nativeSrc": "943:5:1",
"nodeType": "YulTypedName",
"src": "943:5:1",
"type": ""
}
],
"src": "897:139:1"
},
{
"body": {
"nativeSrc": "1108:263:1",
"nodeType": "YulBlock",
"src": "1108:263:1",
"statements": [
{
"body": {
"nativeSrc": "1154:83:1",
"nodeType": "YulBlock",
"src": "1154:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "1156:77:1",
"nodeType": "YulIdentifier",
"src": "1156:77:1"
},
"nativeSrc": "1156:79:1",
"nodeType": "YulFunctionCall",
"src": "1156:79:1"
},
"nativeSrc": "1156:79:1",
"nodeType": "YulExpressionStatement",
"src": "1156:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "1129:7:1",
"nodeType": "YulIdentifier",
"src": "1129:7:1"
},
{
"name": "headStart",
"nativeSrc": "1138:9:1",
"nodeType": "YulIdentifier",
"src": "1138:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "1125:3:1",
"nodeType": "YulIdentifier",
"src": "1125:3:1"
},
"nativeSrc": "1125:23:1",
"nodeType": "YulFunctionCall",
"src": "1125:23:1"
},
{
"kind": "number",
"nativeSrc": "1150:2:1",
"nodeType": "YulLiteral",
"src": "1150:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "1121:3:1",
"nodeType": "YulIdentifier",
"src": "1121:3:1"
},
"nativeSrc": "1121:32:1",
"nodeType": "YulFunctionCall",
"src": "1121:32:1"
},
"nativeSrc": "1118:119:1",
"nodeType": "YulIf",
"src": "1118:119:1"
},
{
"nativeSrc": "1247:117:1",
"nodeType": "YulBlock",
"src": "1247:117:1",
"statements": [
{
"nativeSrc": "1262:15:1",
"nodeType": "YulVariableDeclaration",
"src": "1262:15:1",
"value": {
"kind": "number",
"nativeSrc": "1276:1:1",
"nodeType": "YulLiteral",
"src": "1276:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "1266:6:1",
"nodeType": "YulTypedName",
"src": "1266:6:1",
"type": ""
}
]
},
{
"nativeSrc": "1291:63:1",
"nodeType": "YulAssignment",
"src": "1291:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "1326:9:1",
"nodeType": "YulIdentifier",
"src": "1326:9:1"
},
{
"name": "offset",
"nativeSrc": "1337:6:1",
"nodeType": "YulIdentifier",
"src": "1337:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1322:3:1",
"nodeType": "YulIdentifier",
"src": "1322:3:1"
},
"nativeSrc": "1322:22:1",
"nodeType": "YulFunctionCall",
"src": "1322:22:1"
},
{
"name": "dataEnd",
"nativeSrc": "1346:7:1",
"nodeType": "YulIdentifier",
"src": "1346:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nativeSrc": "1301:20:1",
"nodeType": "YulIdentifier",
"src": "1301:20:1"
},
"nativeSrc": "1301:53:1",
"nodeType": "YulFunctionCall",
"src": "1301:53:1"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "1291:6:1",
"nodeType": "YulIdentifier",
"src": "1291:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nativeSrc": "1042:329:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "1078:9:1",
"nodeType": "YulTypedName",
"src": "1078:9:1",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "1089:7:1",
"nodeType": "YulTypedName",
"src": "1089:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "1101:6:1",
"nodeType": "YulTypedName",
"src": "1101:6:1",
"type": ""
}
],
"src": "1042:329:1"
},
{
"body": {
"nativeSrc": "1466:28:1",
"nodeType": "YulBlock",
"src": "1466:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1483:1:1",
"nodeType": "YulLiteral",
"src": "1483:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "1486:1:1",
"nodeType": "YulLiteral",
"src": "1486:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "1476:6:1",
"nodeType": "YulIdentifier",
"src": "1476:6:1"
},
"nativeSrc": "1476:12:1",
"nodeType": "YulFunctionCall",
"src": "1476:12:1"
},
"nativeSrc": "1476:12:1",
"nodeType": "YulExpressionStatement",
"src": "1476:12:1"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nativeSrc": "1377:117:1",
"nodeType": "YulFunctionDefinition",
"src": "1377:117:1"
},
{
"body": {
"nativeSrc": "1589:28:1",
"nodeType": "YulBlock",
"src": "1589:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1606:1:1",
"nodeType": "YulLiteral",
"src": "1606:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "1609:1:1",
"nodeType": "YulLiteral",
"src": "1609:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "1599:6:1",
"nodeType": "YulIdentifier",
"src": "1599:6:1"
},
"nativeSrc": "1599:12:1",
"nodeType": "YulFunctionCall",
"src": "1599:12:1"
},
"nativeSrc": "1599:12:1",
"nodeType": "YulExpressionStatement",
"src": "1599:12:1"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nativeSrc": "1500:117:1",
"nodeType": "YulFunctionDefinition",
"src": "1500:117:1"
},
{
"body": {
"nativeSrc": "1671:54:1",
"nodeType": "YulBlock",
"src": "1671:54:1",
"statements": [
{
"nativeSrc": "1681:38:1",
"nodeType": "YulAssignment",
"src": "1681:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "1699:5:1",
"nodeType": "YulIdentifier",
"src": "1699:5:1"
},
{
"kind": "number",
"nativeSrc": "1706:2:1",
"nodeType": "YulLiteral",
"src": "1706:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1695:3:1",
"nodeType": "YulIdentifier",
"src": "1695:3:1"
},
"nativeSrc": "1695:14:1",
"nodeType": "YulFunctionCall",
"src": "1695:14:1"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "1715:2:1",
"nodeType": "YulLiteral",
"src": "1715:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nativeSrc": "1711:3:1",
"nodeType": "YulIdentifier",
"src": "1711:3:1"
},
"nativeSrc": "1711:7:1",
"nodeType": "YulFunctionCall",
"src": "1711:7:1"
}
],
"functionName": {
"name": "and",
"nativeSrc": "1691:3:1",
"nodeType": "YulIdentifier",
"src": "1691:3:1"
},
"nativeSrc": "1691:28:1",
"nodeType": "YulFunctionCall",
"src": "1691:28:1"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "1681:6:1",
"nodeType": "YulIdentifier",
"src": "1681:6:1"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nativeSrc": "1623:102:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1654:5:1",
"nodeType": "YulTypedName",
"src": "1654:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "1664:6:1",
"nodeType": "YulTypedName",
"src": "1664:6:1",
"type": ""
}
],
"src": "1623:102:1"
},
{
"body": {
"nativeSrc": "1759:152:1",
"nodeType": "YulBlock",
"src": "1759:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1776:1:1",
"nodeType": "YulLiteral",
"src": "1776:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "1779:77:1",
"nodeType": "YulLiteral",
"src": "1779:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "1769:6:1",
"nodeType": "YulIdentifier",
"src": "1769:6:1"
},
"nativeSrc": "1769:88:1",
"nodeType": "YulFunctionCall",
"src": "1769:88:1"
},
"nativeSrc": "1769:88:1",
"nodeType": "YulExpressionStatement",
"src": "1769:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1873:1:1",
"nodeType": "YulLiteral",
"src": "1873:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "1876:4:1",
"nodeType": "YulLiteral",
"src": "1876:4:1",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "1866:6:1",
"nodeType": "YulIdentifier",
"src": "1866:6:1"
},
"nativeSrc": "1866:15:1",
"nodeType": "YulFunctionCall",
"src": "1866:15:1"
},
"nativeSrc": "1866:15:1",
"nodeType": "YulExpressionStatement",
"src": "1866:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1897:1:1",
"nodeType": "YulLiteral",
"src": "1897:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "1900:4:1",
"nodeType": "YulLiteral",
"src": "1900:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "1890:6:1",
"nodeType": "YulIdentifier",
"src": "1890:6:1"
},
"nativeSrc": "1890:15:1",
"nodeType": "YulFunctionCall",
"src": "1890:15:1"
},
"nativeSrc": "1890:15:1",
"nodeType": "YulExpressionStatement",
"src": "1890:15:1"
}
]
},
"name": "panic_error_0x41",
"nativeSrc": "1731:180:1",
"nodeType": "YulFunctionDefinition",
"src": "1731:180:1"
},
{
"body": {
"nativeSrc": "1960:238:1",
"nodeType": "YulBlock",
"src": "1960:238:1",
"statements": [
{
"nativeSrc": "1970:58:1",
"nodeType": "YulVariableDeclaration",
"src": "1970:58:1",
"value": {
"arguments": [
{
"name": "memPtr",
"nativeSrc": "1992:6:1",
"nodeType": "YulIdentifier",
"src": "1992:6:1"
},
{
"arguments": [
{
"name": "size",
"nativeSrc": "2022:4:1",
"nodeType": "YulIdentifier",
"src": "2022:4:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nativeSrc": "2000:21:1",
"nodeType": "YulIdentifier",
"src": "2000:21:1"
},
"nativeSrc": "2000:27:1",
"nodeType": "YulFunctionCall",
"src": "2000:27:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1988:3:1",
"nodeType": "YulIdentifier",
"src": "1988:3:1"
},
"nativeSrc": "1988:40:1",
"nodeType": "YulFunctionCall",
"src": "1988:40:1"
},
"variables": [
{
"name": "newFreePtr",
"nativeSrc": "1974:10:1",
"nodeType": "YulTypedName",
"src": "1974:10:1",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "2139:22:1",
"nodeType": "YulBlock",
"src": "2139:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nativeSrc": "2141:16:1",
"nodeType": "YulIdentifier",
"src": "2141:16:1"
},
"nativeSrc": "2141:18:1",
"nodeType": "YulFunctionCall",
"src": "2141:18:1"
},
"nativeSrc": "2141:18:1",
"nodeType": "YulExpressionStatement",
"src": "2141:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nativeSrc": "2082:10:1",
"nodeType": "YulIdentifier",
"src": "2082:10:1"
},
{
"kind": "number",
"nativeSrc": "2094:18:1",
"nodeType": "YulLiteral",
"src": "2094:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "2079:2:1",
"nodeType": "YulIdentifier",
"src": "2079:2:1"
},
"nativeSrc": "2079:34:1",
"nodeType": "YulFunctionCall",
"src": "2079:34:1"
},
{
"arguments": [
{
"name": "newFreePtr",
"nativeSrc": "2118:10:1",
"nodeType": "YulIdentifier",
"src": "2118:10:1"
},
{
"name": "memPtr",
"nativeSrc": "2130:6:1",
"nodeType": "YulIdentifier",
"src": "2130:6:1"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "2115:2:1",
"nodeType": "YulIdentifier",
"src": "2115:2:1"
},
"nativeSrc": "2115:22:1",
"nodeType": "YulFunctionCall",
"src": "2115:22:1"
}
],
"functionName": {
"name": "or",
"nativeSrc": "2076:2:1",
"nodeType": "YulIdentifier",
"src": "2076:2:1"
},
"nativeSrc": "2076:62:1",
"nodeType": "YulFunctionCall",
"src": "2076:62:1"
},
"nativeSrc": "2073:88:1",
"nodeType": "YulIf",
"src": "2073:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "2177:2:1",
"nodeType": "YulLiteral",
"src": "2177:2:1",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nativeSrc": "2181:10:1",
"nodeType": "YulIdentifier",
"src": "2181:10:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "2170:6:1",
"nodeType": "YulIdentifier",
"src": "2170:6:1"
},
"nativeSrc": "2170:22:1",
"nodeType": "YulFunctionCall",
"src": "2170:22:1"
},
"nativeSrc": "2170:22:1",
"nodeType": "YulExpressionStatement",
"src": "2170:22:1"
}
]
},
"name": "finalize_allocation",
"nativeSrc": "1917:281:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "1946:6:1",
"nodeType": "YulTypedName",
"src": "1946:6:1",
"type": ""
},
{
"name": "size",
"nativeSrc": "1954:4:1",
"nodeType": "YulTypedName",
"src": "1954:4:1",
"type": ""
}
],
"src": "1917:281:1"
},
{
"body": {
"nativeSrc": "2245:88:1",
"nodeType": "YulBlock",
"src": "2245:88:1",
"statements": [
{
"nativeSrc": "2255:30:1",
"nodeType": "YulAssignment",
"src": "2255:30:1",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nativeSrc": "2265:18:1",
"nodeType": "YulIdentifier",
"src": "2265:18:1"
},
"nativeSrc": "2265:20:1",
"nodeType": "YulFunctionCall",
"src": "2265:20:1"
},
"variableNames": [
{
"name": "memPtr",
"nativeSrc": "2255:6:1",
"nodeType": "YulIdentifier",
"src": "2255:6:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nativeSrc": "2314:6:1",
"nodeType": "YulIdentifier",
"src": "2314:6:1"
},
{
"name": "size",
"nativeSrc": "2322:4:1",
"nodeType": "YulIdentifier",
"src": "2322:4:1"
}
],
"functionName": {
"name": "finalize_allocation",
"nativeSrc": "2294:19:1",
"nodeType": "YulIdentifier",
"src": "2294:19:1"
},
"nativeSrc": "2294:33:1",
"nodeType": "YulFunctionCall",
"src": "2294:33:1"
},
"nativeSrc": "2294:33:1",
"nodeType": "YulExpressionStatement",
"src": "2294:33:1"
}
]
},
"name": "allocate_memory",
"nativeSrc": "2204:129:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nativeSrc": "2229:4:1",
"nodeType": "YulTypedName",
"src": "2229:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nativeSrc": "2238:6:1",
"nodeType": "YulTypedName",
"src": "2238:6:1",
"type": ""
}
],
"src": "2204:129:1"
},
{
"body": {
"nativeSrc": "2406:241:1",
"nodeType": "YulBlock",
"src": "2406:241:1",
"statements": [
{
"body": {
"nativeSrc": "2511:22:1",
"nodeType": "YulBlock",
"src": "2511:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nativeSrc": "2513:16:1",
"nodeType": "YulIdentifier",
"src": "2513:16:1"
},
"nativeSrc": "2513:18:1",
"nodeType": "YulFunctionCall",
"src": "2513:18:1"
},
"nativeSrc": "2513:18:1",
"nodeType": "YulExpressionStatement",
"src": "2513:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nativeSrc": "2483:6:1",
"nodeType": "YulIdentifier",
"src": "2483:6:1"
},
{
"kind": "number",
"nativeSrc": "2491:18:1",
"nodeType": "YulLiteral",
"src": "2491:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "2480:2:1",
"nodeType": "YulIdentifier",
"src": "2480:2:1"
},
"nativeSrc": "2480:30:1",
"nodeType": "YulFunctionCall",
"src": "2480:30:1"
},
"nativeSrc": "2477:56:1",
"nodeType": "YulIf",
"src": "2477:56:1"
},
{
"nativeSrc": "2543:37:1",
"nodeType": "YulAssignment",
"src": "2543:37:1",
"value": {
"arguments": [
{
"name": "length",
"nativeSrc": "2573:6:1",
"nodeType": "YulIdentifier",
"src": "2573:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nativeSrc": "2551:21:1",
"nodeType": "YulIdentifier",
"src": "2551:21:1"
},
"nativeSrc": "2551:29:1",
"nodeType": "YulFunctionCall",
"src": "2551:29:1"
},
"variableNames": [
{
"name": "size",
"nativeSrc": "2543:4:1",
"nodeType": "YulIdentifier",
"src": "2543:4:1"
}
]
},
{
"nativeSrc": "2617:23:1",
"nodeType": "YulAssignment",
"src": "2617:23:1",
"value": {
"arguments": [
{
"name": "size",
"nativeSrc": "2629:4:1",
"nodeType": "YulIdentifier",
"src": "2629:4:1"
},
{
"kind": "number",
"nativeSrc": "2635:4:1",
"nodeType": "YulLiteral",
"src": "2635:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2625:3:1",
"nodeType": "YulIdentifier",
"src": "2625:3:1"
},
"nativeSrc": "2625:15:1",
"nodeType": "YulFunctionCall",
"src": "2625:15:1"
},
"variableNames": [
{
"name": "size",
"nativeSrc": "2617:4:1",
"nodeType": "YulIdentifier",
"src": "2617:4:1"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nativeSrc": "2339:308:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nativeSrc": "2390:6:1",
"nodeType": "YulTypedName",
"src": "2390:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nativeSrc": "2401:4:1",
"nodeType": "YulTypedName",
"src": "2401:4:1",
"type": ""
}
],
"src": "2339:308:1"
},
{
"body": {
"nativeSrc": "2717:82:1",
"nodeType": "YulBlock",
"src": "2717:82:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nativeSrc": "2740:3:1",
"nodeType": "YulIdentifier",
"src": "2740:3:1"
},
{
"name": "src",
"nativeSrc": "2745:3:1",
"nodeType": "YulIdentifier",
"src": "2745:3:1"
},
{
"name": "length",
"nativeSrc": "2750:6:1",
"nodeType": "YulIdentifier",
"src": "2750:6:1"
}
],
"functionName": {
"name": "calldatacopy",
"nativeSrc": "2727:12:1",
"nodeType": "YulIdentifier",
"src": "2727:12:1"
},
"nativeSrc": "2727:30:1",
"nodeType": "YulFunctionCall",
"src": "2727:30:1"
},
"nativeSrc": "2727:30:1",
"nodeType": "YulExpressionStatement",
"src": "2727:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nativeSrc": "2777:3:1",
"nodeType": "YulIdentifier",
"src": "2777:3:1"
},
{
"name": "length",
"nativeSrc": "2782:6:1",
"nodeType": "YulIdentifier",
"src": "2782:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2773:3:1",
"nodeType": "YulIdentifier",
"src": "2773:3:1"
},
"nativeSrc": "2773:16:1",
"nodeType": "YulFunctionCall",
"src": "2773:16:1"
},
{
"kind": "number",
"nativeSrc": "2791:1:1",
"nodeType": "YulLiteral",
"src": "2791:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "2766:6:1",
"nodeType": "YulIdentifier",
"src": "2766:6:1"
},
"nativeSrc": "2766:27:1",
"nodeType": "YulFunctionCall",
"src": "2766:27:1"
},
"nativeSrc": "2766:27:1",
"nodeType": "YulExpressionStatement",
"src": "2766:27:1"
}
]
},
"name": "copy_calldata_to_memory_with_cleanup",
"nativeSrc": "2653:146:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nativeSrc": "2699:3:1",
"nodeType": "YulTypedName",
"src": "2699:3:1",
"type": ""
},
{
"name": "dst",
"nativeSrc": "2704:3:1",
"nodeType": "YulTypedName",
"src": "2704:3:1",
"type": ""
},
{
"name": "length",
"nativeSrc": "2709:6:1",
"nodeType": "YulTypedName",
"src": "2709:6:1",
"type": ""
}
],
"src": "2653:146:1"
},
{
"body": {
"nativeSrc": "2889:341:1",
"nodeType": "YulBlock",
"src": "2889:341:1",
"statements": [
{
"nativeSrc": "2899:75:1",
"nodeType": "YulAssignment",
"src": "2899:75:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nativeSrc": "2966:6:1",
"nodeType": "YulIdentifier",
"src": "2966:6:1"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nativeSrc": "2924:41:1",
"nodeType": "YulIdentifier",
"src": "2924:41:1"
},
"nativeSrc": "2924:49:1",
"nodeType": "YulFunctionCall",
"src": "2924:49:1"
}
],
"functionName": {
"name": "allocate_memory",
"nativeSrc": "2908:15:1",
"nodeType": "YulIdentifier",
"src": "2908:15:1"
},
"nativeSrc": "2908:66:1",
"nodeType": "YulFunctionCall",
"src": "2908:66:1"
},
"variableNames": [
{
"name": "array",
"nativeSrc": "2899:5:1",
"nodeType": "YulIdentifier",
"src": "2899:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nativeSrc": "2990:5:1",
"nodeType": "YulIdentifier",
"src": "2990:5:1"
},
{
"name": "length",
"nativeSrc": "2997:6:1",
"nodeType": "YulIdentifier",
"src": "2997:6:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "2983:6:1",
"nodeType": "YulIdentifier",
"src": "2983:6:1"
},
"nativeSrc": "2983:21:1",
"nodeType": "YulFunctionCall",
"src": "2983:21:1"
},
"nativeSrc": "2983:21:1",
"nodeType": "YulExpressionStatement",
"src": "2983:21:1"
},
{
"nativeSrc": "3013:27:1",
"nodeType": "YulVariableDeclaration",
"src": "3013:27:1",
"value": {
"arguments": [
{
"name": "array",
"nativeSrc": "3028:5:1",
"nodeType": "YulIdentifier",
"src": "3028:5:1"
},
{
"kind": "number",
"nativeSrc": "3035:4:1",
"nodeType": "YulLiteral",
"src": "3035:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3024:3:1",
"nodeType": "YulIdentifier",
"src": "3024:3:1"
},
"nativeSrc": "3024:16:1",
"nodeType": "YulFunctionCall",
"src": "3024:16:1"
},
"variables": [
{
"name": "dst",
"nativeSrc": "3017:3:1",
"nodeType": "YulTypedName",
"src": "3017:3:1",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "3078:83:1",
"nodeType": "YulBlock",
"src": "3078:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nativeSrc": "3080:77:1",
"nodeType": "YulIdentifier",
"src": "3080:77:1"
},
"nativeSrc": "3080:79:1",
"nodeType": "YulFunctionCall",
"src": "3080:79:1"
},
"nativeSrc": "3080:79:1",
"nodeType": "YulExpressionStatement",
"src": "3080:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nativeSrc": "3059:3:1",
"nodeType": "YulIdentifier",
"src": "3059:3:1"
},
{
"name": "length",
"nativeSrc": "3064:6:1",
"nodeType": "YulIdentifier",
"src": "3064:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3055:3:1",
"nodeType": "YulIdentifier",
"src": "3055:3:1"
},
"nativeSrc": "3055:16:1",
"nodeType": "YulFunctionCall",
"src": "3055:16:1"
},
{
"name": "end",
"nativeSrc": "3073:3:1",
"nodeType": "YulIdentifier",
"src": "3073:3:1"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "3052:2:1",
"nodeType": "YulIdentifier",
"src": "3052:2:1"
},
"nativeSrc": "3052:25:1",
"nodeType": "YulFunctionCall",
"src": "3052:25:1"
},
"nativeSrc": "3049:112:1",
"nodeType": "YulIf",
"src": "3049:112:1"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nativeSrc": "3207:3:1",
"nodeType": "YulIdentifier",
"src": "3207:3:1"
},
{
"name": "dst",
"nativeSrc": "3212:3:1",
"nodeType": "YulIdentifier",
"src": "3212:3:1"
},
{
"name": "length",
"nativeSrc": "3217:6:1",
"nodeType": "YulIdentifier",
"src": "3217:6:1"
}
],
"functionName": {
"name": "copy_calldata_to_memory_with_cleanup",
"nativeSrc": "3170:36:1",
"nodeType": "YulIdentifier",
"src": "3170:36:1"
},
"nativeSrc": "3170:54:1",
"nodeType": "YulFunctionCall",
"src": "3170:54:1"
},
"nativeSrc": "3170:54:1",
"nodeType": "YulExpressionStatement",
"src": "3170:54:1"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nativeSrc": "2805:425:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nativeSrc": "2862:3:1",
"nodeType": "YulTypedName",
"src": "2862:3:1",
"type": ""
},
{
"name": "length",
"nativeSrc": "2867:6:1",
"nodeType": "YulTypedName",
"src": "2867:6:1",
"type": ""
},
{
"name": "end",
"nativeSrc": "2875:3:1",
"nodeType": "YulTypedName",
"src": "2875:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nativeSrc": "2883:5:1",
"nodeType": "YulTypedName",
"src": "2883:5:1",
"type": ""
}
],
"src": "2805:425:1"
},
{
"body": {
"nativeSrc": "3312:278:1",
"nodeType": "YulBlock",
"src": "3312:278:1",
"statements": [
{
"body": {
"nativeSrc": "3361:83:1",
"nodeType": "YulBlock",
"src": "3361:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nativeSrc": "3363:77:1",
"nodeType": "YulIdentifier",
"src": "3363:77:1"
},
"nativeSrc": "3363:79:1",
"nodeType": "YulFunctionCall",
"src": "3363:79:1"
},
"nativeSrc": "3363:79:1",
"nodeType": "YulExpressionStatement",
"src": "3363:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nativeSrc": "3340:6:1",
"nodeType": "YulIdentifier",
"src": "3340:6:1"
},
{
"kind": "number",
"nativeSrc": "3348:4:1",
"nodeType": "YulLiteral",
"src": "3348:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3336:3:1",
"nodeType": "YulIdentifier",
"src": "3336:3:1"
},
"nativeSrc": "3336:17:1",
"nodeType": "YulFunctionCall",
"src": "3336:17:1"
},
{
"name": "end",
"nativeSrc": "3355:3:1",
"nodeType": "YulIdentifier",
"src": "3355:3:1"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "3332:3:1",
"nodeType": "YulIdentifier",
"src": "3332:3:1"
},
"nativeSrc": "3332:27:1",
"nodeType": "YulFunctionCall",
"src": "3332:27:1"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "3325:6:1",
"nodeType": "YulIdentifier",
"src": "3325:6:1"
},
"nativeSrc": "3325:35:1",
"nodeType": "YulFunctionCall",
"src": "3325:35:1"
},
"nativeSrc": "3322:122:1",
"nodeType": "YulIf",
"src": "3322:122:1"
},
{
"nativeSrc": "3453:34:1",
"nodeType": "YulVariableDeclaration",
"src": "3453:34:1",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "3480:6:1",
"nodeType": "YulIdentifier",
"src": "3480:6:1"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "3467:12:1",
"nodeType": "YulIdentifier",
"src": "3467:12:1"
},
"nativeSrc": "3467:20:1",
"nodeType": "YulFunctionCall",
"src": "3467:20:1"
},
"variables": [
{
"name": "length",
"nativeSrc": "3457:6:1",
"nodeType": "YulTypedName",
"src": "3457:6:1",
"type": ""
}
]
},
{
"nativeSrc": "3496:88:1",
"nodeType": "YulAssignment",
"src": "3496:88:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nativeSrc": "3557:6:1",
"nodeType": "YulIdentifier",
"src": "3557:6:1"
},
{
"kind": "number",
"nativeSrc": "3565:4:1",
"nodeType": "YulLiteral",
"src": "3565:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3553:3:1",
"nodeType": "YulIdentifier",
"src": "3553:3:1"
},
"nativeSrc": "3553:17:1",
"nodeType": "YulFunctionCall",
"src": "3553:17:1"
},
{
"name": "length",
"nativeSrc": "3572:6:1",
"nodeType": "YulIdentifier",
"src": "3572:6:1"
},
{
"name": "end",
"nativeSrc": "3580:3:1",
"nodeType": "YulIdentifier",
"src": "3580:3:1"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nativeSrc": "3505:47:1",
"nodeType": "YulIdentifier",
"src": "3505:47:1"
},
"nativeSrc": "3505:79:1",
"nodeType": "YulFunctionCall",
"src": "3505:79:1"
},
"variableNames": [
{
"name": "array",
"nativeSrc": "3496:5:1",
"nodeType": "YulIdentifier",
"src": "3496:5:1"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nativeSrc": "3250:340:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "3290:6:1",
"nodeType": "YulTypedName",
"src": "3290:6:1",
"type": ""
},
{
"name": "end",
"nativeSrc": "3298:3:1",
"nodeType": "YulTypedName",
"src": "3298:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nativeSrc": "3306:5:1",
"nodeType": "YulTypedName",
"src": "3306:5:1",
"type": ""
}
],
"src": "3250:340:1"
},
{
"body": {
"nativeSrc": "3689:561:1",
"nodeType": "YulBlock",
"src": "3689:561:1",
"statements": [
{
"body": {
"nativeSrc": "3735:83:1",
"nodeType": "YulBlock",
"src": "3735:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "3737:77:1",
"nodeType": "YulIdentifier",
"src": "3737:77:1"
},
"nativeSrc": "3737:79:1",
"nodeType": "YulFunctionCall",
"src": "3737:79:1"
},
"nativeSrc": "3737:79:1",
"nodeType": "YulExpressionStatement",
"src": "3737:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "3710:7:1",
"nodeType": "YulIdentifier",
"src": "3710:7:1"
},
{
"name": "headStart",
"nativeSrc": "3719:9:1",
"nodeType": "YulIdentifier",
"src": "3719:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "3706:3:1",
"nodeType": "YulIdentifier",
"src": "3706:3:1"
},
"nativeSrc": "3706:23:1",
"nodeType": "YulFunctionCall",
"src": "3706:23:1"
},
{
"kind": "number",
"nativeSrc": "3731:2:1",
"nodeType": "YulLiteral",
"src": "3731:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "3702:3:1",
"nodeType": "YulIdentifier",
"src": "3702:3:1"
},
"nativeSrc": "3702:32:1",
"nodeType": "YulFunctionCall",
"src": "3702:32:1"
},
"nativeSrc": "3699:119:1",
"nodeType": "YulIf",
"src": "3699:119:1"
},
{
"nativeSrc": "3828:287:1",
"nodeType": "YulBlock",
"src": "3828:287:1",
"statements": [
{
"nativeSrc": "3843:45:1",
"nodeType": "YulVariableDeclaration",
"src": "3843:45:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "3874:9:1",
"nodeType": "YulIdentifier",
"src": "3874:9:1"
},
{
"kind": "number",
"nativeSrc": "3885:1:1",
"nodeType": "YulLiteral",
"src": "3885:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3870:3:1",
"nodeType": "YulIdentifier",
"src": "3870:3:1"
},
"nativeSrc": "3870:17:1",
"nodeType": "YulFunctionCall",
"src": "3870:17:1"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "3857:12:1",
"nodeType": "YulIdentifier",
"src": "3857:12:1"
},
"nativeSrc": "3857:31:1",
"nodeType": "YulFunctionCall",
"src": "3857:31:1"
},
"variables": [
{
"name": "offset",
"nativeSrc": "3847:6:1",
"nodeType": "YulTypedName",
"src": "3847:6:1",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "3935:83:1",
"nodeType": "YulBlock",
"src": "3935:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nativeSrc": "3937:77:1",
"nodeType": "YulIdentifier",
"src": "3937:77:1"
},
"nativeSrc": "3937:79:1",
"nodeType": "YulFunctionCall",
"src": "3937:79:1"
},
"nativeSrc": "3937:79:1",
"nodeType": "YulExpressionStatement",
"src": "3937:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nativeSrc": "3907:6:1",
"nodeType": "YulIdentifier",
"src": "3907:6:1"
},
{
"kind": "number",
"nativeSrc": "3915:18:1",
"nodeType": "YulLiteral",
"src": "3915:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "3904:2:1",
"nodeType": "YulIdentifier",
"src": "3904:2:1"
},
"nativeSrc": "3904:30:1",
"nodeType": "YulFunctionCall",
"src": "3904:30:1"
},
"nativeSrc": "3901:117:1",
"nodeType": "YulIf",
"src": "3901:117:1"
},
{
"nativeSrc": "4032:73:1",
"nodeType": "YulAssignment",
"src": "4032:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "4077:9:1",
"nodeType": "YulIdentifier",
"src": "4077:9:1"
},
{
"name": "offset",
"nativeSrc": "4088:6:1",
"nodeType": "YulIdentifier",
"src": "4088:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4073:3:1",
"nodeType": "YulIdentifier",
"src": "4073:3:1"
},
"nativeSrc": "4073:22:1",
"nodeType": "YulFunctionCall",
"src": "4073:22:1"
},
{
"name": "dataEnd",
"nativeSrc": "4097:7:1",
"nodeType": "YulIdentifier",
"src": "4097:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nativeSrc": "4042:30:1",
"nodeType": "YulIdentifier",
"src": "4042:30:1"
},
"nativeSrc": "4042:63:1",
"nodeType": "YulFunctionCall",
"src": "4042:63:1"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "4032:6:1",
"nodeType": "YulIdentifier",
"src": "4032:6:1"
}
]
}
]
},
{
"nativeSrc": "4125:118:1",
"nodeType": "YulBlock",
"src": "4125:118:1",
"statements": [
{
"nativeSrc": "4140:16:1",
"nodeType": "YulVariableDeclaration",
"src": "4140:16:1",
"value": {
"kind": "number",
"nativeSrc": "4154:2:1",
"nodeType": "YulLiteral",
"src": "4154:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nativeSrc": "4144:6:1",
"nodeType": "YulTypedName",
"src": "4144:6:1",
"type": ""
}
]
},
{
"nativeSrc": "4170:63:1",
"nodeType": "YulAssignment",
"src": "4170:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "4205:9:1",
"nodeType": "YulIdentifier",
"src": "4205:9:1"
},
{
"name": "offset",
"nativeSrc": "4216:6:1",
"nodeType": "YulIdentifier",
"src": "4216:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4201:3:1",
"nodeType": "YulIdentifier",
"src": "4201:3:1"
},
"nativeSrc": "4201:22:1",
"nodeType": "YulFunctionCall",
"src": "4201:22:1"
},
{
"name": "dataEnd",
"nativeSrc": "4225:7:1",
"nodeType": "YulIdentifier",
"src": "4225:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nativeSrc": "4180:20:1",
"nodeType": "YulIdentifier",
"src": "4180:20:1"
},
"nativeSrc": "4180:53:1",
"nodeType": "YulFunctionCall",
"src": "4180:53:1"
},
"variableNames": [
{
"name": "value1",
"nativeSrc": "4170:6:1",
"nodeType": "YulIdentifier",
"src": "4170:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_uint256",
"nativeSrc": "3596:654:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "3651:9:1",
"nodeType": "YulTypedName",
"src": "3651:9:1",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "3662:7:1",
"nodeType": "YulTypedName",
"src": "3662:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "3674:6:1",
"nodeType": "YulTypedName",
"src": "3674:6:1",
"type": ""
},
{
"name": "value1",
"nativeSrc": "3682:6:1",
"nodeType": "YulTypedName",
"src": "3682:6:1",
"type": ""
}
],
"src": "3596:654:1"
},
{
"body": {
"nativeSrc": "4332:433:1",
"nodeType": "YulBlock",
"src": "4332:433:1",
"statements": [
{
"body": {
"nativeSrc": "4378:83:1",
"nodeType": "YulBlock",
"src": "4378:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "4380:77:1",
"nodeType": "YulIdentifier",
"src": "4380:77:1"
},
"nativeSrc": "4380:79:1",
"nodeType": "YulFunctionCall",
"src": "4380:79:1"
},
"nativeSrc": "4380:79:1",
"nodeType": "YulExpressionStatement",
"src": "4380:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "4353:7:1",
"nodeType": "YulIdentifier",
"src": "4353:7:1"
},
{
"name": "headStart",
"nativeSrc": "4362:9:1",
"nodeType": "YulIdentifier",
"src": "4362:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "4349:3:1",
"nodeType": "YulIdentifier",
"src": "4349:3:1"
},
"nativeSrc": "4349:23:1",
"nodeType": "YulFunctionCall",
"src": "4349:23:1"
},
{
"kind": "number",
"nativeSrc": "4374:2:1",
"nodeType": "YulLiteral",
"src": "4374:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "4345:3:1",
"nodeType": "YulIdentifier",
"src": "4345:3:1"
},
"nativeSrc": "4345:32:1",
"nodeType": "YulFunctionCall",
"src": "4345:32:1"
},
"nativeSrc": "4342:119:1",
"nodeType": "YulIf",
"src": "4342:119:1"
},
{
"nativeSrc": "4471:287:1",
"nodeType": "YulBlock",
"src": "4471:287:1",
"statements": [
{
"nativeSrc": "4486:45:1",
"nodeType": "YulVariableDeclaration",
"src": "4486:45:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "4517:9:1",
"nodeType": "YulIdentifier",
"src": "4517:9:1"
},
{
"kind": "number",
"nativeSrc": "4528:1:1",
"nodeType": "YulLiteral",
"src": "4528:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4513:3:1",
"nodeType": "YulIdentifier",
"src": "4513:3:1"
},
"nativeSrc": "4513:17:1",
"nodeType": "YulFunctionCall",
"src": "4513:17:1"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "4500:12:1",
"nodeType": "YulIdentifier",
"src": "4500:12:1"
},
"nativeSrc": "4500:31:1",
"nodeType": "YulFunctionCall",
"src": "4500:31:1"
},
"variables": [
{
"name": "offset",
"nativeSrc": "4490:6:1",
"nodeType": "YulTypedName",
"src": "4490:6:1",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "4578:83:1",
"nodeType": "YulBlock",
"src": "4578:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nativeSrc": "4580:77:1",
"nodeType": "YulIdentifier",
"src": "4580:77:1"
},
"nativeSrc": "4580:79:1",
"nodeType": "YulFunctionCall",
"src": "4580:79:1"
},
"nativeSrc": "4580:79:1",
"nodeType": "YulExpressionStatement",
"src": "4580:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nativeSrc": "4550:6:1",
"nodeType": "YulIdentifier",
"src": "4550:6:1"
},
{
"kind": "number",
"nativeSrc": "4558:18:1",
"nodeType": "YulLiteral",
"src": "4558:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "4547:2:1",
"nodeType": "YulIdentifier",
"src": "4547:2:1"
},
"nativeSrc": "4547:30:1",
"nodeType": "YulFunctionCall",
"src": "4547:30:1"
},
"nativeSrc": "4544:117:1",
"nodeType": "YulIf",
"src": "4544:117:1"
},
{
"nativeSrc": "4675:73:1",
"nodeType": "YulAssignment",
"src": "4675:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "4720:9:1",
"nodeType": "YulIdentifier",
"src": "4720:9:1"
},
{
"name": "offset",
"nativeSrc": "4731:6:1",
"nodeType": "YulIdentifier",
"src": "4731:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4716:3:1",
"nodeType": "YulIdentifier",
"src": "4716:3:1"
},
"nativeSrc": "4716:22:1",
"nodeType": "YulFunctionCall",
"src": "4716:22:1"
},
{
"name": "dataEnd",
"nativeSrc": "4740:7:1",
"nodeType": "YulIdentifier",
"src": "4740:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nativeSrc": "4685:30:1",
"nodeType": "YulIdentifier",
"src": "4685:30:1"
},
"nativeSrc": "4685:63:1",
"nodeType": "YulFunctionCall",
"src": "4685:63:1"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "4675:6:1",
"nodeType": "YulIdentifier",
"src": "4675:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptr",
"nativeSrc": "4256:509:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "4302:9:1",
"nodeType": "YulTypedName",
"src": "4302:9:1",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "4313:7:1",
"nodeType": "YulTypedName",
"src": "4313:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "4325:6:1",
"nodeType": "YulTypedName",
"src": "4325:6:1",
"type": ""
}
],
"src": "4256:509:1"
},
{
"body": {
"nativeSrc": "4830:40:1",
"nodeType": "YulBlock",
"src": "4830:40:1",
"statements": [
{
"nativeSrc": "4841:22:1",
"nodeType": "YulAssignment",
"src": "4841:22:1",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "4857:5:1",
"nodeType": "YulIdentifier",
"src": "4857:5:1"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "4851:5:1",
"nodeType": "YulIdentifier",
"src": "4851:5:1"
},
"nativeSrc": "4851:12:1",
"nodeType": "YulFunctionCall",
"src": "4851:12:1"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "4841:6:1",
"nodeType": "YulIdentifier",
"src": "4841:6:1"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "4771:99:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "4813:5:1",
"nodeType": "YulTypedName",
"src": "4813:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nativeSrc": "4823:6:1",
"nodeType": "YulTypedName",
"src": "4823:6:1",
"type": ""
}
],
"src": "4771:99:1"
},
{
"body": {
"nativeSrc": "4972:73:1",
"nodeType": "YulBlock",
"src": "4972:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "4989:3:1",
"nodeType": "YulIdentifier",
"src": "4989:3:1"
},
{
"name": "length",
"nativeSrc": "4994:6:1",
"nodeType": "YulIdentifier",
"src": "4994:6:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "4982:6:1",
"nodeType": "YulIdentifier",
"src": "4982:6:1"
},
"nativeSrc": "4982:19:1",
"nodeType": "YulFunctionCall",
"src": "4982:19:1"
},
"nativeSrc": "4982:19:1",
"nodeType": "YulExpressionStatement",
"src": "4982:19:1"
},
{
"nativeSrc": "5010:29:1",
"nodeType": "YulAssignment",
"src": "5010:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "5029:3:1",
"nodeType": "YulIdentifier",
"src": "5029:3:1"
},
{
"kind": "number",
"nativeSrc": "5034:4:1",
"nodeType": "YulLiteral",
"src": "5034:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5025:3:1",
"nodeType": "YulIdentifier",
"src": "5025:3:1"
},
"nativeSrc": "5025:14:1",
"nodeType": "YulFunctionCall",
"src": "5025:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nativeSrc": "5010:11:1",
"nodeType": "YulIdentifier",
"src": "5010:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "4876:169:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "4944:3:1",
"nodeType": "YulTypedName",
"src": "4944:3:1",
"type": ""
},
{
"name": "length",
"nativeSrc": "4949:6:1",
"nodeType": "YulTypedName",
"src": "4949:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nativeSrc": "4960:11:1",
"nodeType": "YulTypedName",
"src": "4960:11:1",
"type": ""
}
],
"src": "4876:169:1"
},
{
"body": {
"nativeSrc": "5113:184:1",
"nodeType": "YulBlock",
"src": "5113:184:1",
"statements": [
{
"nativeSrc": "5123:10:1",
"nodeType": "YulVariableDeclaration",
"src": "5123:10:1",
"value": {
"kind": "number",
"nativeSrc": "5132:1:1",
"nodeType": "YulLiteral",
"src": "5132:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nativeSrc": "5127:1:1",
"nodeType": "YulTypedName",
"src": "5127:1:1",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "5192:63:1",
"nodeType": "YulBlock",
"src": "5192:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nativeSrc": "5217:3:1",
"nodeType": "YulIdentifier",
"src": "5217:3:1"
},
{
"name": "i",
"nativeSrc": "5222:1:1",
"nodeType": "YulIdentifier",
"src": "5222:1:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5213:3:1",
"nodeType": "YulIdentifier",
"src": "5213:3:1"
},
"nativeSrc": "5213:11:1",
"nodeType": "YulFunctionCall",
"src": "5213:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nativeSrc": "5236:3:1",
"nodeType": "YulIdentifier",
"src": "5236:3:1"
},
{
"name": "i",
"nativeSrc": "5241:1:1",
"nodeType": "YulIdentifier",
"src": "5241:1:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5232:3:1",
"nodeType": "YulIdentifier",
"src": "5232:3:1"
},
"nativeSrc": "5232:11:1",
"nodeType": "YulFunctionCall",
"src": "5232:11:1"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "5226:5:1",
"nodeType": "YulIdentifier",
"src": "5226:5:1"
},
"nativeSrc": "5226:18:1",
"nodeType": "YulFunctionCall",
"src": "5226:18:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "5206:6:1",
"nodeType": "YulIdentifier",
"src": "5206:6:1"
},
"nativeSrc": "5206:39:1",
"nodeType": "YulFunctionCall",
"src": "5206:39:1"
},
"nativeSrc": "5206:39:1",
"nodeType": "YulExpressionStatement",
"src": "5206:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nativeSrc": "5153:1:1",
"nodeType": "YulIdentifier",
"src": "5153:1:1"
},
{
"name": "length",
"nativeSrc": "5156:6:1",
"nodeType": "YulIdentifier",
"src": "5156:6:1"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "5150:2:1",
"nodeType": "YulIdentifier",
"src": "5150:2:1"
},
"nativeSrc": "5150:13:1",
"nodeType": "YulFunctionCall",
"src": "5150:13:1"
},
"nativeSrc": "5142:113:1",
"nodeType": "YulForLoop",
"post": {
"nativeSrc": "5164:19:1",
"nodeType": "YulBlock",
"src": "5164:19:1",
"statements": [
{
"nativeSrc": "5166:15:1",
"nodeType": "YulAssignment",
"src": "5166:15:1",
"value": {
"arguments": [
{
"name": "i",
"nativeSrc": "5175:1:1",
"nodeType": "YulIdentifier",
"src": "5175:1:1"
},
{
"kind": "number",
"nativeSrc": "5178:2:1",
"nodeType": "YulLiteral",
"src": "5178:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5171:3:1",
"nodeType": "YulIdentifier",
"src": "5171:3:1"
},
"nativeSrc": "5171:10:1",
"nodeType": "YulFunctionCall",
"src": "5171:10:1"
},
"variableNames": [
{
"name": "i",
"nativeSrc": "5166:1:1",
"nodeType": "YulIdentifier",
"src": "5166:1:1"
}
]
}
]
},
"pre": {
"nativeSrc": "5146:3:1",
"nodeType": "YulBlock",
"src": "5146:3:1",
"statements": []
},
"src": "5142:113:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nativeSrc": "5275:3:1",
"nodeType": "YulIdentifier",
"src": "5275:3:1"
},
{
"name": "length",
"nativeSrc": "5280:6:1",
"nodeType": "YulIdentifier",
"src": "5280:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5271:3:1",
"nodeType": "YulIdentifier",
"src": "5271:3:1"
},
"nativeSrc": "5271:16:1",
"nodeType": "YulFunctionCall",
"src": "5271:16:1"
},
{
"kind": "number",
"nativeSrc": "5289:1:1",
"nodeType": "YulLiteral",
"src": "5289:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "5264:6:1",
"nodeType": "YulIdentifier",
"src": "5264:6:1"
},
"nativeSrc": "5264:27:1",
"nodeType": "YulFunctionCall",
"src": "5264:27:1"
},
"nativeSrc": "5264:27:1",
"nodeType": "YulExpressionStatement",
"src": "5264:27:1"
}
]
},
"name": "copy_memory_to_memory_with_cleanup",
"nativeSrc": "5051:246:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nativeSrc": "5095:3:1",
"nodeType": "YulTypedName",
"src": "5095:3:1",
"type": ""
},
{
"name": "dst",
"nativeSrc": "5100:3:1",
"nodeType": "YulTypedName",
"src": "5100:3:1",
"type": ""
},
{
"name": "length",
"nativeSrc": "5105:6:1",
"nodeType": "YulTypedName",
"src": "5105:6:1",
"type": ""
}
],
"src": "5051:246:1"
},
{
"body": {
"nativeSrc": "5395:285:1",
"nodeType": "YulBlock",
"src": "5395:285:1",
"statements": [
{
"nativeSrc": "5405:53:1",
"nodeType": "YulVariableDeclaration",
"src": "5405:53:1",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "5452:5:1",
"nodeType": "YulIdentifier",
"src": "5452:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "5419:32:1",
"nodeType": "YulIdentifier",
"src": "5419:32:1"
},
"nativeSrc": "5419:39:1",
"nodeType": "YulFunctionCall",
"src": "5419:39:1"
},
"variables": [
{
"name": "length",
"nativeSrc": "5409:6:1",
"nodeType": "YulTypedName",
"src": "5409:6:1",
"type": ""
}
]
},
{
"nativeSrc": "5467:78:1",
"nodeType": "YulAssignment",
"src": "5467:78:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "5533:3:1",
"nodeType": "YulIdentifier",
"src": "5533:3:1"
},
{
"name": "length",
"nativeSrc": "5538:6:1",
"nodeType": "YulIdentifier",
"src": "5538:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "5474:58:1",
"nodeType": "YulIdentifier",
"src": "5474:58:1"
},
"nativeSrc": "5474:71:1",
"nodeType": "YulFunctionCall",
"src": "5474:71:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "5467:3:1",
"nodeType": "YulIdentifier",
"src": "5467:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "5593:5:1",
"nodeType": "YulIdentifier",
"src": "5593:5:1"
},
{
"kind": "number",
"nativeSrc": "5600:4:1",
"nodeType": "YulLiteral",
"src": "5600:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5589:3:1",
"nodeType": "YulIdentifier",
"src": "5589:3:1"
},
"nativeSrc": "5589:16:1",
"nodeType": "YulFunctionCall",
"src": "5589:16:1"
},
{
"name": "pos",
"nativeSrc": "5607:3:1",
"nodeType": "YulIdentifier",
"src": "5607:3:1"
},
{
"name": "length",
"nativeSrc": "5612:6:1",
"nodeType": "YulIdentifier",
"src": "5612:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nativeSrc": "5554:34:1",
"nodeType": "YulIdentifier",
"src": "5554:34:1"
},
"nativeSrc": "5554:65:1",
"nodeType": "YulFunctionCall",
"src": "5554:65:1"
},
"nativeSrc": "5554:65:1",
"nodeType": "YulExpressionStatement",
"src": "5554:65:1"
},
{
"nativeSrc": "5628:46:1",
"nodeType": "YulAssignment",
"src": "5628:46:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "5639:3:1",
"nodeType": "YulIdentifier",
"src": "5639:3:1"
},
{
"arguments": [
{
"name": "length",
"nativeSrc": "5666:6:1",
"nodeType": "YulIdentifier",
"src": "5666:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nativeSrc": "5644:21:1",
"nodeType": "YulIdentifier",
"src": "5644:21:1"
},
"nativeSrc": "5644:29:1",
"nodeType": "YulFunctionCall",
"src": "5644:29:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5635:3:1",
"nodeType": "YulIdentifier",
"src": "5635:3:1"
},
"nativeSrc": "5635:39:1",
"nodeType": "YulFunctionCall",
"src": "5635:39:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "5628:3:1",
"nodeType": "YulIdentifier",
"src": "5628:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nativeSrc": "5303:377:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "5376:5:1",
"nodeType": "YulTypedName",
"src": "5376:5:1",
"type": ""
},
{
"name": "pos",
"nativeSrc": "5383:3:1",
"nodeType": "YulTypedName",
"src": "5383:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "5391:3:1",
"nodeType": "YulTypedName",
"src": "5391:3:1",
"type": ""
}
],
"src": "5303:377:1"
},
{
"body": {
"nativeSrc": "5832:277:1",
"nodeType": "YulBlock",
"src": "5832:277:1",
"statements": [
{
"nativeSrc": "5842:26:1",
"nodeType": "YulAssignment",
"src": "5842:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "5854:9:1",
"nodeType": "YulIdentifier",
"src": "5854:9:1"
},
{
"kind": "number",
"nativeSrc": "5865:2:1",
"nodeType": "YulLiteral",
"src": "5865:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5850:3:1",
"nodeType": "YulIdentifier",
"src": "5850:3:1"
},
"nativeSrc": "5850:18:1",
"nodeType": "YulFunctionCall",
"src": "5850:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "5842:4:1",
"nodeType": "YulIdentifier",
"src": "5842:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "5922:6:1",
"nodeType": "YulIdentifier",
"src": "5922:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "5935:9:1",
"nodeType": "YulIdentifier",
"src": "5935:9:1"
},
{
"kind": "number",
"nativeSrc": "5946:1:1",
"nodeType": "YulLiteral",
"src": "5946:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5931:3:1",
"nodeType": "YulIdentifier",
"src": "5931:3:1"
},
"nativeSrc": "5931:17:1",
"nodeType": "YulFunctionCall",
"src": "5931:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "5878:43:1",
"nodeType": "YulIdentifier",
"src": "5878:43:1"
},
"nativeSrc": "5878:71:1",
"nodeType": "YulFunctionCall",
"src": "5878:71:1"
},
"nativeSrc": "5878:71:1",
"nodeType": "YulExpressionStatement",
"src": "5878:71:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "5970:9:1",
"nodeType": "YulIdentifier",
"src": "5970:9:1"
},
{
"kind": "number",
"nativeSrc": "5981:2:1",
"nodeType": "YulLiteral",
"src": "5981:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5966:3:1",
"nodeType": "YulIdentifier",
"src": "5966:3:1"
},
"nativeSrc": "5966:18:1",
"nodeType": "YulFunctionCall",
"src": "5966:18:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "5990:4:1",
"nodeType": "YulIdentifier",
"src": "5990:4:1"
},
{
"name": "headStart",
"nativeSrc": "5996:9:1",
"nodeType": "YulIdentifier",
"src": "5996:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "5986:3:1",
"nodeType": "YulIdentifier",
"src": "5986:3:1"
},
"nativeSrc": "5986:20:1",
"nodeType": "YulFunctionCall",
"src": "5986:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "5959:6:1",
"nodeType": "YulIdentifier",
"src": "5959:6:1"
},
"nativeSrc": "5959:48:1",
"nodeType": "YulFunctionCall",
"src": "5959:48:1"
},
"nativeSrc": "5959:48:1",
"nodeType": "YulExpressionStatement",
"src": "5959:48:1"
},
{
"nativeSrc": "6016:86:1",
"nodeType": "YulAssignment",
"src": "6016:86:1",
"value": {
"arguments": [
{
"name": "value1",
"nativeSrc": "6088:6:1",
"nodeType": "YulIdentifier",
"src": "6088:6:1"
},
{
"name": "tail",
"nativeSrc": "6097:4:1",
"nodeType": "YulIdentifier",
"src": "6097:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nativeSrc": "6024:63:1",
"nodeType": "YulIdentifier",
"src": "6024:63:1"
},
"nativeSrc": "6024:78:1",
"nodeType": "YulFunctionCall",
"src": "6024:78:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "6016:4:1",
"nodeType": "YulIdentifier",
"src": "6016:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_uint256_t_string_memory_ptr__to_t_uint256_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "5686:423:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "5796:9:1",
"nodeType": "YulTypedName",
"src": "5796:9:1",
"type": ""
},
{
"name": "value1",
"nativeSrc": "5808:6:1",
"nodeType": "YulTypedName",
"src": "5808:6:1",
"type": ""
},
{
"name": "value0",
"nativeSrc": "5816:6:1",
"nodeType": "YulTypedName",
"src": "5816:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "5827:4:1",
"nodeType": "YulTypedName",
"src": "5827:4:1",
"type": ""
}
],
"src": "5686:423:1"
},
{
"body": {
"nativeSrc": "6143:152:1",
"nodeType": "YulBlock",
"src": "6143:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "6160:1:1",
"nodeType": "YulLiteral",
"src": "6160:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "6163:77:1",
"nodeType": "YulLiteral",
"src": "6163:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "6153:6:1",
"nodeType": "YulIdentifier",
"src": "6153:6:1"
},
"nativeSrc": "6153:88:1",
"nodeType": "YulFunctionCall",
"src": "6153:88:1"
},
"nativeSrc": "6153:88:1",
"nodeType": "YulExpressionStatement",
"src": "6153:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "6257:1:1",
"nodeType": "YulLiteral",
"src": "6257:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "6260:4:1",
"nodeType": "YulLiteral",
"src": "6260:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "6250:6:1",
"nodeType": "YulIdentifier",
"src": "6250:6:1"
},
"nativeSrc": "6250:15:1",
"nodeType": "YulFunctionCall",
"src": "6250:15:1"
},
"nativeSrc": "6250:15:1",
"nodeType": "YulExpressionStatement",
"src": "6250:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "6281:1:1",
"nodeType": "YulLiteral",
"src": "6281:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "6284:4:1",
"nodeType": "YulLiteral",
"src": "6284:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "6274:6:1",
"nodeType": "YulIdentifier",
"src": "6274:6:1"
},
"nativeSrc": "6274:15:1",
"nodeType": "YulFunctionCall",
"src": "6274:15:1"
},
"nativeSrc": "6274:15:1",
"nodeType": "YulExpressionStatement",
"src": "6274:15:1"
}
]
},
"name": "panic_error_0x22",
"nativeSrc": "6115:180:1",
"nodeType": "YulFunctionDefinition",
"src": "6115:180:1"
},
{
"body": {
"nativeSrc": "6352:269:1",
"nodeType": "YulBlock",
"src": "6352:269:1",
"statements": [
{
"nativeSrc": "6362:22:1",
"nodeType": "YulAssignment",
"src": "6362:22:1",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "6376:4:1",
"nodeType": "YulIdentifier",
"src": "6376:4:1"
},
{
"kind": "number",
"nativeSrc": "6382:1:1",
"nodeType": "YulLiteral",
"src": "6382:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nativeSrc": "6372:3:1",
"nodeType": "YulIdentifier",
"src": "6372:3:1"
},
"nativeSrc": "6372:12:1",
"nodeType": "YulFunctionCall",
"src": "6372:12:1"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "6362:6:1",
"nodeType": "YulIdentifier",
"src": "6362:6:1"
}
]
},
{
"nativeSrc": "6393:38:1",
"nodeType": "YulVariableDeclaration",
"src": "6393:38:1",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "6423:4:1",
"nodeType": "YulIdentifier",
"src": "6423:4:1"
},
{
"kind": "number",
"nativeSrc": "6429:1:1",
"nodeType": "YulLiteral",
"src": "6429:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nativeSrc": "6419:3:1",
"nodeType": "YulIdentifier",
"src": "6419:3:1"
},
"nativeSrc": "6419:12:1",
"nodeType": "YulFunctionCall",
"src": "6419:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nativeSrc": "6397:18:1",
"nodeType": "YulTypedName",
"src": "6397:18:1",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "6470:51:1",
"nodeType": "YulBlock",
"src": "6470:51:1",
"statements": [
{
"nativeSrc": "6484:27:1",
"nodeType": "YulAssignment",
"src": "6484:27:1",
"value": {
"arguments": [
{
"name": "length",
"nativeSrc": "6498:6:1",
"nodeType": "YulIdentifier",
"src": "6498:6:1"
},
{
"kind": "number",
"nativeSrc": "6506:4:1",
"nodeType": "YulLiteral",
"src": "6506:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nativeSrc": "6494:3:1",
"nodeType": "YulIdentifier",
"src": "6494:3:1"
},
"nativeSrc": "6494:17:1",
"nodeType": "YulFunctionCall",
"src": "6494:17:1"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "6484:6:1",
"nodeType": "YulIdentifier",
"src": "6484:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nativeSrc": "6450:18:1",
"nodeType": "YulIdentifier",
"src": "6450:18:1"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "6443:6:1",
"nodeType": "YulIdentifier",
"src": "6443:6:1"
},
"nativeSrc": "6443:26:1",
"nodeType": "YulFunctionCall",
"src": "6443:26:1"
},
"nativeSrc": "6440:81:1",
"nodeType": "YulIf",
"src": "6440:81:1"
},
{
"body": {
"nativeSrc": "6573:42:1",
"nodeType": "YulBlock",
"src": "6573:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nativeSrc": "6587:16:1",
"nodeType": "YulIdentifier",
"src": "6587:16:1"
},
"nativeSrc": "6587:18:1",
"nodeType": "YulFunctionCall",
"src": "6587:18:1"
},
"nativeSrc": "6587:18:1",
"nodeType": "YulExpressionStatement",
"src": "6587:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nativeSrc": "6537:18:1",
"nodeType": "YulIdentifier",
"src": "6537:18:1"
},
{
"arguments": [
{
"name": "length",
"nativeSrc": "6560:6:1",
"nodeType": "YulIdentifier",
"src": "6560:6:1"
},
{
"kind": "number",
"nativeSrc": "6568:2:1",
"nodeType": "YulLiteral",
"src": "6568:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "6557:2:1",
"nodeType": "YulIdentifier",
"src": "6557:2:1"
},
"nativeSrc": "6557:14:1",
"nodeType": "YulFunctionCall",
"src": "6557:14:1"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "6534:2:1",
"nodeType": "YulIdentifier",
"src": "6534:2:1"
},
"nativeSrc": "6534:38:1",
"nodeType": "YulFunctionCall",
"src": "6534:38:1"
},
"nativeSrc": "6531:84:1",
"nodeType": "YulIf",
"src": "6531:84:1"
}
]
},
"name": "extract_byte_array_length",
"nativeSrc": "6301:320:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nativeSrc": "6336:4:1",
"nodeType": "YulTypedName",
"src": "6336:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nativeSrc": "6345:6:1",
"nodeType": "YulTypedName",
"src": "6345:6:1",
"type": ""
}
],
"src": "6301:320:1"
},
{
"body": {
"nativeSrc": "6681:87:1",
"nodeType": "YulBlock",
"src": "6681:87:1",
"statements": [
{
"nativeSrc": "6691:11:1",
"nodeType": "YulAssignment",
"src": "6691:11:1",
"value": {
"name": "ptr",
"nativeSrc": "6699:3:1",
"nodeType": "YulIdentifier",
"src": "6699:3:1"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "6691:4:1",
"nodeType": "YulIdentifier",
"src": "6691:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "6719:1:1",
"nodeType": "YulLiteral",
"src": "6719:1:1",
"type": "",
"value": "0"
},
{
"name": "ptr",
"nativeSrc": "6722:3:1",
"nodeType": "YulIdentifier",
"src": "6722:3:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "6712:6:1",
"nodeType": "YulIdentifier",
"src": "6712:6:1"
},
"nativeSrc": "6712:14:1",
"nodeType": "YulFunctionCall",
"src": "6712:14:1"
},
"nativeSrc": "6712:14:1",
"nodeType": "YulExpressionStatement",
"src": "6712:14:1"
},
{
"nativeSrc": "6735:26:1",
"nodeType": "YulAssignment",
"src": "6735:26:1",
"value": {
"arguments": [
{
"kind": "number",
"nativeSrc": "6753:1:1",
"nodeType": "YulLiteral",
"src": "6753:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "6756:4:1",
"nodeType": "YulLiteral",
"src": "6756:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nativeSrc": "6743:9:1",
"nodeType": "YulIdentifier",
"src": "6743:9:1"
},
"nativeSrc": "6743:18:1",
"nodeType": "YulFunctionCall",
"src": "6743:18:1"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "6735:4:1",
"nodeType": "YulIdentifier",
"src": "6735:4:1"
}
]
}
]
},
"name": "array_dataslot_t_string_storage",
"nativeSrc": "6627:141:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nativeSrc": "6668:3:1",
"nodeType": "YulTypedName",
"src": "6668:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nativeSrc": "6676:4:1",
"nodeType": "YulTypedName",
"src": "6676:4:1",
"type": ""
}
],
"src": "6627:141:1"
},
{
"body": {
"nativeSrc": "6818:49:1",
"nodeType": "YulBlock",
"src": "6818:49:1",
"statements": [
{
"nativeSrc": "6828:33:1",
"nodeType": "YulAssignment",
"src": "6828:33:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "6846:5:1",
"nodeType": "YulIdentifier",
"src": "6846:5:1"
},
{
"kind": "number",
"nativeSrc": "6853:2:1",
"nodeType": "YulLiteral",
"src": "6853:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6842:3:1",
"nodeType": "YulIdentifier",
"src": "6842:3:1"
},
"nativeSrc": "6842:14:1",
"nodeType": "YulFunctionCall",
"src": "6842:14:1"
},
{
"kind": "number",
"nativeSrc": "6858:2:1",
"nodeType": "YulLiteral",
"src": "6858:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "div",
"nativeSrc": "6838:3:1",
"nodeType": "YulIdentifier",
"src": "6838:3:1"
},
"nativeSrc": "6838:23:1",
"nodeType": "YulFunctionCall",
"src": "6838:23:1"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "6828:6:1",
"nodeType": "YulIdentifier",
"src": "6828:6:1"
}
]
}
]
},
"name": "divide_by_32_ceil",
"nativeSrc": "6774:93:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "6801:5:1",
"nodeType": "YulTypedName",
"src": "6801:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "6811:6:1",
"nodeType": "YulTypedName",
"src": "6811:6:1",
"type": ""
}
],
"src": "6774:93:1"
},
{
"body": {
"nativeSrc": "6926:54:1",
"nodeType": "YulBlock",
"src": "6926:54:1",
"statements": [
{
"nativeSrc": "6936:37:1",
"nodeType": "YulAssignment",
"src": "6936:37:1",
"value": {
"arguments": [
{
"name": "bits",
"nativeSrc": "6961:4:1",
"nodeType": "YulIdentifier",
"src": "6961:4:1"
},
{
"name": "value",
"nativeSrc": "6967:5:1",
"nodeType": "YulIdentifier",
"src": "6967:5:1"
}
],
"functionName": {
"name": "shl",
"nativeSrc": "6957:3:1",
"nodeType": "YulIdentifier",
"src": "6957:3:1"
},
"nativeSrc": "6957:16:1",
"nodeType": "YulFunctionCall",
"src": "6957:16:1"
},
"variableNames": [
{
"name": "newValue",
"nativeSrc": "6936:8:1",
"nodeType": "YulIdentifier",
"src": "6936:8:1"
}
]
}
]
},
"name": "shift_left_dynamic",
"nativeSrc": "6873:107:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nativeSrc": "6901:4:1",
"nodeType": "YulTypedName",
"src": "6901:4:1",
"type": ""
},
{
"name": "value",
"nativeSrc": "6907:5:1",
"nodeType": "YulTypedName",
"src": "6907:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nativeSrc": "6917:8:1",
"nodeType": "YulTypedName",
"src": "6917:8:1",
"type": ""
}
],
"src": "6873:107:1"
},
{
"body": {
"nativeSrc": "7062:317:1",
"nodeType": "YulBlock",
"src": "7062:317:1",
"statements": [
{
"nativeSrc": "7072:35:1",
"nodeType": "YulVariableDeclaration",
"src": "7072:35:1",
"value": {
"arguments": [
{
"name": "shiftBytes",
"nativeSrc": "7093:10:1",
"nodeType": "YulIdentifier",
"src": "7093:10:1"
},
{
"kind": "number",
"nativeSrc": "7105:1:1",
"nodeType": "YulLiteral",
"src": "7105:1:1",
"type": "",
"value": "8"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "7089:3:1",
"nodeType": "YulIdentifier",
"src": "7089:3:1"
},
"nativeSrc": "7089:18:1",
"nodeType": "YulFunctionCall",
"src": "7089:18:1"
},
"variables": [
{
"name": "shiftBits",
"nativeSrc": "7076:9:1",
"nodeType": "YulTypedName",
"src": "7076:9:1",
"type": ""
}
]
},
{
"nativeSrc": "7116:109:1",
"nodeType": "YulVariableDeclaration",
"src": "7116:109:1",
"value": {
"arguments": [
{
"name": "shiftBits",
"nativeSrc": "7147:9:1",
"nodeType": "YulIdentifier",
"src": "7147:9:1"
},
{
"kind": "number",
"nativeSrc": "7158:66:1",
"nodeType": "YulLiteral",
"src": "7158:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nativeSrc": "7128:18:1",
"nodeType": "YulIdentifier",
"src": "7128:18:1"
},
"nativeSrc": "7128:97:1",
"nodeType": "YulFunctionCall",
"src": "7128:97:1"
},
"variables": [
{
"name": "mask",
"nativeSrc": "7120:4:1",
"nodeType": "YulTypedName",
"src": "7120:4:1",
"type": ""
}
]
},
{
"nativeSrc": "7234:51:1",
"nodeType": "YulAssignment",
"src": "7234:51:1",
"value": {
"arguments": [
{
"name": "shiftBits",
"nativeSrc": "7265:9:1",
"nodeType": "YulIdentifier",
"src": "7265:9:1"
},
{
"name": "toInsert",
"nativeSrc": "7276:8:1",
"nodeType": "YulIdentifier",
"src": "7276:8:1"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nativeSrc": "7246:18:1",
"nodeType": "YulIdentifier",
"src": "7246:18:1"
},
"nativeSrc": "7246:39:1",
"nodeType": "YulFunctionCall",
"src": "7246:39:1"
},
"variableNames": [
{
"name": "toInsert",
"nativeSrc": "7234:8:1",
"nodeType": "YulIdentifier",
"src": "7234:8:1"
}
]
},
{
"nativeSrc": "7294:30:1",
"nodeType": "YulAssignment",
"src": "7294:30:1",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "7307:5:1",
"nodeType": "YulIdentifier",
"src": "7307:5:1"
},
{
"arguments": [
{
"name": "mask",
"nativeSrc": "7318:4:1",
"nodeType": "YulIdentifier",
"src": "7318:4:1"
}
],
"functionName": {
"name": "not",
"nativeSrc": "7314:3:1",
"nodeType": "YulIdentifier",
"src": "7314:3:1"
},
"nativeSrc": "7314:9:1",
"nodeType": "YulFunctionCall",
"src": "7314:9:1"
}
],
"functionName": {
"name": "and",
"nativeSrc": "7303:3:1",
"nodeType": "YulIdentifier",
"src": "7303:3:1"
},
"nativeSrc": "7303:21:1",
"nodeType": "YulFunctionCall",
"src": "7303:21:1"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "7294:5:1",
"nodeType": "YulIdentifier",
"src": "7294:5:1"
}
]
},
{
"nativeSrc": "7333:40:1",
"nodeType": "YulAssignment",
"src": "7333:40:1",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "7346:5:1",
"nodeType": "YulIdentifier",
"src": "7346:5:1"
},
{
"arguments": [
{
"name": "toInsert",
"nativeSrc": "7357:8:1",
"nodeType": "YulIdentifier",
"src": "7357:8:1"
},
{
"name": "mask",
"nativeSrc": "7367:4:1",
"nodeType": "YulIdentifier",
"src": "7367:4:1"
}
],
"functionName": {
"name": "and",
"nativeSrc": "7353:3:1",
"nodeType": "YulIdentifier",
"src": "7353:3:1"
},
"nativeSrc": "7353:19:1",
"nodeType": "YulFunctionCall",
"src": "7353:19:1"
}
],
"functionName": {
"name": "or",
"nativeSrc": "7343:2:1",
"nodeType": "YulIdentifier",
"src": "7343:2:1"
},
"nativeSrc": "7343:30:1",
"nodeType": "YulFunctionCall",
"src": "7343:30:1"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "7333:6:1",
"nodeType": "YulIdentifier",
"src": "7333:6:1"
}
]
}
]
},
"name": "update_byte_slice_dynamic32",
"nativeSrc": "6986:393:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "7023:5:1",
"nodeType": "YulTypedName",
"src": "7023:5:1",
"type": ""
},
{
"name": "shiftBytes",
"nativeSrc": "7030:10:1",
"nodeType": "YulTypedName",
"src": "7030:10:1",
"type": ""
},
{
"name": "toInsert",
"nativeSrc": "7042:8:1",
"nodeType": "YulTypedName",
"src": "7042:8:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "7055:6:1",
"nodeType": "YulTypedName",
"src": "7055:6:1",
"type": ""
}
],
"src": "6986:393:1"
},
{
"body": {
"nativeSrc": "7417:28:1",
"nodeType": "YulBlock",
"src": "7417:28:1",
"statements": [
{
"nativeSrc": "7427:12:1",
"nodeType": "YulAssignment",
"src": "7427:12:1",
"value": {
"name": "value",
"nativeSrc": "7434:5:1",
"nodeType": "YulIdentifier",
"src": "7434:5:1"
},
"variableNames": [
{
"name": "ret",
"nativeSrc": "7427:3:1",
"nodeType": "YulIdentifier",
"src": "7427:3:1"
}
]
}
]
},
"name": "identity",
"nativeSrc": "7385:60:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "7403:5:1",
"nodeType": "YulTypedName",
"src": "7403:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nativeSrc": "7413:3:1",
"nodeType": "YulTypedName",
"src": "7413:3:1",
"type": ""
}
],
"src": "7385:60:1"
},
{
"body": {
"nativeSrc": "7511:82:1",
"nodeType": "YulBlock",
"src": "7511:82:1",
"statements": [
{
"nativeSrc": "7521:66:1",
"nodeType": "YulAssignment",
"src": "7521:66:1",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "7579:5:1",
"nodeType": "YulIdentifier",
"src": "7579:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "7561:17:1",
"nodeType": "YulIdentifier",
"src": "7561:17:1"
},
"nativeSrc": "7561:24:1",
"nodeType": "YulFunctionCall",
"src": "7561:24:1"
}
],
"functionName": {
"name": "identity",
"nativeSrc": "7552:8:1",
"nodeType": "YulIdentifier",
"src": "7552:8:1"
},
"nativeSrc": "7552:34:1",
"nodeType": "YulFunctionCall",
"src": "7552:34:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "7534:17:1",
"nodeType": "YulIdentifier",
"src": "7534:17:1"
},
"nativeSrc": "7534:53:1",
"nodeType": "YulFunctionCall",
"src": "7534:53:1"
},
"variableNames": [
{
"name": "converted",
"nativeSrc": "7521:9:1",
"nodeType": "YulIdentifier",
"src": "7521:9:1"
}
]
}
]
},
"name": "convert_t_uint256_to_t_uint256",
"nativeSrc": "7451:142:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "7491:5:1",
"nodeType": "YulTypedName",
"src": "7491:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nativeSrc": "7501:9:1",
"nodeType": "YulTypedName",
"src": "7501:9:1",
"type": ""
}
],
"src": "7451:142:1"
},
{
"body": {
"nativeSrc": "7646:28:1",
"nodeType": "YulBlock",
"src": "7646:28:1",
"statements": [
{
"nativeSrc": "7656:12:1",
"nodeType": "YulAssignment",
"src": "7656:12:1",
"value": {
"name": "value",
"nativeSrc": "7663:5:1",
"nodeType": "YulIdentifier",
"src": "7663:5:1"
},
"variableNames": [
{
"name": "ret",
"nativeSrc": "7656:3:1",
"nodeType": "YulIdentifier",
"src": "7656:3:1"
}
]
}
]
},
"name": "prepare_store_t_uint256",
"nativeSrc": "7599:75:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "7632:5:1",
"nodeType": "YulTypedName",
"src": "7632:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nativeSrc": "7642:3:1",
"nodeType": "YulTypedName",
"src": "7642:3:1",
"type": ""
}
],
"src": "7599:75:1"
},
{
"body": {
"nativeSrc": "7756:193:1",
"nodeType": "YulBlock",
"src": "7756:193:1",
"statements": [
{
"nativeSrc": "7766:63:1",
"nodeType": "YulVariableDeclaration",
"src": "7766:63:1",
"value": {
"arguments": [
{
"name": "value_0",
"nativeSrc": "7821:7:1",
"nodeType": "YulIdentifier",
"src": "7821:7:1"
}
],
"functionName": {
"name": "convert_t_uint256_to_t_uint256",
"nativeSrc": "7790:30:1",
"nodeType": "YulIdentifier",
"src": "7790:30:1"
},
"nativeSrc": "7790:39:1",
"nodeType": "YulFunctionCall",
"src": "7790:39:1"
},
"variables": [
{
"name": "convertedValue_0",
"nativeSrc": "7770:16:1",
"nodeType": "YulTypedName",
"src": "7770:16:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "7845:4:1",
"nodeType": "YulIdentifier",
"src": "7845:4:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "slot",
"nativeSrc": "7885:4:1",
"nodeType": "YulIdentifier",
"src": "7885:4:1"
}
],
"functionName": {
"name": "sload",
"nativeSrc": "7879:5:1",
"nodeType": "YulIdentifier",
"src": "7879:5:1"
},
"nativeSrc": "7879:11:1",
"nodeType": "YulFunctionCall",
"src": "7879:11:1"
},
{
"name": "offset",
"nativeSrc": "7892:6:1",
"nodeType": "YulIdentifier",
"src": "7892:6:1"
},
{
"arguments": [
{
"name": "convertedValue_0",
"nativeSrc": "7924:16:1",
"nodeType": "YulIdentifier",
"src": "7924:16:1"
}
],
"functionName": {
"name": "prepare_store_t_uint256",
"nativeSrc": "7900:23:1",
"nodeType": "YulIdentifier",
"src": "7900:23:1"
},
"nativeSrc": "7900:41:1",
"nodeType": "YulFunctionCall",
"src": "7900:41:1"
}
],
"functionName": {
"name": "update_byte_slice_dynamic32",
"nativeSrc": "7851:27:1",
"nodeType": "YulIdentifier",
"src": "7851:27:1"
},
"nativeSrc": "7851:91:1",
"nodeType": "YulFunctionCall",
"src": "7851:91:1"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "7838:6:1",
"nodeType": "YulIdentifier",
"src": "7838:6:1"
},
"nativeSrc": "7838:105:1",
"nodeType": "YulFunctionCall",
"src": "7838:105:1"
},
"nativeSrc": "7838:105:1",
"nodeType": "YulExpressionStatement",
"src": "7838:105:1"
}
]
},
"name": "update_storage_value_t_uint256_to_t_uint256",
"nativeSrc": "7680:269:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nativeSrc": "7733:4:1",
"nodeType": "YulTypedName",
"src": "7733:4:1",
"type": ""
},
{
"name": "offset",
"nativeSrc": "7739:6:1",
"nodeType": "YulTypedName",
"src": "7739:6:1",
"type": ""
},
{
"name": "value_0",
"nativeSrc": "7747:7:1",
"nodeType": "YulTypedName",
"src": "7747:7:1",
"type": ""
}
],
"src": "7680:269:1"
},
{
"body": {
"nativeSrc": "8004:24:1",
"nodeType": "YulBlock",
"src": "8004:24:1",
"statements": [
{
"nativeSrc": "8014:8:1",
"nodeType": "YulAssignment",
"src": "8014:8:1",
"value": {
"kind": "number",
"nativeSrc": "8021:1:1",
"nodeType": "YulLiteral",
"src": "8021:1:1",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "ret",
"nativeSrc": "8014:3:1",
"nodeType": "YulIdentifier",
"src": "8014:3:1"
}
]
}
]
},
"name": "zero_value_for_split_t_uint256",
"nativeSrc": "7955:73:1",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "ret",
"nativeSrc": "8000:3:1",
"nodeType": "YulTypedName",
"src": "8000:3:1",
"type": ""
}
],
"src": "7955:73:1"
},
{
"body": {
"nativeSrc": "8087:136:1",
"nodeType": "YulBlock",
"src": "8087:136:1",
"statements": [
{
"nativeSrc": "8097:46:1",
"nodeType": "YulVariableDeclaration",
"src": "8097:46:1",
"value": {
"arguments": [],
"functionName": {
"name": "zero_value_for_split_t_uint256",
"nativeSrc": "8111:30:1",
"nodeType": "YulIdentifier",
"src": "8111:30:1"
},
"nativeSrc": "8111:32:1",
"nodeType": "YulFunctionCall",
"src": "8111:32:1"
},
"variables": [
{
"name": "zero_0",
"nativeSrc": "8101:6:1",
"nodeType": "YulTypedName",
"src": "8101:6:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "8196:4:1",
"nodeType": "YulIdentifier",
"src": "8196:4:1"
},
{
"name": "offset",
"nativeSrc": "8202:6:1",
"nodeType": "YulIdentifier",
"src": "8202:6:1"
},
{
"name": "zero_0",
"nativeSrc": "8210:6:1",
"nodeType": "YulIdentifier",
"src": "8210:6:1"
}
],
"functionName": {
"name": "update_storage_value_t_uint256_to_t_uint256",
"nativeSrc": "8152:43:1",
"nodeType": "YulIdentifier",
"src": "8152:43:1"
},
"nativeSrc": "8152:65:1",
"nodeType": "YulFunctionCall",
"src": "8152:65:1"
},
"nativeSrc": "8152:65:1",
"nodeType": "YulExpressionStatement",
"src": "8152:65:1"
}
]
},
"name": "storage_set_to_zero_t_uint256",
"nativeSrc": "8034:189:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nativeSrc": "8073:4:1",
"nodeType": "YulTypedName",
"src": "8073:4:1",
"type": ""
},
{
"name": "offset",
"nativeSrc": "8079:6:1",
"nodeType": "YulTypedName",
"src": "8079:6:1",
"type": ""
}
],
"src": "8034:189:1"
},
{
"body": {
"nativeSrc": "8279:136:1",
"nodeType": "YulBlock",
"src": "8279:136:1",
"statements": [
{
"body": {
"nativeSrc": "8346:63:1",
"nodeType": "YulBlock",
"src": "8346:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "start",
"nativeSrc": "8390:5:1",
"nodeType": "YulIdentifier",
"src": "8390:5:1"
},
{
"kind": "number",
"nativeSrc": "8397:1:1",
"nodeType": "YulLiteral",
"src": "8397:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "storage_set_to_zero_t_uint256",
"nativeSrc": "8360:29:1",
"nodeType": "YulIdentifier",
"src": "8360:29:1"
},
"nativeSrc": "8360:39:1",
"nodeType": "YulFunctionCall",
"src": "8360:39:1"
},
"nativeSrc": "8360:39:1",
"nodeType": "YulExpressionStatement",
"src": "8360:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "start",
"nativeSrc": "8299:5:1",
"nodeType": "YulIdentifier",
"src": "8299:5:1"
},
{
"name": "end",
"nativeSrc": "8306:3:1",
"nodeType": "YulIdentifier",
"src": "8306:3:1"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "8296:2:1",
"nodeType": "YulIdentifier",
"src": "8296:2:1"
},
"nativeSrc": "8296:14:1",
"nodeType": "YulFunctionCall",
"src": "8296:14:1"
},
"nativeSrc": "8289:120:1",
"nodeType": "YulForLoop",
"post": {
"nativeSrc": "8311:26:1",
"nodeType": "YulBlock",
"src": "8311:26:1",
"statements": [
{
"nativeSrc": "8313:22:1",
"nodeType": "YulAssignment",
"src": "8313:22:1",
"value": {
"arguments": [
{
"name": "start",
"nativeSrc": "8326:5:1",
"nodeType": "YulIdentifier",
"src": "8326:5:1"
},
{
"kind": "number",
"nativeSrc": "8333:1:1",
"nodeType": "YulLiteral",
"src": "8333:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8322:3:1",
"nodeType": "YulIdentifier",
"src": "8322:3:1"
},
"nativeSrc": "8322:13:1",
"nodeType": "YulFunctionCall",
"src": "8322:13:1"
},
"variableNames": [
{
"name": "start",
"nativeSrc": "8313:5:1",
"nodeType": "YulIdentifier",
"src": "8313:5:1"
}
]
}
]
},
"pre": {
"nativeSrc": "8293:2:1",
"nodeType": "YulBlock",
"src": "8293:2:1",
"statements": []
},
"src": "8289:120:1"
}
]
},
"name": "clear_storage_range_t_bytes1",
"nativeSrc": "8229:186:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "start",
"nativeSrc": "8267:5:1",
"nodeType": "YulTypedName",
"src": "8267:5:1",
"type": ""
},
{
"name": "end",
"nativeSrc": "8274:3:1",
"nodeType": "YulTypedName",
"src": "8274:3:1",
"type": ""
}
],
"src": "8229:186:1"
},
{
"body": {
"nativeSrc": "8500:464:1",
"nodeType": "YulBlock",
"src": "8500:464:1",
"statements": [
{
"body": {
"nativeSrc": "8526:431:1",
"nodeType": "YulBlock",
"src": "8526:431:1",
"statements": [
{
"nativeSrc": "8540:54:1",
"nodeType": "YulVariableDeclaration",
"src": "8540:54:1",
"value": {
"arguments": [
{
"name": "array",
"nativeSrc": "8588:5:1",
"nodeType": "YulIdentifier",
"src": "8588:5:1"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nativeSrc": "8556:31:1",
"nodeType": "YulIdentifier",
"src": "8556:31:1"
},
"nativeSrc": "8556:38:1",
"nodeType": "YulFunctionCall",
"src": "8556:38:1"
},
"variables": [
{
"name": "dataArea",
"nativeSrc": "8544:8:1",
"nodeType": "YulTypedName",
"src": "8544:8:1",
"type": ""
}
]
},
{
"nativeSrc": "8607:63:1",
"nodeType": "YulVariableDeclaration",
"src": "8607:63:1",
"value": {
"arguments": [
{
"name": "dataArea",
"nativeSrc": "8630:8:1",
"nodeType": "YulIdentifier",
"src": "8630:8:1"
},
{
"arguments": [
{
"name": "startIndex",
"nativeSrc": "8658:10:1",
"nodeType": "YulIdentifier",
"src": "8658:10:1"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nativeSrc": "8640:17:1",
"nodeType": "YulIdentifier",
"src": "8640:17:1"
},
"nativeSrc": "8640:29:1",
"nodeType": "YulFunctionCall",
"src": "8640:29:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8626:3:1",
"nodeType": "YulIdentifier",
"src": "8626:3:1"
},
"nativeSrc": "8626:44:1",
"nodeType": "YulFunctionCall",
"src": "8626:44:1"
},
"variables": [
{
"name": "deleteStart",
"nativeSrc": "8611:11:1",
"nodeType": "YulTypedName",
"src": "8611:11:1",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "8827:27:1",
"nodeType": "YulBlock",
"src": "8827:27:1",
"statements": [
{
"nativeSrc": "8829:23:1",
"nodeType": "YulAssignment",
"src": "8829:23:1",
"value": {
"name": "dataArea",
"nativeSrc": "8844:8:1",
"nodeType": "YulIdentifier",
"src": "8844:8:1"
},
"variableNames": [
{
"name": "deleteStart",
"nativeSrc": "8829:11:1",
"nodeType": "YulIdentifier",
"src": "8829:11:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "startIndex",
"nativeSrc": "8811:10:1",
"nodeType": "YulIdentifier",
"src": "8811:10:1"
},
{
"kind": "number",
"nativeSrc": "8823:2:1",
"nodeType": "YulLiteral",
"src": "8823:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "8808:2:1",
"nodeType": "YulIdentifier",
"src": "8808:2:1"
},
"nativeSrc": "8808:18:1",
"nodeType": "YulFunctionCall",
"src": "8808:18:1"
},
"nativeSrc": "8805:49:1",
"nodeType": "YulIf",
"src": "8805:49:1"
},
{
"expression": {
"arguments": [
{
"name": "deleteStart",
"nativeSrc": "8896:11:1",
"nodeType": "YulIdentifier",
"src": "8896:11:1"
},
{
"arguments": [
{
"name": "dataArea",
"nativeSrc": "8913:8:1",
"nodeType": "YulIdentifier",
"src": "8913:8:1"
},
{
"arguments": [
{
"name": "len",
"nativeSrc": "8941:3:1",
"nodeType": "YulIdentifier",
"src": "8941:3:1"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nativeSrc": "8923:17:1",
"nodeType": "YulIdentifier",
"src": "8923:17:1"
},
"nativeSrc": "8923:22:1",
"nodeType": "YulFunctionCall",
"src": "8923:22:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8909:3:1",
"nodeType": "YulIdentifier",
"src": "8909:3:1"
},
"nativeSrc": "8909:37:1",
"nodeType": "YulFunctionCall",
"src": "8909:37:1"
}
],
"functionName": {
"name": "clear_storage_range_t_bytes1",
"nativeSrc": "8867:28:1",
"nodeType": "YulIdentifier",
"src": "8867:28:1"
},
"nativeSrc": "8867:80:1",
"nodeType": "YulFunctionCall",
"src": "8867:80:1"
},
"nativeSrc": "8867:80:1",
"nodeType": "YulExpressionStatement",
"src": "8867:80:1"
}
]
},
"condition": {
"arguments": [
{
"name": "len",
"nativeSrc": "8517:3:1",
"nodeType": "YulIdentifier",
"src": "8517:3:1"
},
{
"kind": "number",
"nativeSrc": "8522:2:1",
"nodeType": "YulLiteral",
"src": "8522:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "8514:2:1",
"nodeType": "YulIdentifier",
"src": "8514:2:1"
},
"nativeSrc": "8514:11:1",
"nodeType": "YulFunctionCall",
"src": "8514:11:1"
},
"nativeSrc": "8511:446:1",
"nodeType": "YulIf",
"src": "8511:446:1"
}
]
},
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nativeSrc": "8421:543:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "array",
"nativeSrc": "8476:5:1",
"nodeType": "YulTypedName",
"src": "8476:5:1",
"type": ""
},
{
"name": "len",
"nativeSrc": "8483:3:1",
"nodeType": "YulTypedName",
"src": "8483:3:1",
"type": ""
},
{
"name": "startIndex",
"nativeSrc": "8488:10:1",
"nodeType": "YulTypedName",
"src": "8488:10:1",
"type": ""
}
],
"src": "8421:543:1"
},
{
"body": {
"nativeSrc": "9033:54:1",
"nodeType": "YulBlock",
"src": "9033:54:1",
"statements": [
{
"nativeSrc": "9043:37:1",
"nodeType": "YulAssignment",
"src": "9043:37:1",
"value": {
"arguments": [
{
"name": "bits",
"nativeSrc": "9068:4:1",
"nodeType": "YulIdentifier",
"src": "9068:4:1"
},
{
"name": "value",
"nativeSrc": "9074:5:1",
"nodeType": "YulIdentifier",
"src": "9074:5:1"
}
],
"functionName": {
"name": "shr",
"nativeSrc": "9064:3:1",
"nodeType": "YulIdentifier",
"src": "9064:3:1"
},
"nativeSrc": "9064:16:1",
"nodeType": "YulFunctionCall",
"src": "9064:16:1"
},
"variableNames": [
{
"name": "newValue",
"nativeSrc": "9043:8:1",
"nodeType": "YulIdentifier",
"src": "9043:8:1"
}
]
}
]
},
"name": "shift_right_unsigned_dynamic",
"nativeSrc": "8970:117:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nativeSrc": "9008:4:1",
"nodeType": "YulTypedName",
"src": "9008:4:1",
"type": ""
},
{
"name": "value",
"nativeSrc": "9014:5:1",
"nodeType": "YulTypedName",
"src": "9014:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nativeSrc": "9024:8:1",
"nodeType": "YulTypedName",
"src": "9024:8:1",
"type": ""
}
],
"src": "8970:117:1"
},
{
"body": {
"nativeSrc": "9144:118:1",
"nodeType": "YulBlock",
"src": "9144:118:1",
"statements": [
{
"nativeSrc": "9154:68:1",
"nodeType": "YulVariableDeclaration",
"src": "9154:68:1",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nativeSrc": "9203:1:1",
"nodeType": "YulLiteral",
"src": "9203:1:1",
"type": "",
"value": "8"
},
{
"name": "bytes",
"nativeSrc": "9206:5:1",
"nodeType": "YulIdentifier",
"src": "9206:5:1"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "9199:3:1",
"nodeType": "YulIdentifier",
"src": "9199:3:1"
},
"nativeSrc": "9199:13:1",
"nodeType": "YulFunctionCall",
"src": "9199:13:1"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "9218:1:1",
"nodeType": "YulLiteral",
"src": "9218:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nativeSrc": "9214:3:1",
"nodeType": "YulIdentifier",
"src": "9214:3:1"
},
"nativeSrc": "9214:6:1",
"nodeType": "YulFunctionCall",
"src": "9214:6:1"
}
],
"functionName": {
"name": "shift_right_unsigned_dynamic",
"nativeSrc": "9170:28:1",
"nodeType": "YulIdentifier",
"src": "9170:28:1"
},
"nativeSrc": "9170:51:1",
"nodeType": "YulFunctionCall",
"src": "9170:51:1"
}
],
"functionName": {
"name": "not",
"nativeSrc": "9166:3:1",
"nodeType": "YulIdentifier",
"src": "9166:3:1"
},
"nativeSrc": "9166:56:1",
"nodeType": "YulFunctionCall",
"src": "9166:56:1"
},
"variables": [
{
"name": "mask",
"nativeSrc": "9158:4:1",
"nodeType": "YulTypedName",
"src": "9158:4:1",
"type": ""
}
]
},
{
"nativeSrc": "9231:25:1",
"nodeType": "YulAssignment",
"src": "9231:25:1",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "9245:4:1",
"nodeType": "YulIdentifier",
"src": "9245:4:1"
},
{
"name": "mask",
"nativeSrc": "9251:4:1",
"nodeType": "YulIdentifier",
"src": "9251:4:1"
}
],
"functionName": {
"name": "and",
"nativeSrc": "9241:3:1",
"nodeType": "YulIdentifier",
"src": "9241:3:1"
},
"nativeSrc": "9241:15:1",
"nodeType": "YulFunctionCall",
"src": "9241:15:1"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "9231:6:1",
"nodeType": "YulIdentifier",
"src": "9231:6:1"
}
]
}
]
},
"name": "mask_bytes_dynamic",
"nativeSrc": "9093:169:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nativeSrc": "9121:4:1",
"nodeType": "YulTypedName",
"src": "9121:4:1",
"type": ""
},
{
"name": "bytes",
"nativeSrc": "9127:5:1",
"nodeType": "YulTypedName",
"src": "9127:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "9137:6:1",
"nodeType": "YulTypedName",
"src": "9137:6:1",
"type": ""
}
],
"src": "9093:169:1"
},
{
"body": {
"nativeSrc": "9348:214:1",
"nodeType": "YulBlock",
"src": "9348:214:1",
"statements": [
{
"nativeSrc": "9481:37:1",
"nodeType": "YulAssignment",
"src": "9481:37:1",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "9508:4:1",
"nodeType": "YulIdentifier",
"src": "9508:4:1"
},
{
"name": "len",
"nativeSrc": "9514:3:1",
"nodeType": "YulIdentifier",
"src": "9514:3:1"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nativeSrc": "9489:18:1",
"nodeType": "YulIdentifier",
"src": "9489:18:1"
},
"nativeSrc": "9489:29:1",
"nodeType": "YulFunctionCall",
"src": "9489:29:1"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "9481:4:1",
"nodeType": "YulIdentifier",
"src": "9481:4:1"
}
]
},
{
"nativeSrc": "9527:29:1",
"nodeType": "YulAssignment",
"src": "9527:29:1",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "9538:4:1",
"nodeType": "YulIdentifier",
"src": "9538:4:1"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "9548:1:1",
"nodeType": "YulLiteral",
"src": "9548:1:1",
"type": "",
"value": "2"
},
{
"name": "len",
"nativeSrc": "9551:3:1",
"nodeType": "YulIdentifier",
"src": "9551:3:1"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "9544:3:1",
"nodeType": "YulIdentifier",
"src": "9544:3:1"
},
"nativeSrc": "9544:11:1",
"nodeType": "YulFunctionCall",
"src": "9544:11:1"
}
],
"functionName": {
"name": "or",
"nativeSrc": "9535:2:1",
"nodeType": "YulIdentifier",
"src": "9535:2:1"
},
"nativeSrc": "9535:21:1",
"nodeType": "YulFunctionCall",
"src": "9535:21:1"
},
"variableNames": [
{
"name": "used",
"nativeSrc": "9527:4:1",
"nodeType": "YulIdentifier",
"src": "9527:4:1"
}
]
}
]
},
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nativeSrc": "9267:295:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nativeSrc": "9329:4:1",
"nodeType": "YulTypedName",
"src": "9329:4:1",
"type": ""
},
{
"name": "len",
"nativeSrc": "9335:3:1",
"nodeType": "YulTypedName",
"src": "9335:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "used",
"nativeSrc": "9343:4:1",
"nodeType": "YulTypedName",
"src": "9343:4:1",
"type": ""
}
],
"src": "9267:295:1"
},
{
"body": {
"nativeSrc": "9659:1303:1",
"nodeType": "YulBlock",
"src": "9659:1303:1",
"statements": [
{
"nativeSrc": "9670:51:1",
"nodeType": "YulVariableDeclaration",
"src": "9670:51:1",
"value": {
"arguments": [
{
"name": "src",
"nativeSrc": "9717:3:1",
"nodeType": "YulIdentifier",
"src": "9717:3:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "9684:32:1",
"nodeType": "YulIdentifier",
"src": "9684:32:1"
},
"nativeSrc": "9684:37:1",
"nodeType": "YulFunctionCall",
"src": "9684:37:1"
},
"variables": [
{
"name": "newLen",
"nativeSrc": "9674:6:1",
"nodeType": "YulTypedName",
"src": "9674:6:1",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "9806:22:1",
"nodeType": "YulBlock",
"src": "9806:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nativeSrc": "9808:16:1",
"nodeType": "YulIdentifier",
"src": "9808:16:1"
},
"nativeSrc": "9808:18:1",
"nodeType": "YulFunctionCall",
"src": "9808:18:1"
},
"nativeSrc": "9808:18:1",
"nodeType": "YulExpressionStatement",
"src": "9808:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "newLen",
"nativeSrc": "9778:6:1",
"nodeType": "YulIdentifier",
"src": "9778:6:1"
},
{
"kind": "number",
"nativeSrc": "9786:18:1",
"nodeType": "YulLiteral",
"src": "9786:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "9775:2:1",
"nodeType": "YulIdentifier",
"src": "9775:2:1"
},
"nativeSrc": "9775:30:1",
"nodeType": "YulFunctionCall",
"src": "9775:30:1"
},
"nativeSrc": "9772:56:1",
"nodeType": "YulIf",
"src": "9772:56:1"
},
{
"nativeSrc": "9838:52:1",
"nodeType": "YulVariableDeclaration",
"src": "9838:52:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "slot",
"nativeSrc": "9884:4:1",
"nodeType": "YulIdentifier",
"src": "9884:4:1"
}
],
"functionName": {
"name": "sload",
"nativeSrc": "9878:5:1",
"nodeType": "YulIdentifier",
"src": "9878:5:1"
},
"nativeSrc": "9878:11:1",
"nodeType": "YulFunctionCall",
"src": "9878:11:1"
}
],
"functionName": {
"name": "extract_byte_array_length",
"nativeSrc": "9852:25:1",
"nodeType": "YulIdentifier",
"src": "9852:25:1"
},
"nativeSrc": "9852:38:1",
"nodeType": "YulFunctionCall",
"src": "9852:38:1"
},
"variables": [
{
"name": "oldLen",
"nativeSrc": "9842:6:1",
"nodeType": "YulTypedName",
"src": "9842:6:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "9983:4:1",
"nodeType": "YulIdentifier",
"src": "9983:4:1"
},
{
"name": "oldLen",
"nativeSrc": "9989:6:1",
"nodeType": "YulIdentifier",
"src": "9989:6:1"
},
{
"name": "newLen",
"nativeSrc": "9997:6:1",
"nodeType": "YulIdentifier",
"src": "9997:6:1"
}
],
"functionName": {
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nativeSrc": "9937:45:1",
"nodeType": "YulIdentifier",
"src": "9937:45:1"
},
"nativeSrc": "9937:67:1",
"nodeType": "YulFunctionCall",
"src": "9937:67:1"
},
"nativeSrc": "9937:67:1",
"nodeType": "YulExpressionStatement",
"src": "9937:67:1"
},
{
"nativeSrc": "10014:18:1",
"nodeType": "YulVariableDeclaration",
"src": "10014:18:1",
"value": {
"kind": "number",
"nativeSrc": "10031:1:1",
"nodeType": "YulLiteral",
"src": "10031:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "srcOffset",
"nativeSrc": "10018:9:1",
"nodeType": "YulTypedName",
"src": "10018:9:1",
"type": ""
}
]
},
{
"nativeSrc": "10042:17:1",
"nodeType": "YulAssignment",
"src": "10042:17:1",
"value": {
"kind": "number",
"nativeSrc": "10055:4:1",
"nodeType": "YulLiteral",
"src": "10055:4:1",
"type": "",
"value": "0x20"
},
"variableNames": [
{
"name": "srcOffset",
"nativeSrc": "10042:9:1",
"nodeType": "YulIdentifier",
"src": "10042:9:1"
}
]
},
{
"cases": [
{
"body": {
"nativeSrc": "10106:611:1",
"nodeType": "YulBlock",
"src": "10106:611:1",
"statements": [
{
"nativeSrc": "10120:37:1",
"nodeType": "YulVariableDeclaration",
"src": "10120:37:1",
"value": {
"arguments": [
{
"name": "newLen",
"nativeSrc": "10139:6:1",
"nodeType": "YulIdentifier",
"src": "10139:6:1"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "10151:4:1",
"nodeType": "YulLiteral",
"src": "10151:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "not",
"nativeSrc": "10147:3:1",
"nodeType": "YulIdentifier",
"src": "10147:3:1"
},
"nativeSrc": "10147:9:1",
"nodeType": "YulFunctionCall",
"src": "10147:9:1"
}
],
"functionName": {
"name": "and",
"nativeSrc": "10135:3:1",
"nodeType": "YulIdentifier",
"src": "10135:3:1"
},
"nativeSrc": "10135:22:1",
"nodeType": "YulFunctionCall",
"src": "10135:22:1"
},
"variables": [
{
"name": "loopEnd",
"nativeSrc": "10124:7:1",
"nodeType": "YulTypedName",
"src": "10124:7:1",
"type": ""
}
]
},
{
"nativeSrc": "10171:51:1",
"nodeType": "YulVariableDeclaration",
"src": "10171:51:1",
"value": {
"arguments": [
{
"name": "slot",
"nativeSrc": "10217:4:1",
"nodeType": "YulIdentifier",
"src": "10217:4:1"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nativeSrc": "10185:31:1",
"nodeType": "YulIdentifier",
"src": "10185:31:1"
},
"nativeSrc": "10185:37:1",
"nodeType": "YulFunctionCall",
"src": "10185:37:1"
},
"variables": [
{
"name": "dstPtr",
"nativeSrc": "10175:6:1",
"nodeType": "YulTypedName",
"src": "10175:6:1",
"type": ""
}
]
},
{
"nativeSrc": "10235:10:1",
"nodeType": "YulVariableDeclaration",
"src": "10235:10:1",
"value": {
"kind": "number",
"nativeSrc": "10244:1:1",
"nodeType": "YulLiteral",
"src": "10244:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nativeSrc": "10239:1:1",
"nodeType": "YulTypedName",
"src": "10239:1:1",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "10303:163:1",
"nodeType": "YulBlock",
"src": "10303:163:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nativeSrc": "10328:6:1",
"nodeType": "YulIdentifier",
"src": "10328:6:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nativeSrc": "10346:3:1",
"nodeType": "YulIdentifier",
"src": "10346:3:1"
},
{
"name": "srcOffset",
"nativeSrc": "10351:9:1",
"nodeType": "YulIdentifier",
"src": "10351:9:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10342:3:1",
"nodeType": "YulIdentifier",
"src": "10342:3:1"
},
"nativeSrc": "10342:19:1",
"nodeType": "YulFunctionCall",
"src": "10342:19:1"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "10336:5:1",
"nodeType": "YulIdentifier",
"src": "10336:5:1"
},
"nativeSrc": "10336:26:1",
"nodeType": "YulFunctionCall",
"src": "10336:26:1"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "10321:6:1",
"nodeType": "YulIdentifier",
"src": "10321:6:1"
},
"nativeSrc": "10321:42:1",
"nodeType": "YulFunctionCall",
"src": "10321:42:1"
},
"nativeSrc": "10321:42:1",
"nodeType": "YulExpressionStatement",
"src": "10321:42:1"
},
{
"nativeSrc": "10380:24:1",
"nodeType": "YulAssignment",
"src": "10380:24:1",
"value": {
"arguments": [
{
"name": "dstPtr",
"nativeSrc": "10394:6:1",
"nodeType": "YulIdentifier",
"src": "10394:6:1"
},
{
"kind": "number",
"nativeSrc": "10402:1:1",
"nodeType": "YulLiteral",
"src": "10402:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10390:3:1",
"nodeType": "YulIdentifier",
"src": "10390:3:1"
},
"nativeSrc": "10390:14:1",
"nodeType": "YulFunctionCall",
"src": "10390:14:1"
},
"variableNames": [
{
"name": "dstPtr",
"nativeSrc": "10380:6:1",
"nodeType": "YulIdentifier",
"src": "10380:6:1"
}
]
},
{
"nativeSrc": "10421:31:1",
"nodeType": "YulAssignment",
"src": "10421:31:1",
"value": {
"arguments": [
{
"name": "srcOffset",
"nativeSrc": "10438:9:1",
"nodeType": "YulIdentifier",
"src": "10438:9:1"
},
{
"kind": "number",
"nativeSrc": "10449:2:1",
"nodeType": "YulLiteral",
"src": "10449:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10434:3:1",
"nodeType": "YulIdentifier",
"src": "10434:3:1"
},
"nativeSrc": "10434:18:1",
"nodeType": "YulFunctionCall",
"src": "10434:18:1"
},
"variableNames": [
{
"name": "srcOffset",
"nativeSrc": "10421:9:1",
"nodeType": "YulIdentifier",
"src": "10421:9:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nativeSrc": "10269:1:1",
"nodeType": "YulIdentifier",
"src": "10269:1:1"
},
{
"name": "loopEnd",
"nativeSrc": "10272:7:1",
"nodeType": "YulIdentifier",
"src": "10272:7:1"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "10266:2:1",
"nodeType": "YulIdentifier",
"src": "10266:2:1"
},
"nativeSrc": "10266:14:1",
"nodeType": "YulFunctionCall",
"src": "10266:14:1"
},
"nativeSrc": "10258:208:1",
"nodeType": "YulForLoop",
"post": {
"nativeSrc": "10281:21:1",
"nodeType": "YulBlock",
"src": "10281:21:1",
"statements": [
{
"nativeSrc": "10283:17:1",
"nodeType": "YulAssignment",
"src": "10283:17:1",
"value": {
"arguments": [
{
"name": "i",
"nativeSrc": "10292:1:1",
"nodeType": "YulIdentifier",
"src": "10292:1:1"
},
{
"kind": "number",
"nativeSrc": "10295:4:1",
"nodeType": "YulLiteral",
"src": "10295:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10288:3:1",
"nodeType": "YulIdentifier",
"src": "10288:3:1"
},
"nativeSrc": "10288:12:1",
"nodeType": "YulFunctionCall",
"src": "10288:12:1"
},
"variableNames": [
{
"name": "i",
"nativeSrc": "10283:1:1",
"nodeType": "YulIdentifier",
"src": "10283:1:1"
}
]
}
]
},
"pre": {
"nativeSrc": "10262:3:1",
"nodeType": "YulBlock",
"src": "10262:3:1",
"statements": []
},
"src": "10258:208:1"
},
{
"body": {
"nativeSrc": "10502:156:1",
"nodeType": "YulBlock",
"src": "10502:156:1",
"statements": [
{
"nativeSrc": "10520:43:1",
"nodeType": "YulVariableDeclaration",
"src": "10520:43:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nativeSrc": "10547:3:1",
"nodeType": "YulIdentifier",
"src": "10547:3:1"
},
{
"name": "srcOffset",
"nativeSrc": "10552:9:1",
"nodeType": "YulIdentifier",
"src": "10552:9:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10543:3:1",
"nodeType": "YulIdentifier",
"src": "10543:3:1"
},
"nativeSrc": "10543:19:1",
"nodeType": "YulFunctionCall",
"src": "10543:19:1"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "10537:5:1",
"nodeType": "YulIdentifier",
"src": "10537:5:1"
},
"nativeSrc": "10537:26:1",
"nodeType": "YulFunctionCall",
"src": "10537:26:1"
},
"variables": [
{
"name": "lastValue",
"nativeSrc": "10524:9:1",
"nodeType": "YulTypedName",
"src": "10524:9:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nativeSrc": "10587:6:1",
"nodeType": "YulIdentifier",
"src": "10587:6:1"
},
{
"arguments": [
{
"name": "lastValue",
"nativeSrc": "10614:9:1",
"nodeType": "YulIdentifier",
"src": "10614:9:1"
},
{
"arguments": [
{
"name": "newLen",
"nativeSrc": "10629:6:1",
"nodeType": "YulIdentifier",
"src": "10629:6:1"
},
{
"kind": "number",
"nativeSrc": "10637:4:1",
"nodeType": "YulLiteral",
"src": "10637:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "and",
"nativeSrc": "10625:3:1",
"nodeType": "YulIdentifier",
"src": "10625:3:1"
},
"nativeSrc": "10625:17:1",
"nodeType": "YulFunctionCall",
"src": "10625:17:1"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nativeSrc": "10595:18:1",
"nodeType": "YulIdentifier",
"src": "10595:18:1"
},
"nativeSrc": "10595:48:1",
"nodeType": "YulFunctionCall",
"src": "10595:48:1"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "10580:6:1",
"nodeType": "YulIdentifier",
"src": "10580:6:1"
},
"nativeSrc": "10580:64:1",
"nodeType": "YulFunctionCall",
"src": "10580:64:1"
},
"nativeSrc": "10580:64:1",
"nodeType": "YulExpressionStatement",
"src": "10580:64:1"
}
]
},
"condition": {
"arguments": [
{
"name": "loopEnd",
"nativeSrc": "10485:7:1",
"nodeType": "YulIdentifier",
"src": "10485:7:1"
},
{
"name": "newLen",
"nativeSrc": "10494:6:1",
"nodeType": "YulIdentifier",
"src": "10494:6:1"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "10482:2:1",
"nodeType": "YulIdentifier",
"src": "10482:2:1"
},
"nativeSrc": "10482:19:1",
"nodeType": "YulFunctionCall",
"src": "10482:19:1"
},
"nativeSrc": "10479:179:1",
"nodeType": "YulIf",
"src": "10479:179:1"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "10678:4:1",
"nodeType": "YulIdentifier",
"src": "10678:4:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "newLen",
"nativeSrc": "10692:6:1",
"nodeType": "YulIdentifier",
"src": "10692:6:1"
},
{
"kind": "number",
"nativeSrc": "10700:1:1",
"nodeType": "YulLiteral",
"src": "10700:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "10688:3:1",
"nodeType": "YulIdentifier",
"src": "10688:3:1"
},
"nativeSrc": "10688:14:1",
"nodeType": "YulFunctionCall",
"src": "10688:14:1"
},
{
"kind": "number",
"nativeSrc": "10704:1:1",
"nodeType": "YulLiteral",
"src": "10704:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10684:3:1",
"nodeType": "YulIdentifier",
"src": "10684:3:1"
},
"nativeSrc": "10684:22:1",
"nodeType": "YulFunctionCall",
"src": "10684:22:1"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "10671:6:1",
"nodeType": "YulIdentifier",
"src": "10671:6:1"
},
"nativeSrc": "10671:36:1",
"nodeType": "YulFunctionCall",
"src": "10671:36:1"
},
"nativeSrc": "10671:36:1",
"nodeType": "YulExpressionStatement",
"src": "10671:36:1"
}
]
},
"nativeSrc": "10099:618:1",
"nodeType": "YulCase",
"src": "10099:618:1",
"value": {
"kind": "number",
"nativeSrc": "10104:1:1",
"nodeType": "YulLiteral",
"src": "10104:1:1",
"type": "",
"value": "1"
}
},
{
"body": {
"nativeSrc": "10734:222:1",
"nodeType": "YulBlock",
"src": "10734:222:1",
"statements": [
{
"nativeSrc": "10748:14:1",
"nodeType": "YulVariableDeclaration",
"src": "10748:14:1",
"value": {
"kind": "number",
"nativeSrc": "10761:1:1",
"nodeType": "YulLiteral",
"src": "10761:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "value",
"nativeSrc": "10752:5:1",
"nodeType": "YulTypedName",
"src": "10752:5:1",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "10785:67:1",
"nodeType": "YulBlock",
"src": "10785:67:1",
"statements": [
{
"nativeSrc": "10803:35:1",
"nodeType": "YulAssignment",
"src": "10803:35:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nativeSrc": "10822:3:1",
"nodeType": "YulIdentifier",
"src": "10822:3:1"
},
{
"name": "srcOffset",
"nativeSrc": "10827:9:1",
"nodeType": "YulIdentifier",
"src": "10827:9:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10818:3:1",
"nodeType": "YulIdentifier",
"src": "10818:3:1"
},
"nativeSrc": "10818:19:1",
"nodeType": "YulFunctionCall",
"src": "10818:19:1"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "10812:5:1",
"nodeType": "YulIdentifier",
"src": "10812:5:1"
},
"nativeSrc": "10812:26:1",
"nodeType": "YulFunctionCall",
"src": "10812:26:1"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "10803:5:1",
"nodeType": "YulIdentifier",
"src": "10803:5:1"
}
]
}
]
},
"condition": {
"name": "newLen",
"nativeSrc": "10778:6:1",
"nodeType": "YulIdentifier",
"src": "10778:6:1"
},
"nativeSrc": "10775:77:1",
"nodeType": "YulIf",
"src": "10775:77:1"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "10872:4:1",
"nodeType": "YulIdentifier",
"src": "10872:4:1"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "10931:5:1",
"nodeType": "YulIdentifier",
"src": "10931:5:1"
},
{
"name": "newLen",
"nativeSrc": "10938:6:1",
"nodeType": "YulIdentifier",
"src": "10938:6:1"
}
],
"functionName": {
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nativeSrc": "10878:52:1",
"nodeType": "YulIdentifier",
"src": "10878:52:1"
},
"nativeSrc": "10878:67:1",
"nodeType": "YulFunctionCall",
"src": "10878:67:1"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "10865:6:1",
"nodeType": "YulIdentifier",
"src": "10865:6:1"
},
"nativeSrc": "10865:81:1",
"nodeType": "YulFunctionCall",
"src": "10865:81:1"
},
"nativeSrc": "10865:81:1",
"nodeType": "YulExpressionStatement",
"src": "10865:81:1"
}
]
},
"nativeSrc": "10726:230:1",
"nodeType": "YulCase",
"src": "10726:230:1",
"value": "default"
}
],
"expression": {
"arguments": [
{
"name": "newLen",
"nativeSrc": "10079:6:1",
"nodeType": "YulIdentifier",
"src": "10079:6:1"
},
{
"kind": "number",
"nativeSrc": "10087:2:1",
"nodeType": "YulLiteral",
"src": "10087:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "10076:2:1",
"nodeType": "YulIdentifier",
"src": "10076:2:1"
},
"nativeSrc": "10076:14:1",
"nodeType": "YulFunctionCall",
"src": "10076:14:1"
},
"nativeSrc": "10069:887:1",
"nodeType": "YulSwitch",
"src": "10069:887:1"
}
]
},
"name": "copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage",
"nativeSrc": "9567:1395:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nativeSrc": "9648:4:1",
"nodeType": "YulTypedName",
"src": "9648:4:1",
"type": ""
},
{
"name": "src",
"nativeSrc": "9654:3:1",
"nodeType": "YulTypedName",
"src": "9654:3:1",
"type": ""
}
],
"src": "9567:1395:1"
},
{
"body": {
"nativeSrc": "11082:34:1",
"nodeType": "YulBlock",
"src": "11082:34:1",
"statements": [
{
"nativeSrc": "11092:18:1",
"nodeType": "YulAssignment",
"src": "11092:18:1",
"value": {
"name": "pos",
"nativeSrc": "11107:3:1",
"nodeType": "YulIdentifier",
"src": "11107:3:1"
},
"variableNames": [
{
"name": "updated_pos",
"nativeSrc": "11092:11:1",
"nodeType": "YulIdentifier",
"src": "11092:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nativeSrc": "10968:148:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "11054:3:1",
"nodeType": "YulTypedName",
"src": "11054:3:1",
"type": ""
},
{
"name": "length",
"nativeSrc": "11059:6:1",
"nodeType": "YulTypedName",
"src": "11059:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nativeSrc": "11070:11:1",
"nodeType": "YulTypedName",
"src": "11070:11:1",
"type": ""
}
],
"src": "10968:148:1"
},
{
"body": {
"nativeSrc": "11232:280:1",
"nodeType": "YulBlock",
"src": "11232:280:1",
"statements": [
{
"nativeSrc": "11242:53:1",
"nodeType": "YulVariableDeclaration",
"src": "11242:53:1",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "11289:5:1",
"nodeType": "YulIdentifier",
"src": "11289:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "11256:32:1",
"nodeType": "YulIdentifier",
"src": "11256:32:1"
},
"nativeSrc": "11256:39:1",
"nodeType": "YulFunctionCall",
"src": "11256:39:1"
},
"variables": [
{
"name": "length",
"nativeSrc": "11246:6:1",
"nodeType": "YulTypedName",
"src": "11246:6:1",
"type": ""
}
]
},
{
"nativeSrc": "11304:96:1",
"nodeType": "YulAssignment",
"src": "11304:96:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "11388:3:1",
"nodeType": "YulIdentifier",
"src": "11388:3:1"
},
{
"name": "length",
"nativeSrc": "11393:6:1",
"nodeType": "YulIdentifier",
"src": "11393:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nativeSrc": "11311:76:1",
"nodeType": "YulIdentifier",
"src": "11311:76:1"
},
"nativeSrc": "11311:89:1",
"nodeType": "YulFunctionCall",
"src": "11311:89:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "11304:3:1",
"nodeType": "YulIdentifier",
"src": "11304:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "11448:5:1",
"nodeType": "YulIdentifier",
"src": "11448:5:1"
},
{
"kind": "number",
"nativeSrc": "11455:4:1",
"nodeType": "YulLiteral",
"src": "11455:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "11444:3:1",
"nodeType": "YulIdentifier",
"src": "11444:3:1"
},
"nativeSrc": "11444:16:1",
"nodeType": "YulFunctionCall",
"src": "11444:16:1"
},
{
"name": "pos",
"nativeSrc": "11462:3:1",
"nodeType": "YulIdentifier",
"src": "11462:3:1"
},
{
"name": "length",
"nativeSrc": "11467:6:1",
"nodeType": "YulIdentifier",
"src": "11467:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nativeSrc": "11409:34:1",
"nodeType": "YulIdentifier",
"src": "11409:34:1"
},
"nativeSrc": "11409:65:1",
"nodeType": "YulFunctionCall",
"src": "11409:65:1"
},
"nativeSrc": "11409:65:1",
"nodeType": "YulExpressionStatement",
"src": "11409:65:1"
},
{
"nativeSrc": "11483:23:1",
"nodeType": "YulAssignment",
"src": "11483:23:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "11494:3:1",
"nodeType": "YulIdentifier",
"src": "11494:3:1"
},
{
"name": "length",
"nativeSrc": "11499:6:1",
"nodeType": "YulIdentifier",
"src": "11499:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "11490:3:1",
"nodeType": "YulIdentifier",
"src": "11490:3:1"
},
"nativeSrc": "11490:16:1",
"nodeType": "YulFunctionCall",
"src": "11490:16:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "11483:3:1",
"nodeType": "YulIdentifier",
"src": "11483:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nativeSrc": "11122:390:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "11213:5:1",
"nodeType": "YulTypedName",
"src": "11213:5:1",
"type": ""
},
{
"name": "pos",
"nativeSrc": "11220:3:1",
"nodeType": "YulTypedName",
"src": "11220:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "11228:3:1",
"nodeType": "YulTypedName",
"src": "11228:3:1",
"type": ""
}
],
"src": "11122:390:1"
},
{
"body": {
"nativeSrc": "11654:139:1",
"nodeType": "YulBlock",
"src": "11654:139:1",
"statements": [
{
"nativeSrc": "11665:102:1",
"nodeType": "YulAssignment",
"src": "11665:102:1",
"value": {
"arguments": [
{
"name": "value0",
"nativeSrc": "11754:6:1",
"nodeType": "YulIdentifier",
"src": "11754:6:1"
},
{
"name": "pos",
"nativeSrc": "11763:3:1",
"nodeType": "YulIdentifier",
"src": "11763:3:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nativeSrc": "11672:81:1",
"nodeType": "YulIdentifier",
"src": "11672:81:1"
},
"nativeSrc": "11672:95:1",
"nodeType": "YulFunctionCall",
"src": "11672:95:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "11665:3:1",
"nodeType": "YulIdentifier",
"src": "11665:3:1"
}
]
},
{
"nativeSrc": "11777:10:1",
"nodeType": "YulAssignment",
"src": "11777:10:1",
"value": {
"name": "pos",
"nativeSrc": "11784:3:1",
"nodeType": "YulIdentifier",
"src": "11784:3:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "11777:3:1",
"nodeType": "YulIdentifier",
"src": "11777:3:1"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nativeSrc": "11518:275:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "11633:3:1",
"nodeType": "YulTypedName",
"src": "11633:3:1",
"type": ""
},
{
"name": "value0",
"nativeSrc": "11639:6:1",
"nodeType": "YulTypedName",
"src": "11639:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "11650:3:1",
"nodeType": "YulTypedName",
"src": "11650:3:1",
"type": ""
}
],
"src": "11518:275: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 function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function array_allocation_size_t_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function copy_calldata_to_memory_with_cleanup(src, dst, length) {\n calldatacopy(dst, src, length)\n mstore(add(dst, length), 0)\n }\n\n function abi_decode_available_length_t_string_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_string_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_calldata_to_memory_with_cleanup(src, dst, length)\n }\n\n // string\n function abi_decode_t_string_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_string_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_tuple_t_string_memory_ptrt_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_string_memory_ptr(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function copy_memory_to_memory_with_cleanup(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n mstore(add(dst, length), 0)\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory_with_cleanup(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_uint256_t_string_memory_ptr__to_t_uint256_t_string_memory_ptr__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n mstore(add(headStart, 32), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value1, tail)\n\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function array_dataslot_t_string_storage(ptr) -> data {\n data := ptr\n\n mstore(0, ptr)\n data := keccak256(0, 0x20)\n\n }\n\n function divide_by_32_ceil(value) -> result {\n result := div(add(value, 31), 32)\n }\n\n function shift_left_dynamic(bits, value) -> newValue {\n newValue :=\n\n shl(bits, value)\n\n }\n\n function update_byte_slice_dynamic32(value, shiftBytes, toInsert) -> result {\n let shiftBits := mul(shiftBytes, 8)\n let mask := shift_left_dynamic(shiftBits, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n toInsert := shift_left_dynamic(shiftBits, toInsert)\n value := and(value, not(mask))\n result := or(value, and(toInsert, mask))\n }\n\n function identity(value) -> ret {\n ret := value\n }\n\n function convert_t_uint256_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint256(identity(cleanup_t_uint256(value)))\n }\n\n function prepare_store_t_uint256(value) -> ret {\n ret := value\n }\n\n function update_storage_value_t_uint256_to_t_uint256(slot, offset, value_0) {\n let convertedValue_0 := convert_t_uint256_to_t_uint256(value_0)\n sstore(slot, update_byte_slice_dynamic32(sload(slot), offset, prepare_store_t_uint256(convertedValue_0)))\n }\n\n function zero_value_for_split_t_uint256() -> ret {\n ret := 0\n }\n\n function storage_set_to_zero_t_uint256(slot, offset) {\n let zero_0 := zero_value_for_split_t_uint256()\n update_storage_value_t_uint256_to_t_uint256(slot, offset, zero_0)\n }\n\n function clear_storage_range_t_bytes1(start, end) {\n for {} lt(start, end) { start := add(start, 1) }\n {\n storage_set_to_zero_t_uint256(start, 0)\n }\n }\n\n function clean_up_bytearray_end_slots_t_string_storage(array, len, startIndex) {\n\n if gt(len, 31) {\n let dataArea := array_dataslot_t_string_storage(array)\n let deleteStart := add(dataArea, divide_by_32_ceil(startIndex))\n // If we are clearing array to be short byte array, we want to clear only data starting from array data area.\n if lt(startIndex, 32) { deleteStart := dataArea }\n clear_storage_range_t_bytes1(deleteStart, add(dataArea, divide_by_32_ceil(len)))\n }\n\n }\n\n function shift_right_unsigned_dynamic(bits, value) -> newValue {\n newValue :=\n\n shr(bits, value)\n\n }\n\n function mask_bytes_dynamic(data, bytes) -> result {\n let mask := not(shift_right_unsigned_dynamic(mul(8, bytes), not(0)))\n result := and(data, mask)\n }\n function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used {\n // we want to save only elements that are part of the array after resizing\n // others should be set to zero\n data := mask_bytes_dynamic(data, len)\n used := or(data, mul(2, len))\n }\n function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src) {\n\n let newLen := array_length_t_string_memory_ptr(src)\n // Make sure array length is sane\n if gt(newLen, 0xffffffffffffffff) { panic_error_0x41() }\n\n let oldLen := extract_byte_array_length(sload(slot))\n\n // potentially truncate data\n clean_up_bytearray_end_slots_t_string_storage(slot, oldLen, newLen)\n\n let srcOffset := 0\n\n srcOffset := 0x20\n\n switch gt(newLen, 31)\n case 1 {\n let loopEnd := and(newLen, not(0x1f))\n\n let dstPtr := array_dataslot_t_string_storage(slot)\n let i := 0\n for { } lt(i, loopEnd) { i := add(i, 0x20) } {\n sstore(dstPtr, mload(add(src, srcOffset)))\n dstPtr := add(dstPtr, 1)\n srcOffset := add(srcOffset, 32)\n }\n if lt(loopEnd, newLen) {\n let lastValue := mload(add(src, srcOffset))\n sstore(dstPtr, mask_bytes_dynamic(lastValue, and(newLen, 0x1f)))\n }\n sstore(slot, add(mul(newLen, 2), 1))\n }\n default {\n let value := 0\n if newLen {\n value := mload(add(src, srcOffset))\n }\n sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\n }\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length) -> updated_pos {\n updated_pos := pos\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length)\n copy_memory_to_memory_with_cleanup(add(value, 0x20), pos, length)\n end := add(pos, length)\n }\n\n function abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos , value0) -> end {\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value0, pos)\n\n end := pos\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561000f575f80fd5b5060043610610055575f3560e01c80632e64cec1146100595780636057361d146100775780636f760f41146100935780638bab8dd5146100af5780639e7a13ad146100df575b5f80fd5b610061610110565b60405161006e919061029f565b60405180910390f35b610091600480360381019061008c91906102f3565b610118565b005b6100ad60048036038101906100a8919061045a565b610121565b005b6100c960048036038101906100c491906104b4565b6101a5565b6040516100d6919061029f565b60405180910390f35b6100f960048036038101906100f491906102f3565b6101d2565b604051610107929190610575565b60405180910390f35b5f8054905090565b805f8190555050565b6001604051806040016040528083815260200184815250908060018154018082558091505060019003905f5260205f2090600202015f909190919091505f820151815f0155602082015181600101908161017b919061079d565b5050508060028360405161018f91906108a6565b9081526020016040518091039020819055505050565b6002818051602081018201805184825260208301602085012081835280955050505050505f915090505481565b600181815481106101e1575f80fd5b905f5260205f2090600202015f91509050805f015490806001018054610206906105d0565b80601f0160208091040260200160405190810160405280929190818152602001828054610232906105d0565b801561027d5780601f106102545761010080835404028352916020019161027d565b820191905f5260205f20905b81548152906001019060200180831161026057829003601f168201915b5050505050905082565b5f819050919050565b61029981610287565b82525050565b5f6020820190506102b25f830184610290565b92915050565b5f604051905090565b5f80fd5b5f80fd5b6102d281610287565b81146102dc575f80fd5b50565b5f813590506102ed816102c9565b92915050565b5f60208284031215610308576103076102c1565b5b5f610315848285016102df565b91505092915050565b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61036c82610326565b810181811067ffffffffffffffff8211171561038b5761038a610336565b5b80604052505050565b5f61039d6102b8565b90506103a98282610363565b919050565b5f67ffffffffffffffff8211156103c8576103c7610336565b5b6103d182610326565b9050602081019050919050565b828183375f83830152505050565b5f6103fe6103f9846103ae565b610394565b90508281526020810184848401111561041a57610419610322565b5b6104258482856103de565b509392505050565b5f82601f8301126104415761044061031e565b5b81356104518482602086016103ec565b91505092915050565b5f80604083850312156104705761046f6102c1565b5b5f83013567ffffffffffffffff81111561048d5761048c6102c5565b5b6104998582860161042d565b92505060206104aa858286016102df565b9150509250929050565b5f602082840312156104c9576104c86102c1565b5b5f82013567ffffffffffffffff8111156104e6576104e56102c5565b5b6104f28482850161042d565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610532578082015181840152602081019050610517565b5f8484015250505050565b5f610547826104fb565b6105518185610505565b9350610561818560208601610515565b61056a81610326565b840191505092915050565b5f6040820190506105885f830185610290565b818103602083015261059a818461053d565b90509392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806105e757607f821691505b6020821081036105fa576105f96105a3565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261065c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610621565b6106668683610621565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6106a161069c61069784610287565b61067e565b610287565b9050919050565b5f819050919050565b6106ba83610687565b6106ce6106c6826106a8565b84845461062d565b825550505050565b5f90565b6106e26106d6565b6106ed8184846106b1565b505050565b5b81811015610710576107055f826106da565b6001810190506106f3565b5050565b601f8211156107555761072681610600565b61072f84610612565b8101602085101561073e578190505b61075261074a85610612565b8301826106f2565b50505b505050565b5f82821c905092915050565b5f6107755f198460080261075a565b1980831691505092915050565b5f61078d8383610766565b9150826002028217905092915050565b6107a6826104fb565b67ffffffffffffffff8111156107bf576107be610336565b5b6107c982546105d0565b6107d4828285610714565b5f60209050601f831160018114610805575f84156107f3578287015190505b6107fd8582610782565b865550610864565b601f19841661081386610600565b5f5b8281101561083a57848901518255600182019150602085019450602081019050610815565b868310156108575784890151610853601f891682610766565b8355505b6001600288020188555050505b505050505050565b5f81905092915050565b5f610880826104fb565b61088a818561086c565b935061089a818560208601610515565b80840191505092915050565b5f6108b18284610876565b91508190509291505056fea26469706673582212202ca85e69a0270391c3932893581327baecc9b5ea3ac89ecb57ca239aabcf0d3664736f6c63430008180033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x55 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2E64CEC1 EQ PUSH2 0x59 JUMPI DUP1 PUSH4 0x6057361D EQ PUSH2 0x77 JUMPI DUP1 PUSH4 0x6F760F41 EQ PUSH2 0x93 JUMPI DUP1 PUSH4 0x8BAB8DD5 EQ PUSH2 0xAF JUMPI DUP1 PUSH4 0x9E7A13AD EQ PUSH2 0xDF JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x61 PUSH2 0x110 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x6E SWAP2 SWAP1 PUSH2 0x29F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x91 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x8C SWAP2 SWAP1 PUSH2 0x2F3 JUMP JUMPDEST PUSH2 0x118 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xAD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xA8 SWAP2 SWAP1 PUSH2 0x45A JUMP JUMPDEST PUSH2 0x121 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xC9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xC4 SWAP2 SWAP1 PUSH2 0x4B4 JUMP JUMPDEST PUSH2 0x1A5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD6 SWAP2 SWAP1 PUSH2 0x29F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xF9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF4 SWAP2 SWAP1 PUSH2 0x2F3 JUMP JUMPDEST PUSH2 0x1D2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x107 SWAP3 SWAP2 SWAP1 PUSH2 0x575 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH0 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE POP SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH0 DUP3 ADD MLOAD DUP2 PUSH0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP2 PUSH2 0x17B SWAP2 SWAP1 PUSH2 0x79D JUMP JUMPDEST POP POP POP DUP1 PUSH1 0x2 DUP4 PUSH1 0x40 MLOAD PUSH2 0x18F SWAP2 SWAP1 PUSH2 0x8A6 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x2 DUP2 DUP1 MLOAD PUSH1 0x20 DUP2 ADD DUP3 ADD DUP1 MLOAD DUP5 DUP3 MSTORE PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP6 ADD KECCAK256 DUP2 DUP4 MSTORE DUP1 SWAP6 POP POP POP POP POP POP PUSH0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x1E1 JUMPI PUSH0 DUP1 REVERT JUMPDEST SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH0 SWAP2 POP SWAP1 POP DUP1 PUSH0 ADD SLOAD SWAP1 DUP1 PUSH1 0x1 ADD DUP1 SLOAD PUSH2 0x206 SWAP1 PUSH2 0x5D0 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x232 SWAP1 PUSH2 0x5D0 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x27D JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x254 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x27D JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x260 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP DUP3 JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x299 DUP2 PUSH2 0x287 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2B2 PUSH0 DUP4 ADD DUP5 PUSH2 0x290 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x2D2 DUP2 PUSH2 0x287 JUMP JUMPDEST DUP2 EQ PUSH2 0x2DC JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2ED DUP2 PUSH2 0x2C9 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x308 JUMPI PUSH2 0x307 PUSH2 0x2C1 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x315 DUP5 DUP3 DUP6 ADD PUSH2 0x2DF JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH2 0x36C DUP3 PUSH2 0x326 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x38B JUMPI PUSH2 0x38A PUSH2 0x336 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x39D PUSH2 0x2B8 JUMP JUMPDEST SWAP1 POP PUSH2 0x3A9 DUP3 DUP3 PUSH2 0x363 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x3C8 JUMPI PUSH2 0x3C7 PUSH2 0x336 JUMP JUMPDEST JUMPDEST PUSH2 0x3D1 DUP3 PUSH2 0x326 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x3FE PUSH2 0x3F9 DUP5 PUSH2 0x3AE JUMP JUMPDEST PUSH2 0x394 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x41A JUMPI PUSH2 0x419 PUSH2 0x322 JUMP JUMPDEST JUMPDEST PUSH2 0x425 DUP5 DUP3 DUP6 PUSH2 0x3DE JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x441 JUMPI PUSH2 0x440 PUSH2 0x31E JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x451 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x3EC JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x470 JUMPI PUSH2 0x46F PUSH2 0x2C1 JUMP JUMPDEST JUMPDEST PUSH0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x48D JUMPI PUSH2 0x48C PUSH2 0x2C5 JUMP JUMPDEST JUMPDEST PUSH2 0x499 DUP6 DUP3 DUP7 ADD PUSH2 0x42D JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x4AA DUP6 DUP3 DUP7 ADD PUSH2 0x2DF JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4C9 JUMPI PUSH2 0x4C8 PUSH2 0x2C1 JUMP JUMPDEST JUMPDEST PUSH0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x4E6 JUMPI PUSH2 0x4E5 PUSH2 0x2C5 JUMP JUMPDEST JUMPDEST PUSH2 0x4F2 DUP5 DUP3 DUP6 ADD PUSH2 0x42D JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x532 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x517 JUMP JUMPDEST PUSH0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x547 DUP3 PUSH2 0x4FB JUMP JUMPDEST PUSH2 0x551 DUP2 DUP6 PUSH2 0x505 JUMP JUMPDEST SWAP4 POP PUSH2 0x561 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x515 JUMP JUMPDEST PUSH2 0x56A DUP2 PUSH2 0x326 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x588 PUSH0 DUP4 ADD DUP6 PUSH2 0x290 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x59A DUP2 DUP5 PUSH2 0x53D JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x5E7 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x5FA JUMPI PUSH2 0x5F9 PUSH2 0x5A3 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP DUP2 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x8 DUP4 MUL PUSH2 0x65C PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH2 0x621 JUMP JUMPDEST PUSH2 0x666 DUP7 DUP4 PUSH2 0x621 JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x6A1 PUSH2 0x69C PUSH2 0x697 DUP5 PUSH2 0x287 JUMP JUMPDEST PUSH2 0x67E JUMP JUMPDEST PUSH2 0x287 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x6BA DUP4 PUSH2 0x687 JUMP JUMPDEST PUSH2 0x6CE PUSH2 0x6C6 DUP3 PUSH2 0x6A8 JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH2 0x62D JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH0 SWAP1 JUMP JUMPDEST PUSH2 0x6E2 PUSH2 0x6D6 JUMP JUMPDEST PUSH2 0x6ED DUP2 DUP5 DUP5 PUSH2 0x6B1 JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x710 JUMPI PUSH2 0x705 PUSH0 DUP3 PUSH2 0x6DA JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x6F3 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x755 JUMPI PUSH2 0x726 DUP2 PUSH2 0x600 JUMP JUMPDEST PUSH2 0x72F DUP5 PUSH2 0x612 JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x73E JUMPI DUP2 SWAP1 POP JUMPDEST PUSH2 0x752 PUSH2 0x74A DUP6 PUSH2 0x612 JUMP JUMPDEST DUP4 ADD DUP3 PUSH2 0x6F2 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x775 PUSH0 NOT DUP5 PUSH1 0x8 MUL PUSH2 0x75A JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x78D DUP4 DUP4 PUSH2 0x766 JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x7A6 DUP3 PUSH2 0x4FB JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x7BF JUMPI PUSH2 0x7BE PUSH2 0x336 JUMP JUMPDEST JUMPDEST PUSH2 0x7C9 DUP3 SLOAD PUSH2 0x5D0 JUMP JUMPDEST PUSH2 0x7D4 DUP3 DUP3 DUP6 PUSH2 0x714 JUMP JUMPDEST PUSH0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH2 0x805 JUMPI PUSH0 DUP5 ISZERO PUSH2 0x7F3 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH2 0x7FD DUP6 DUP3 PUSH2 0x782 JUMP JUMPDEST DUP7 SSTORE POP PUSH2 0x864 JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH2 0x813 DUP7 PUSH2 0x600 JUMP JUMPDEST PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x83A JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x815 JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH2 0x857 JUMPI DUP5 DUP10 ADD MLOAD PUSH2 0x853 PUSH1 0x1F DUP10 AND DUP3 PUSH2 0x766 JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x880 DUP3 PUSH2 0x4FB JUMP JUMPDEST PUSH2 0x88A DUP2 DUP6 PUSH2 0x86C JUMP JUMPDEST SWAP4 POP PUSH2 0x89A DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x515 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x8B1 DUP3 DUP5 PUSH2 0x876 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x2C 0xA8 MCOPY PUSH10 0xA0270391C39328935813 0x27 0xBA 0xEC 0xC9 0xB5 0xEA GASPRICE 0xC8 SWAP15 0xCB JUMPI 0xCA 0x23 SWAP11 0xAB 0xCF 0xD CALLDATASIZE PUSH5 0x736F6C6343 STOP ADDMOD XOR STOP CALLER ",
"sourceMap": "138:649:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;505:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;399:96;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;598:187;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;338:54;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;309:22;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;505:87;546:7;571:14;;564:21;;505:87;:::o;399:96::-;473:15;456:14;:32;;;;399:96;:::o;598:187::-;680:6;692:30;;;;;;;;699:15;692:30;;;;716:5;692:30;;;680:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;763:15;733:20;754:5;733:27;;;;;;:::i;:::-;;;;;;;;;;;;;:45;;;;598:187;;:::o;338:54::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;309:22::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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;442:75::-;475:6;508:2;502:9;492:19;;442:75;:::o;523:117::-;632:1;629;622:12;646:117;755:1;752;745: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;1377:117::-;1486:1;1483;1476:12;1500:117;1609:1;1606;1599:12;1623:102;1664:6;1715:2;1711:7;1706:2;1699:5;1695:14;1691:28;1681:38;;1623:102;;;:::o;1731:180::-;1779:77;1776:1;1769:88;1876:4;1873:1;1866:15;1900:4;1897:1;1890:15;1917:281;2000:27;2022:4;2000:27;:::i;:::-;1992:6;1988:40;2130:6;2118:10;2115:22;2094:18;2082:10;2079:34;2076:62;2073:88;;;2141:18;;:::i;:::-;2073:88;2181:10;2177:2;2170:22;1960:238;1917:281;;:::o;2204:129::-;2238:6;2265:20;;:::i;:::-;2255:30;;2294:33;2322:4;2314:6;2294:33;:::i;:::-;2204:129;;;:::o;2339:308::-;2401:4;2491:18;2483:6;2480:30;2477:56;;;2513:18;;:::i;:::-;2477:56;2551:29;2573:6;2551:29;:::i;:::-;2543:37;;2635:4;2629;2625:15;2617:23;;2339:308;;;:::o;2653:146::-;2750:6;2745:3;2740;2727:30;2791:1;2782:6;2777:3;2773:16;2766:27;2653:146;;;:::o;2805:425::-;2883:5;2908:66;2924:49;2966:6;2924:49;:::i;:::-;2908:66;:::i;:::-;2899:75;;2997:6;2990:5;2983:21;3035:4;3028:5;3024:16;3073:3;3064:6;3059:3;3055:16;3052:25;3049:112;;;3080:79;;:::i;:::-;3049:112;3170:54;3217:6;3212:3;3207;3170:54;:::i;:::-;2889:341;2805:425;;;;;:::o;3250:340::-;3306:5;3355:3;3348:4;3340:6;3336:17;3332:27;3322:122;;3363:79;;:::i;:::-;3322:122;3480:6;3467:20;3505:79;3580:3;3572:6;3565:4;3557:6;3553:17;3505:79;:::i;:::-;3496:88;;3312:278;3250:340;;;;:::o;3596:654::-;3674:6;3682;3731:2;3719:9;3710:7;3706:23;3702:32;3699:119;;;3737:79;;:::i;:::-;3699:119;3885:1;3874:9;3870:17;3857:31;3915:18;3907:6;3904:30;3901:117;;;3937:79;;:::i;:::-;3901:117;4042:63;4097:7;4088:6;4077:9;4073:22;4042:63;:::i;:::-;4032:73;;3828:287;4154:2;4180:53;4225:7;4216:6;4205:9;4201:22;4180:53;:::i;:::-;4170:63;;4125:118;3596:654;;;;;:::o;4256:509::-;4325:6;4374:2;4362:9;4353:7;4349:23;4345:32;4342:119;;;4380:79;;:::i;:::-;4342:119;4528:1;4517:9;4513:17;4500:31;4558:18;4550:6;4547:30;4544:117;;;4580:79;;:::i;:::-;4544:117;4685:63;4740:7;4731:6;4720:9;4716:22;4685:63;:::i;:::-;4675:73;;4471:287;4256:509;;;;:::o;4771:99::-;4823:6;4857:5;4851:12;4841:22;;4771:99;;;:::o;4876:169::-;4960:11;4994:6;4989:3;4982:19;5034:4;5029:3;5025:14;5010:29;;4876:169;;;;:::o;5051:246::-;5132:1;5142:113;5156:6;5153:1;5150:13;5142:113;;;5241:1;5236:3;5232:11;5226:18;5222:1;5217:3;5213:11;5206:39;5178:2;5175:1;5171:10;5166:15;;5142:113;;;5289:1;5280:6;5275:3;5271:16;5264:27;5113:184;5051:246;;;:::o;5303:377::-;5391:3;5419:39;5452:5;5419:39;:::i;:::-;5474:71;5538:6;5533:3;5474:71;:::i;:::-;5467:78;;5554:65;5612:6;5607:3;5600:4;5593:5;5589:16;5554:65;:::i;:::-;5644:29;5666:6;5644:29;:::i;:::-;5639:3;5635:39;5628:46;;5395:285;5303:377;;;;:::o;5686:423::-;5827:4;5865:2;5854:9;5850:18;5842:26;;5878:71;5946:1;5935:9;5931:17;5922:6;5878:71;:::i;:::-;5996:9;5990:4;5986:20;5981:2;5970:9;5966:18;5959:48;6024:78;6097:4;6088:6;6024:78;:::i;:::-;6016:86;;5686:423;;;;;:::o;6115:180::-;6163:77;6160:1;6153:88;6260:4;6257:1;6250:15;6284:4;6281:1;6274:15;6301:320;6345:6;6382:1;6376:4;6372:12;6362:22;;6429:1;6423:4;6419:12;6450:18;6440:81;;6506:4;6498:6;6494:17;6484:27;;6440:81;6568:2;6560:6;6557:14;6537:18;6534:38;6531:84;;6587:18;;:::i;:::-;6531:84;6352:269;6301:320;;;:::o;6627:141::-;6676:4;6699:3;6691:11;;6722:3;6719:1;6712:14;6756:4;6753:1;6743:18;6735:26;;6627:141;;;:::o;6774:93::-;6811:6;6858:2;6853;6846:5;6842:14;6838:23;6828:33;;6774:93;;;:::o;6873:107::-;6917:8;6967:5;6961:4;6957:16;6936:37;;6873:107;;;;:::o;6986:393::-;7055:6;7105:1;7093:10;7089:18;7128:97;7158:66;7147:9;7128:97;:::i;:::-;7246:39;7276:8;7265:9;7246:39;:::i;:::-;7234:51;;7318:4;7314:9;7307:5;7303:21;7294:30;;7367:4;7357:8;7353:19;7346:5;7343:30;7333:40;;7062:317;;6986:393;;;;;:::o;7385:60::-;7413:3;7434:5;7427:12;;7385:60;;;:::o;7451:142::-;7501:9;7534:53;7552:34;7561:24;7579:5;7561:24;:::i;:::-;7552:34;:::i;:::-;7534:53;:::i;:::-;7521:66;;7451:142;;;:::o;7599:75::-;7642:3;7663:5;7656:12;;7599:75;;;:::o;7680:269::-;7790:39;7821:7;7790:39;:::i;:::-;7851:91;7900:41;7924:16;7900:41;:::i;:::-;7892:6;7885:4;7879:11;7851:91;:::i;:::-;7845:4;7838:105;7756:193;7680:269;;;:::o;7955:73::-;8000:3;7955:73;:::o;8034:189::-;8111:32;;:::i;:::-;8152:65;8210:6;8202;8196:4;8152:65;:::i;:::-;8087:136;8034:189;;:::o;8229:186::-;8289:120;8306:3;8299:5;8296:14;8289:120;;;8360:39;8397:1;8390:5;8360:39;:::i;:::-;8333:1;8326:5;8322:13;8313:22;;8289:120;;;8229:186;;:::o;8421:543::-;8522:2;8517:3;8514:11;8511:446;;;8556:38;8588:5;8556:38;:::i;:::-;8640:29;8658:10;8640:29;:::i;:::-;8630:8;8626:44;8823:2;8811:10;8808:18;8805:49;;;8844:8;8829:23;;8805:49;8867:80;8923:22;8941:3;8923:22;:::i;:::-;8913:8;8909:37;8896:11;8867:80;:::i;:::-;8526:431;;8511:446;8421:543;;;:::o;8970:117::-;9024:8;9074:5;9068:4;9064:16;9043:37;;8970:117;;;;:::o;9093:169::-;9137:6;9170:51;9218:1;9214:6;9206:5;9203:1;9199:13;9170:51;:::i;:::-;9166:56;9251:4;9245;9241:15;9231:25;;9144:118;9093:169;;;;:::o;9267:295::-;9343:4;9489:29;9514:3;9508:4;9489:29;:::i;:::-;9481:37;;9551:3;9548:1;9544:11;9538:4;9535:21;9527:29;;9267:295;;;;:::o;9567:1395::-;9684:37;9717:3;9684:37;:::i;:::-;9786:18;9778:6;9775:30;9772:56;;;9808:18;;:::i;:::-;9772:56;9852:38;9884:4;9878:11;9852:38;:::i;:::-;9937:67;9997:6;9989;9983:4;9937:67;:::i;:::-;10031:1;10055:4;10042:17;;10087:2;10079:6;10076:14;10104:1;10099:618;;;;10761:1;10778:6;10775:77;;;10827:9;10822:3;10818:19;10812:26;10803:35;;10775:77;10878:67;10938:6;10931:5;10878:67;:::i;:::-;10872:4;10865:81;10734:222;10069:887;;10099:618;10151:4;10147:9;10139:6;10135:22;10185:37;10217:4;10185:37;:::i;:::-;10244:1;10258:208;10272:7;10269:1;10266:14;10258:208;;;10351:9;10346:3;10342:19;10336:26;10328:6;10321:42;10402:1;10394:6;10390:14;10380:24;;10449:2;10438:9;10434:18;10421:31;;10295:4;10292:1;10288:12;10283:17;;10258:208;;;10494:6;10485:7;10482:19;10479:179;;;10552:9;10547:3;10543:19;10537:26;10595:48;10637:4;10629:6;10625:17;10614:9;10595:48;:::i;:::-;10587:6;10580:64;10502:156;10479:179;10704:1;10700;10692:6;10688:14;10684:22;10678:4;10671:36;10106:611;;;10069:887;;9659:1303;;;9567:1395;;:::o;10968:148::-;11070:11;11107:3;11092:18;;10968:148;;;;:::o;11122:390::-;11228:3;11256:39;11289:5;11256:39;:::i;:::-;11311:89;11393:6;11388:3;11311:89;:::i;:::-;11304:96;;11409:65;11467:6;11462:3;11455:4;11448:5;11444:16;11409:65;:::i;:::-;11499:6;11494:3;11490:16;11483:23;;11232:280;11122:390;;;;:::o;11518:275::-;11650:3;11672:95;11763:3;11754:6;11672:95;:::i;:::-;11665:102;;11784:3;11777:10;;11518:275;;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "458000",
"executionCost": "491",
"totalCost": "458491"
},
"external": {
"addPerson(string,uint256)": "infinite",
"nameToFavoriteNumber(string)": "infinite",
"people(uint256)": "infinite",
"retrieve()": "2410",
"store(uint256)": "22514"
}
},
"legacyAssembly": {
".code": [
{
"begin": 138,
"end": 787,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 138,
"end": 787,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 138,
"end": 787,
"name": "MSTORE",
"source": 0
},
{
"begin": 138,
"end": 787,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 138,
"end": 787,
"name": "DUP1",
"source": 0
},
{
"begin": 138,
"end": 787,
"name": "ISZERO",
"source": 0
},
{
"begin": 138,
"end": 787,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 138,
"end": 787,
"name": "JUMPI",
"source": 0
},
{
"begin": 138,
"end": 787,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 138,
"end": 787,
"name": "DUP1",
"source": 0
},
{
"begin": 138,
"end": 787,
"name": "REVERT",
"source": 0
},
{
"begin": 138,
"end": 787,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 138,
"end": 787,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 138,
"end": 787,
"name": "POP",
"source": 0
},
{
"begin": 138,
"end": 787,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 138,
"end": 787,
"name": "DUP1",
"source": 0
},
{
"begin": 138,
"end": 787,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 138,
"end": 787,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 138,
"end": 787,
"name": "CODECOPY",
"source": 0
},
{
"begin": 138,
"end": 787,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 138,
"end": 787,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a26469706673582212202ca85e69a0270391c3932893581327baecc9b5ea3ac89ecb57ca239aabcf0d3664736f6c63430008180033",
".code": [
{
"begin": 138,
"end": 787,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 138,
"end": 787,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 138,
"end": 787,
"name": "MSTORE",
"source": 0
},
{
"begin": 138,
"end": 787,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 138,
"end": 787,
"name": "DUP1",
"source": 0
},
{
"begin": 138,
"end": 787,
"name": "ISZERO",
"source": 0
},
{
"begin": 138,
"end": 787,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 138,
"end": 787,
"name": "JUMPI",
"source": 0
},
{
"begin": 138,
"end": 787,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 138,
"end": 787,
"name": "DUP1",
"source": 0
},
{
"begin": 138,
"end": 787,
"name": "REVERT",
"source": 0
},
{
"begin": 138,
"end": 787,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 138,
"end": 787,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 138,
"end": 787,
"name": "POP",
"source": 0
},
{
"begin": 138,
"end": 787,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 138,
"end": 787,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 138,
"end": 787,
"name": "LT",
"source": 0
},
{
"begin": 138,
"end": 787,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 138,
"end": 787,
"name": "JUMPI",
"source": 0
},
{
"begin": 138,
"end": 787,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 138,
"end": 787,
"name": "CALLDATALOAD",
"source": 0
},
{
"begin": 138,
"end": 787,
"name": "PUSH",
"source": 0,
"value": "E0"
},
{
"begin": 138,
"end": 787,
"name": "SHR",
"source": 0
},
{
"begin": 138,
"end": 787,
"name": "DUP1",
"source": 0
},
{
"begin": 138,
"end": 787,
"name": "PUSH",
"source": 0,
"value": "2E64CEC1"
},
{
"begin": 138,
"end": 787,
"name": "EQ",
"source": 0
},
{
"begin": 138,
"end": 787,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 138,
"end": 787,
"name": "JUMPI",
"source": 0
},
{
"begin": 138,
"end": 787,
"name": "DUP1",
"source": 0
},
{
"begin": 138,
"end": 787,
"name": "PUSH",
"source": 0,
"value": "6057361D"
},
{
"begin": 138,
"end": 787,
"name": "EQ",
"source": 0
},
{
"begin": 138,
"end": 787,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 138,
"end": 787,
"name": "JUMPI",
"source": 0
},
{
"begin": 138,
"end": 787,
"name": "DUP1",
"source": 0
},
{
"begin": 138,
"end": 787,
"name": "PUSH",
"source": 0,
"value": "6F760F41"
},
{
"begin": 138,
"end": 787,
"name": "EQ",
"source": 0
},
{
"begin": 138,
"end": 787,
"name": "PUSH [tag]",
"source": 0,
"value": "5"
},
{
"begin": 138,
"end": 787,
"name": "JUMPI",
"source": 0
},
{
"begin": 138,
"end": 787,
"name": "DUP1",
"source": 0
},
{
"begin": 138,
"end": 787,
"name": "PUSH",
"source": 0,
"value": "8BAB8DD5"
},
{
"begin": 138,
"end": 787,
"name": "EQ",
"source": 0
},
{
"begin": 138,
"end": 787,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 138,
"end": 787,
"name": "JUMPI",
"source": 0
},
{
"begin": 138,
"end": 787,
"name": "DUP1",
"source": 0
},
{
"begin": 138,
"end": 787,
"name": "PUSH",
"source": 0,
"value": "9E7A13AD"
},
{
"begin": 138,
"end": 787,
"name": "EQ",
"source": 0
},
{
"begin": 138,
"end": 787,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 138,
"end": 787,
"name": "JUMPI",
"source": 0
},
{
"begin": 138,
"end": 787,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 138,
"end": 787,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 138,
"end": 787,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 138,
"end": 787,
"name": "DUP1",
"source": 0
},
{
"begin": 138,
"end": 787,
"name": "REVERT",
"source": 0
},
{
"begin": 505,
"end": 592,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 505,
"end": 592,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 505,
"end": 592,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 505,
"end": 592,
"name": "PUSH [tag]",
"source": 0,
"value": "9"
},
{
"begin": 505,
"end": 592,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 505,
"end": 592,
"name": "tag",
"source": 0,
"value": "8"
},
{
"begin": 505,
"end": 592,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 505,
"end": 592,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 505,
"end": 592,
"name": "MLOAD",
"source": 0
},
{
"begin": 505,
"end": 592,
"name": "PUSH [tag]",
"source": 0,
"value": "10"
},
{
"begin": 505,
"end": 592,
"name": "SWAP2",
"source": 0
},
{
"begin": 505,
"end": 592,
"name": "SWAP1",
"source": 0
},
{
"begin": 505,
"end": 592,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 505,
"end": 592,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 505,
"end": 592,
"name": "tag",
"source": 0,
"value": "10"
},
{
"begin": 505,
"end": 592,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 505,
"end": 592,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 505,
"end": 592,
"name": "MLOAD",
"source": 0
},
{
"begin": 505,
"end": 592,
"name": "DUP1",
"source": 0
},
{
"begin": 505,
"end": 592,
"name": "SWAP2",
"source": 0
},
{
"begin": 505,
"end": 592,
"name": "SUB",
"source": 0
},
{
"begin": 505,
"end": 592,
"name": "SWAP1",
"source": 0
},
{
"begin": 505,
"end": 592,
"name": "RETURN",
"source": 0
},
{
"begin": 399,
"end": 495,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 399,
"end": 495,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 399,
"end": 495,
"name": "PUSH [tag]",
"source": 0,
"value": "12"
},
{
"begin": 399,
"end": 495,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 399,
"end": 495,
"name": "DUP1",
"source": 0
},
{
"begin": 399,
"end": 495,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 399,
"end": 495,
"name": "SUB",
"source": 0
},
{
"begin": 399,
"end": 495,
"name": "DUP2",
"source": 0
},
{
"begin": 399,
"end": 495,
"name": "ADD",
"source": 0
},
{
"begin": 399,
"end": 495,
"name": "SWAP1",
"source": 0
},
{
"begin": 399,
"end": 495,
"name": "PUSH [tag]",
"source": 0,
"value": "13"
},
{
"begin": 399,
"end": 495,
"name": "SWAP2",
"source": 0
},
{
"begin": 399,
"end": 495,
"name": "SWAP1",
"source": 0
},
{
"begin": 399,
"end": 495,
"name": "PUSH [tag]",
"source": 0,
"value": "14"
},
{
"begin": 399,
"end": 495,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 399,
"end": 495,
"name": "tag",
"source": 0,
"value": "13"
},
{
"begin": 399,
"end": 495,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 399,
"end": 495,
"name": "PUSH [tag]",
"source": 0,
"value": "15"
},
{
"begin": 399,
"end": 495,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 399,
"end": 495,
"name": "tag",
"source": 0,
"value": "12"
},
{
"begin": 399,
"end": 495,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 399,
"end": 495,
"name": "STOP",
"source": 0
},
{
"begin": 598,
"end": 785,
"name": "tag",
"source": 0,
"value": "5"
},
{
"begin": 598,
"end": 785,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 598,
"end": 785,
"name": "PUSH [tag]",
"source": 0,
"value": "16"
},
{
"begin": 598,
"end": 785,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 598,
"end": 785,
"name": "DUP1",
"source": 0
},
{
"begin": 598,
"end": 785,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 598,
"end": 785,
"name": "SUB",
"source": 0
},
{
"begin": 598,
"end": 785,
"name": "DUP2",
"source": 0
},
{
"begin": 598,
"end": 785,
"name": "ADD",
"source": 0
},
{
"begin": 598,
"end": 785,
"name": "SWAP1",
"source": 0
},
{
"begin": 598,
"end": 785,
"name": "PUSH [tag]",
"source": 0,
"value": "17"
},
{
"begin": 598,
"end": 785,
"name": "SWAP2",
"source": 0
},
{
"begin": 598,
"end": 785,
"name": "SWAP1",
"source": 0
},
{
"begin": 598,
"end": 785,
"name": "PUSH [tag]",
"source": 0,
"value": "18"
},
{
"begin": 598,
"end": 785,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 598,
"end": 785,
"name": "tag",
"source": 0,
"value": "17"
},
{
"begin": 598,
"end": 785,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 598,
"end": 785,
"name": "PUSH [tag]",
"source": 0,
"value": "19"
},
{
"begin": 598,
"end": 785,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 598,
"end": 785,
"name": "tag",
"source": 0,
"value": "16"
},
{
"begin": 598,
"end": 785,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 598,
"end": 785,
"name": "STOP",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "tag",
"source": 0,
"value": "6"
},
{
"begin": 338,
"end": 392,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "PUSH [tag]",
"source": 0,
"value": "20"
},
{
"begin": 338,
"end": 392,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 338,
"end": 392,
"name": "DUP1",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "SUB",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "DUP2",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "ADD",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "SWAP1",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "PUSH [tag]",
"source": 0,
"value": "21"
},
{
"begin": 338,
"end": 392,
"name": "SWAP2",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "SWAP1",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "PUSH [tag]",
"source": 0,
"value": "22"
},
{
"begin": 338,
"end": 392,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "tag",
"source": 0,
"value": "21"
},
{
"begin": 338,
"end": 392,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "PUSH [tag]",
"source": 0,
"value": "23"
},
{
"begin": 338,
"end": 392,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "tag",
"source": 0,
"value": "20"
},
{
"begin": 338,
"end": 392,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 338,
"end": 392,
"name": "MLOAD",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "PUSH [tag]",
"source": 0,
"value": "24"
},
{
"begin": 338,
"end": 392,
"name": "SWAP2",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "SWAP1",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 338,
"end": 392,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "tag",
"source": 0,
"value": "24"
},
{
"begin": 338,
"end": 392,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 338,
"end": 392,
"name": "MLOAD",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "DUP1",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "SWAP2",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "SUB",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "SWAP1",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "RETURN",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "tag",
"source": 0,
"value": "7"
},
{
"begin": 309,
"end": 331,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "PUSH [tag]",
"source": 0,
"value": "25"
},
{
"begin": 309,
"end": 331,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 309,
"end": 331,
"name": "DUP1",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "SUB",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "DUP2",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "ADD",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "SWAP1",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "PUSH [tag]",
"source": 0,
"value": "26"
},
{
"begin": 309,
"end": 331,
"name": "SWAP2",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "SWAP1",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "PUSH [tag]",
"source": 0,
"value": "14"
},
{
"begin": 309,
"end": 331,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "tag",
"source": 0,
"value": "26"
},
{
"begin": 309,
"end": 331,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "PUSH [tag]",
"source": 0,
"value": "27"
},
{
"begin": 309,
"end": 331,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "tag",
"source": 0,
"value": "25"
},
{
"begin": 309,
"end": 331,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 309,
"end": 331,
"name": "MLOAD",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "PUSH [tag]",
"source": 0,
"value": "28"
},
{
"begin": 309,
"end": 331,
"name": "SWAP3",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "SWAP2",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "SWAP1",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "PUSH [tag]",
"source": 0,
"value": "29"
},
{
"begin": 309,
"end": 331,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "tag",
"source": 0,
"value": "28"
},
{
"begin": 309,
"end": 331,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 309,
"end": 331,
"name": "MLOAD",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "DUP1",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "SWAP2",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "SUB",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "SWAP1",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "RETURN",
"source": 0
},
{
"begin": 505,
"end": 592,
"name": "tag",
"source": 0,
"value": "9"
},
{
"begin": 505,
"end": 592,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 546,
"end": 553,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 571,
"end": 585,
"name": "DUP1",
"source": 0
},
{
"begin": 571,
"end": 585,
"name": "SLOAD",
"source": 0
},
{
"begin": 564,
"end": 585,
"name": "SWAP1",
"source": 0
},
{
"begin": 564,
"end": 585,
"name": "POP",
"source": 0
},
{
"begin": 505,
"end": 592,
"name": "SWAP1",
"source": 0
},
{
"begin": 505,
"end": 592,
"jumpType": "[out]",
"name": "JUMP",
"source": 0
},
{
"begin": 399,
"end": 495,
"name": "tag",
"source": 0,
"value": "15"
},
{
"begin": 399,
"end": 495,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 473,
"end": 488,
"name": "DUP1",
"source": 0
},
{
"begin": 456,
"end": 470,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 456,
"end": 488,
"name": "DUP2",
"source": 0
},
{
"begin": 456,
"end": 488,
"name": "SWAP1",
"source": 0
},
{
"begin": 456,
"end": 488,
"name": "SSTORE",
"source": 0
},
{
"begin": 456,
"end": 488,
"name": "POP",
"source": 0
},
{
"begin": 399,
"end": 495,
"name": "POP",
"source": 0
},
{
"begin": 399,
"end": 495,
"jumpType": "[out]",
"name": "JUMP",
"source": 0
},
{
"begin": 598,
"end": 785,
"name": "tag",
"source": 0,
"value": "19"
},
{
"begin": 598,
"end": 785,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 680,
"end": 686,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 692,
"end": 722,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 692,
"end": 722,
"name": "MLOAD",
"source": 0
},
{
"begin": 692,
"end": 722,
"name": "DUP1",
"source": 0
},
{
"begin": 692,
"end": 722,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 692,
"end": 722,
"name": "ADD",
"source": 0
},
{
"begin": 692,
"end": 722,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 692,
"end": 722,
"name": "MSTORE",
"source": 0
},
{
"begin": 692,
"end": 722,
"name": "DUP1",
"source": 0
},
{
"begin": 699,
"end": 714,
"name": "DUP4",
"source": 0
},
{
"begin": 692,
"end": 722,
"name": "DUP2",
"source": 0
},
{
"begin": 692,
"end": 722,
"name": "MSTORE",
"source": 0
},
{
"begin": 692,
"end": 722,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 692,
"end": 722,
"name": "ADD",
"source": 0
},
{
"begin": 716,
"end": 721,
"name": "DUP5",
"source": 0
},
{
"begin": 692,
"end": 722,
"name": "DUP2",
"source": 0
},
{
"begin": 692,
"end": 722,
"name": "MSTORE",
"source": 0
},
{
"begin": 692,
"end": 722,
"name": "POP",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "SWAP1",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "DUP1",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 680,
"end": 723,
"name": "DUP2",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "SLOAD",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "ADD",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "DUP1",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "DUP3",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "SSTORE",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "DUP1",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "SWAP2",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "POP",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "POP",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 680,
"end": 723,
"name": "SWAP1",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "SUB",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "SWAP1",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 680,
"end": 723,
"name": "MSTORE",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 680,
"end": 723,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 680,
"end": 723,
"name": "KECCAK256",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "SWAP1",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "PUSH",
"source": 0,
"value": "2"
},
{
"begin": 680,
"end": 723,
"name": "MUL",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "ADD",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 680,
"end": 723,
"name": "SWAP1",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "SWAP2",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "SWAP1",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "SWAP2",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "SWAP1",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "SWAP2",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "POP",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 680,
"end": 723,
"name": "DUP3",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "ADD",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "MLOAD",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "DUP2",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 680,
"end": 723,
"name": "ADD",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "SSTORE",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 680,
"end": 723,
"name": "DUP3",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "ADD",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "MLOAD",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "DUP2",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 680,
"end": 723,
"name": "ADD",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "SWAP1",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "DUP2",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "PUSH [tag]",
"source": 0,
"value": "34"
},
{
"begin": 680,
"end": 723,
"name": "SWAP2",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "SWAP1",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "PUSH [tag]",
"source": 0,
"value": "35"
},
{
"begin": 680,
"end": 723,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "tag",
"source": 0,
"value": "34"
},
{
"begin": 680,
"end": 723,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "POP",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "POP",
"source": 0
},
{
"begin": 680,
"end": 723,
"name": "POP",
"source": 0
},
{
"begin": 763,
"end": 778,
"name": "DUP1",
"source": 0
},
{
"begin": 733,
"end": 753,
"name": "PUSH",
"source": 0,
"value": "2"
},
{
"begin": 754,
"end": 759,
"name": "DUP4",
"source": 0
},
{
"begin": 733,
"end": 760,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 733,
"end": 760,
"name": "MLOAD",
"source": 0
},
{
"begin": 733,
"end": 760,
"name": "PUSH [tag]",
"source": 0,
"value": "36"
},
{
"begin": 733,
"end": 760,
"name": "SWAP2",
"source": 0
},
{
"begin": 733,
"end": 760,
"name": "SWAP1",
"source": 0
},
{
"begin": 733,
"end": 760,
"name": "PUSH [tag]",
"source": 0,
"value": "37"
},
{
"begin": 733,
"end": 760,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 733,
"end": 760,
"name": "tag",
"source": 0,
"value": "36"
},
{
"begin": 733,
"end": 760,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 733,
"end": 760,
"name": "SWAP1",
"source": 0
},
{
"begin": 733,
"end": 760,
"name": "DUP2",
"source": 0
},
{
"begin": 733,
"end": 760,
"name": "MSTORE",
"source": 0
},
{
"begin": 733,
"end": 760,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 733,
"end": 760,
"name": "ADD",
"source": 0
},
{
"begin": 733,
"end": 760,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 733,
"end": 760,
"name": "MLOAD",
"source": 0
},
{
"begin": 733,
"end": 760,
"name": "DUP1",
"source": 0
},
{
"begin": 733,
"end": 760,
"name": "SWAP2",
"source": 0
},
{
"begin": 733,
"end": 760,
"name": "SUB",
"source": 0
},
{
"begin": 733,
"end": 760,
"name": "SWAP1",
"source": 0
},
{
"begin": 733,
"end": 760,
"name": "KECCAK256",
"source": 0
},
{
"begin": 733,
"end": 778,
"name": "DUP2",
"source": 0
},
{
"begin": 733,
"end": 778,
"name": "SWAP1",
"source": 0
},
{
"begin": 733,
"end": 778,
"name": "SSTORE",
"source": 0
},
{
"begin": 733,
"end": 778,
"name": "POP",
"source": 0
},
{
"begin": 598,
"end": 785,
"name": "POP",
"source": 0
},
{
"begin": 598,
"end": 785,
"name": "POP",
"source": 0
},
{
"begin": 598,
"end": 785,
"jumpType": "[out]",
"name": "JUMP",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "tag",
"source": 0,
"value": "23"
},
{
"begin": 338,
"end": 392,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "PUSH",
"source": 0,
"value": "2"
},
{
"begin": 338,
"end": 392,
"name": "DUP2",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "DUP1",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "MLOAD",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 338,
"end": 392,
"name": "DUP2",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "ADD",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "DUP3",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "ADD",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "DUP1",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "MLOAD",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "DUP5",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "DUP3",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "MSTORE",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 338,
"end": 392,
"name": "DUP4",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "ADD",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 338,
"end": 392,
"name": "DUP6",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "ADD",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "KECCAK256",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "DUP2",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "DUP4",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "MSTORE",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "DUP1",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "SWAP6",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "POP",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "POP",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "POP",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "POP",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "POP",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "POP",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 338,
"end": 392,
"name": "SWAP2",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "POP",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "SWAP1",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "POP",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "SLOAD",
"source": 0
},
{
"begin": 338,
"end": 392,
"name": "DUP2",
"source": 0
},
{
"begin": 338,
"end": 392,
"jumpType": "[out]",
"name": "JUMP",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "tag",
"source": 0,
"value": "27"
},
{
"begin": 309,
"end": 331,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 309,
"end": 331,
"name": "DUP2",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "DUP2",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "SLOAD",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "DUP2",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "LT",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "PUSH [tag]",
"source": 0,
"value": "38"
},
{
"begin": 309,
"end": 331,
"name": "JUMPI",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 309,
"end": 331,
"name": "DUP1",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "REVERT",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "tag",
"source": 0,
"value": "38"
},
{
"begin": 309,
"end": 331,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "SWAP1",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 309,
"end": 331,
"name": "MSTORE",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 309,
"end": 331,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 309,
"end": 331,
"name": "KECCAK256",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "SWAP1",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "PUSH",
"source": 0,
"value": "2"
},
{
"begin": 309,
"end": 331,
"name": "MUL",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "ADD",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 309,
"end": 331,
"name": "SWAP2",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "POP",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "SWAP1",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "POP",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "DUP1",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 309,
"end": 331,
"name": "ADD",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "SLOAD",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "SWAP1",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "DUP1",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 309,
"end": 331,
"name": "ADD",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "DUP1",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "SLOAD",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "PUSH [tag]",
"source": 0,
"value": "40"
},
{
"begin": 309,
"end": 331,
"name": "SWAP1",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "PUSH [tag]",
"source": 0,
"value": "41"
},
{
"begin": 309,
"end": 331,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "tag",
"source": 0,
"value": "40"
},
{
"begin": 309,
"end": 331,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "DUP1",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 309,
"end": 331,
"name": "ADD",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 309,
"end": 331,
"name": "DUP1",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "SWAP2",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "DIV",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "MUL",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 309,
"end": 331,
"name": "ADD",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 309,
"end": 331,
"name": "MLOAD",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "SWAP1",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "DUP2",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "ADD",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 309,
"end": 331,
"name": "MSTORE",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "DUP1",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "SWAP3",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "SWAP2",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "SWAP1",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "DUP2",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "DUP2",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "MSTORE",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 309,
"end": 331,
"name": "ADD",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "DUP3",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "DUP1",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "SLOAD",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "PUSH [tag]",
"source": 0,
"value": "42"
},
{
"begin": 309,
"end": 331,
"name": "SWAP1",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "PUSH [tag]",
"source": 0,
"value": "41"
},
{
"begin": 309,
"end": 331,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "tag",
"source": 0,
"value": "42"
},
{
"begin": 309,
"end": 331,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "DUP1",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "ISZERO",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "PUSH [tag]",
"source": 0,
"value": "43"
},
{
"begin": 309,
"end": 331,
"name": "JUMPI",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "DUP1",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 309,
"end": 331,
"name": "LT",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "PUSH [tag]",
"source": 0,
"value": "44"
},
{
"begin": 309,
"end": 331,
"name": "JUMPI",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 309,
"end": 331,
"name": "DUP1",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "DUP4",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "SLOAD",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "DIV",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "MUL",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "DUP4",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "MSTORE",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "SWAP2",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 309,
"end": 331,
"name": "ADD",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "SWAP2",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "PUSH [tag]",
"source": 0,
"value": "43"
},
{
"begin": 309,
"end": 331,
"name": "JUMP",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "tag",
"source": 0,
"value": "44"
},
{
"begin": 309,
"end": 331,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "DUP3",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "ADD",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "SWAP2",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "SWAP1",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 309,
"end": 331,
"name": "MSTORE",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 309,
"end": 331,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 309,
"end": 331,
"name": "KECCAK256",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "SWAP1",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "tag",
"source": 0,
"value": "45"
},
{
"begin": 309,
"end": 331,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "DUP2",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "SLOAD",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "DUP2",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "MSTORE",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "SWAP1",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 309,
"end": 331,
"name": "ADD",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "SWAP1",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 309,
"end": 331,
"name": "ADD",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "DUP1",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "DUP4",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "GT",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "PUSH [tag]",
"source": 0,
"value": "45"
},
{
"begin": 309,
"end": 331,
"name": "JUMPI",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "DUP3",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "SWAP1",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "SUB",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 309,
"end": 331,
"name": "AND",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "DUP3",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "ADD",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "SWAP2",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "tag",
"source": 0,
"value": "43"
},
{
"begin": 309,
"end": 331,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "POP",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "POP",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "POP",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "POP",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "POP",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "SWAP1",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "POP",
"source": 0
},
{
"begin": 309,
"end": 331,
"name": "DUP3",
"source": 0
},
{
"begin": 309,
"end": 331,
"jumpType": "[out]",
"name": "JUMP",
"source": 0
},
{
"begin": 7,
"end": 84,
"name": "tag",
"source": 1,
"value": "46"
},
{
"begin": 7,
"end": 84,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 44,
"end": 51,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 73,
"end": 78,
"name": "DUP2",
"source": 1
},
{
"begin": 62,
"end": 78,
"name": "SWAP1",
"source": 1
},
{
"begin": 62,
"end": 78,
"name": "POP",
"source": 1
},
{
"begin": 7,
"end": 84,
"name": "SWAP2",
"source": 1
},
{
"begin": 7,
"end": 84,
"name": "SWAP1",
"source": 1
},
{
"begin": 7,
"end": 84,
"name": "POP",
"source": 1
},
{
"begin": 7,
"end": 84,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 90,
"end": 208,
"name": "tag",
"source": 1,
"value": "47"
},
{
"begin": 90,
"end": 208,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 177,
"end": 201,
"name": "PUSH [tag]",
"source": 1,
"value": "88"
},
{
"begin": 195,
"end": 200,
"name": "DUP2",
"source": 1
},
{
"begin": 177,
"end": 201,
"name": "PUSH [tag]",
"source": 1,
"value": "46"
},
{
"begin": 177,
"end": 201,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 177,
"end": 201,
"name": "tag",
"source": 1,
"value": "88"
},
{
"begin": 177,
"end": 201,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 172,
"end": 175,
"name": "DUP3",
"source": 1
},
{
"begin": 165,
"end": 202,
"name": "MSTORE",
"source": 1
},
{
"begin": 90,
"end": 208,
"name": "POP",
"source": 1
},
{
"begin": 90,
"end": 208,
"name": "POP",
"source": 1
},
{
"begin": 90,
"end": 208,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 214,
"end": 436,
"name": "tag",
"source": 1,
"value": "11"
},
{
"begin": 214,
"end": 436,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 307,
"end": 311,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 345,
"end": 347,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 334,
"end": 343,
"name": "DUP3",
"source": 1
},
{
"begin": 330,
"end": 348,
"name": "ADD",
"source": 1
},
{
"begin": 322,
"end": 348,
"name": "SWAP1",
"source": 1
},
{
"begin": 322,
"end": 348,
"name": "POP",
"source": 1
},
{
"begin": 358,
"end": 429,
"name": "PUSH [tag]",
"source": 1,
"value": "90"
},
{
"begin": 426,
"end": 427,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 415,
"end": 424,
"name": "DUP4",
"source": 1
},
{
"begin": 411,
"end": 428,
"name": "ADD",
"source": 1
},
{
"begin": 402,
"end": 408,
"name": "DUP5",
"source": 1
},
{
"begin": 358,
"end": 429,
"name": "PUSH [tag]",
"source": 1,
"value": "47"
},
{
"begin": 358,
"end": 429,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 358,
"end": 429,
"name": "tag",
"source": 1,
"value": "90"
},
{
"begin": 358,
"end": 429,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 214,
"end": 436,
"name": "SWAP3",
"source": 1
},
{
"begin": 214,
"end": 436,
"name": "SWAP2",
"source": 1
},
{
"begin": 214,
"end": 436,
"name": "POP",
"source": 1
},
{
"begin": 214,
"end": 436,
"name": "POP",
"source": 1
},
{
"begin": 214,
"end": 436,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 442,
"end": 517,
"name": "tag",
"source": 1,
"value": "48"
},
{
"begin": 442,
"end": 517,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 475,
"end": 481,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 508,
"end": 510,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 502,
"end": 511,
"name": "MLOAD",
"source": 1
},
{
"begin": 492,
"end": 511,
"name": "SWAP1",
"source": 1
},
{
"begin": 492,
"end": 511,
"name": "POP",
"source": 1
},
{
"begin": 442,
"end": 517,
"name": "SWAP1",
"source": 1
},
{
"begin": 442,
"end": 517,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 523,
"end": 640,
"name": "tag",
"source": 1,
"value": "49"
},
{
"begin": 523,
"end": 640,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 632,
"end": 633,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 629,
"end": 630,
"name": "DUP1",
"source": 1
},
{
"begin": 622,
"end": 634,
"name": "REVERT",
"source": 1
},
{
"begin": 646,
"end": 763,
"name": "tag",
"source": 1,
"value": "50"
},
{
"begin": 646,
"end": 763,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 755,
"end": 756,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 752,
"end": 753,
"name": "DUP1",
"source": 1
},
{
"begin": 745,
"end": 757,
"name": "REVERT",
"source": 1
},
{
"begin": 769,
"end": 891,
"name": "tag",
"source": 1,
"value": "51"
},
{
"begin": 769,
"end": 891,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 842,
"end": 866,
"name": "PUSH [tag]",
"source": 1,
"value": "95"
},
{
"begin": 860,
"end": 865,
"name": "DUP2",
"source": 1
},
{
"begin": 842,
"end": 866,
"name": "PUSH [tag]",
"source": 1,
"value": "46"
},
{
"begin": 842,
"end": 866,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 842,
"end": 866,
"name": "tag",
"source": 1,
"value": "95"
},
{
"begin": 842,
"end": 866,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 835,
"end": 840,
"name": "DUP2",
"source": 1
},
{
"begin": 832,
"end": 867,
"name": "EQ",
"source": 1
},
{
"begin": 822,
"end": 885,
"name": "PUSH [tag]",
"source": 1,
"value": "96"
},
{
"begin": 822,
"end": 885,
"name": "JUMPI",
"source": 1
},
{
"begin": 881,
"end": 882,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 878,
"end": 879,
"name": "DUP1",
"source": 1
},
{
"begin": 871,
"end": 883,
"name": "REVERT",
"source": 1
},
{
"begin": 822,
"end": 885,
"name": "tag",
"source": 1,
"value": "96"
},
{
"begin": 822,
"end": 885,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 769,
"end": 891,
"name": "POP",
"source": 1
},
{
"begin": 769,
"end": 891,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 897,
"end": 1036,
"name": "tag",
"source": 1,
"value": "52"
},
{
"begin": 897,
"end": 1036,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 943,
"end": 948,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 981,
"end": 987,
"name": "DUP2",
"source": 1
},
{
"begin": 968,
"end": 988,
"name": "CALLDATALOAD",
"source": 1
},
{
"begin": 959,
"end": 988,
"name": "SWAP1",
"source": 1
},
{
"begin": 959,
"end": 988,
"name": "POP",
"source": 1
},
{
"begin": 997,
"end": 1030,
"name": "PUSH [tag]",
"source": 1,
"value": "98"
},
{
"begin": 1024,
"end": 1029,
"name": "DUP2",
"source": 1
},
{
"begin": 997,
"end": 1030,
"name": "PUSH [tag]",
"source": 1,
"value": "51"
},
{
"begin": 997,
"end": 1030,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 997,
"end": 1030,
"name": "tag",
"source": 1,
"value": "98"
},
{
"begin": 997,
"end": 1030,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 897,
"end": 1036,
"name": "SWAP3",
"source": 1
},
{
"begin": 897,
"end": 1036,
"name": "SWAP2",
"source": 1
},
{
"begin": 897,
"end": 1036,
"name": "POP",
"source": 1
},
{
"begin": 897,
"end": 1036,
"name": "POP",
"source": 1
},
{
"begin": 897,
"end": 1036,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 1042,
"end": 1371,
"name": "tag",
"source": 1,
"value": "14"
},
{
"begin": 1042,
"end": 1371,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1101,
"end": 1107,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1150,
"end": 1152,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1138,
"end": 1147,
"name": "DUP3",
"source": 1
},
{
"begin": 1129,
"end": 1136,
"name": "DUP5",
"source": 1
},
{
"begin": 1125,
"end": 1148,
"name": "SUB",
"source": 1
},
{
"begin": 1121,
"end": 1153,
"name": "SLT",
"source": 1
},
{
"begin": 1118,
"end": 1237,
"name": "ISZERO",
"source": 1
},
{
"begin": 1118,
"end": 1237,
"name": "PUSH [tag]",
"source": 1,
"value": "100"
},
{
"begin": 1118,
"end": 1237,
"name": "JUMPI",
"source": 1
},
{
"begin": 1156,
"end": 1235,
"name": "PUSH [tag]",
"source": 1,
"value": "101"
},
{
"begin": 1156,
"end": 1235,
"name": "PUSH [tag]",
"source": 1,
"value": "49"
},
{
"begin": 1156,
"end": 1235,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 1156,
"end": 1235,
"name": "tag",
"source": 1,
"value": "101"
},
{
"begin": 1156,
"end": 1235,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1118,
"end": 1237,
"name": "tag",
"source": 1,
"value": "100"
},
{
"begin": 1118,
"end": 1237,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1276,
"end": 1277,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1301,
"end": 1354,
"name": "PUSH [tag]",
"source": 1,
"value": "102"
},
{
"begin": 1346,
"end": 1353,
"name": "DUP5",
"source": 1
},
{
"begin": 1337,
"end": 1343,
"name": "DUP3",
"source": 1
},
{
"begin": 1326,
"end": 1335,
"name": "DUP6",
"source": 1
},
{
"begin": 1322,
"end": 1344,
"name": "ADD",
"source": 1
},
{
"begin": 1301,
"end": 1354,
"name": "PUSH [tag]",
"source": 1,
"value": "52"
},
{
"begin": 1301,
"end": 1354,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 1301,
"end": 1354,
"name": "tag",
"source": 1,
"value": "102"
},
{
"begin": 1301,
"end": 1354,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1291,
"end": 1354,
"name": "SWAP2",
"source": 1
},
{
"begin": 1291,
"end": 1354,
"name": "POP",
"source": 1
},
{
"begin": 1247,
"end": 1364,
"name": "POP",
"source": 1
},
{
"begin": 1042,
"end": 1371,
"name": "SWAP3",
"source": 1
},
{
"begin": 1042,
"end": 1371,
"name": "SWAP2",
"source": 1
},
{
"begin": 1042,
"end": 1371,
"name": "POP",
"source": 1
},
{
"begin": 1042,
"end": 1371,
"name": "POP",
"source": 1
},
{
"begin": 1042,
"end": 1371,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 1377,
"end": 1494,
"name": "tag",
"source": 1,
"value": "53"
},
{
"begin": 1377,
"end": 1494,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1486,
"end": 1487,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1483,
"end": 1484,
"name": "DUP1",
"source": 1
},
{
"begin": 1476,
"end": 1488,
"name": "REVERT",
"source": 1
},
{
"begin": 1500,
"end": 1617,
"name": "tag",
"source": 1,
"value": "54"
},
{
"begin": 1500,
"end": 1617,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1609,
"end": 1610,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1606,
"end": 1607,
"name": "DUP1",
"source": 1
},
{
"begin": 1599,
"end": 1611,
"name": "REVERT",
"source": 1
},
{
"begin": 1623,
"end": 1725,
"name": "tag",
"source": 1,
"value": "55"
},
{
"begin": 1623,
"end": 1725,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1664,
"end": 1670,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1715,
"end": 1717,
"name": "PUSH",
"source": 1,
"value": "1F"
},
{
"begin": 1711,
"end": 1718,
"name": "NOT",
"source": 1
},
{
"begin": 1706,
"end": 1708,
"name": "PUSH",
"source": 1,
"value": "1F"
},
{
"begin": 1699,
"end": 1704,
"name": "DUP4",
"source": 1
},
{
"begin": 1695,
"end": 1709,
"name": "ADD",
"source": 1
},
{
"begin": 1691,
"end": 1719,
"name": "AND",
"source": 1
},
{
"begin": 1681,
"end": 1719,
"name": "SWAP1",
"source": 1
},
{
"begin": 1681,
"end": 1719,
"name": "POP",
"source": 1
},
{
"begin": 1623,
"end": 1725,
"name": "SWAP2",
"source": 1
},
{
"begin": 1623,
"end": 1725,
"name": "SWAP1",
"source": 1
},
{
"begin": 1623,
"end": 1725,
"name": "POP",
"source": 1
},
{
"begin": 1623,
"end": 1725,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 1731,
"end": 1911,
"name": "tag",
"source": 1,
"value": "56"
},
{
"begin": 1731,
"end": 1911,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1779,
"end": 1856,
"name": "PUSH",
"source": 1,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 1776,
"end": 1777,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1769,
"end": 1857,
"name": "MSTORE",
"source": 1
},
{
"begin": 1876,
"end": 1880,
"name": "PUSH",
"source": 1,
"value": "41"
},
{
"begin": 1873,
"end": 1874,
"name": "PUSH",
"source": 1,
"value": "4"
},
{
"begin": 1866,
"end": 1881,
"name": "MSTORE",
"source": 1
},
{
"begin": 1900,
"end": 1904,
"name": "PUSH",
"source": 1,
"value": "24"
},
{
"begin": 1897,
"end": 1898,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1890,
"end": 1905,
"name": "REVERT",
"source": 1
},
{
"begin": 1917,
"end": 2198,
"name": "tag",
"source": 1,
"value": "57"
},
{
"begin": 1917,
"end": 2198,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2000,
"end": 2027,
"name": "PUSH [tag]",
"source": 1,
"value": "108"
},
{
"begin": 2022,
"end": 2026,
"name": "DUP3",
"source": 1
},
{
"begin": 2000,
"end": 2027,
"name": "PUSH [tag]",
"source": 1,
"value": "55"
},
{
"begin": 2000,
"end": 2027,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 2000,
"end": 2027,
"name": "tag",
"source": 1,
"value": "108"
},
{
"begin": 2000,
"end": 2027,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1992,
"end": 1998,
"name": "DUP2",
"source": 1
},
{
"begin": 1988,
"end": 2028,
"name": "ADD",
"source": 1
},
{
"begin": 2130,
"end": 2136,
"name": "DUP2",
"source": 1
},
{
"begin": 2118,
"end": 2128,
"name": "DUP2",
"source": 1
},
{
"begin": 2115,
"end": 2137,
"name": "LT",
"source": 1
},
{
"begin": 2094,
"end": 2112,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 2082,
"end": 2092,
"name": "DUP3",
"source": 1
},
{
"begin": 2079,
"end": 2113,
"name": "GT",
"source": 1
},
{
"begin": 2076,
"end": 2138,
"name": "OR",
"source": 1
},
{
"begin": 2073,
"end": 2161,
"name": "ISZERO",
"source": 1
},
{
"begin": 2073,
"end": 2161,
"name": "PUSH [tag]",
"source": 1,
"value": "109"
},
{
"begin": 2073,
"end": 2161,
"name": "JUMPI",
"source": 1
},
{
"begin": 2141,
"end": 2159,
"name": "PUSH [tag]",
"source": 1,
"value": "110"
},
{
"begin": 2141,
"end": 2159,
"name": "PUSH [tag]",
"source": 1,
"value": "56"
},
{
"begin": 2141,
"end": 2159,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 2141,
"end": 2159,
"name": "tag",
"source": 1,
"value": "110"
},
{
"begin": 2141,
"end": 2159,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2073,
"end": 2161,
"name": "tag",
"source": 1,
"value": "109"
},
{
"begin": 2073,
"end": 2161,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2181,
"end": 2191,
"name": "DUP1",
"source": 1
},
{
"begin": 2177,
"end": 2179,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 2170,
"end": 2192,
"name": "MSTORE",
"source": 1
},
{
"begin": 1960,
"end": 2198,
"name": "POP",
"source": 1
},
{
"begin": 1917,
"end": 2198,
"name": "POP",
"source": 1
},
{
"begin": 1917,
"end": 2198,
"name": "POP",
"source": 1
},
{
"begin": 1917,
"end": 2198,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 2204,
"end": 2333,
"name": "tag",
"source": 1,
"value": "58"
},
{
"begin": 2204,
"end": 2333,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2238,
"end": 2244,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2265,
"end": 2285,
"name": "PUSH [tag]",
"source": 1,
"value": "112"
},
{
"begin": 2265,
"end": 2285,
"name": "PUSH [tag]",
"source": 1,
"value": "48"
},
{
"begin": 2265,
"end": 2285,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 2265,
"end": 2285,
"name": "tag",
"source": 1,
"value": "112"
},
{
"begin": 2265,
"end": 2285,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2255,
"end": 2285,
"name": "SWAP1",
"source": 1
},
{
"begin": 2255,
"end": 2285,
"name": "POP",
"source": 1
},
{
"begin": 2294,
"end": 2327,
"name": "PUSH [tag]",
"source": 1,
"value": "113"
},
{
"begin": 2322,
"end": 2326,
"name": "DUP3",
"source": 1
},
{
"begin": 2314,
"end": 2320,
"name": "DUP3",
"source": 1
},
{
"begin": 2294,
"end": 2327,
"name": "PUSH [tag]",
"source": 1,
"value": "57"
},
{
"begin": 2294,
"end": 2327,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 2294,
"end": 2327,
"name": "tag",
"source": 1,
"value": "113"
},
{
"begin": 2294,
"end": 2327,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2204,
"end": 2333,
"name": "SWAP2",
"source": 1
},
{
"begin": 2204,
"end": 2333,
"name": "SWAP1",
"source": 1
},
{
"begin": 2204,
"end": 2333,
"name": "POP",
"source": 1
},
{
"begin": 2204,
"end": 2333,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 2339,
"end": 2647,
"name": "tag",
"source": 1,
"value": "59"
},
{
"begin": 2339,
"end": 2647,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2401,
"end": 2405,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2491,
"end": 2509,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 2483,
"end": 2489,
"name": "DUP3",
"source": 1
},
{
"begin": 2480,
"end": 2510,
"name": "GT",
"source": 1
},
{
"begin": 2477,
"end": 2533,
"name": "ISZERO",
"source": 1
},
{
"begin": 2477,
"end": 2533,
"name": "PUSH [tag]",
"source": 1,
"value": "115"
},
{
"begin": 2477,
"end": 2533,
"name": "JUMPI",
"source": 1
},
{
"begin": 2513,
"end": 2531,
"name": "PUSH [tag]",
"source": 1,
"value": "116"
},
{
"begin": 2513,
"end": 2531,
"name": "PUSH [tag]",
"source": 1,
"value": "56"
},
{
"begin": 2513,
"end": 2531,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 2513,
"end": 2531,
"name": "tag",
"source": 1,
"value": "116"
},
{
"begin": 2513,
"end": 2531,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2477,
"end": 2533,
"name": "tag",
"source": 1,
"value": "115"
},
{
"begin": 2477,
"end": 2533,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2551,
"end": 2580,
"name": "PUSH [tag]",
"source": 1,
"value": "117"
},
{
"begin": 2573,
"end": 2579,
"name": "DUP3",
"source": 1
},
{
"begin": 2551,
"end": 2580,
"name": "PUSH [tag]",
"source": 1,
"value": "55"
},
{
"begin": 2551,
"end": 2580,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 2551,
"end": 2580,
"name": "tag",
"source": 1,
"value": "117"
},
{
"begin": 2551,
"end": 2580,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2543,
"end": 2580,
"name": "SWAP1",
"source": 1
},
{
"begin": 2543,
"end": 2580,
"name": "POP",
"source": 1
},
{
"begin": 2635,
"end": 2639,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 2629,
"end": 2633,
"name": "DUP2",
"source": 1
},
{
"begin": 2625,
"end": 2640,
"name": "ADD",
"source": 1
},
{
"begin": 2617,
"end": 2640,
"name": "SWAP1",
"source": 1
},
{
"begin": 2617,
"end": 2640,
"name": "POP",
"source": 1
},
{
"begin": 2339,
"end": 2647,
"name": "SWAP2",
"source": 1
},
{
"begin": 2339,
"end": 2647,
"name": "SWAP1",
"source": 1
},
{
"begin": 2339,
"end": 2647,
"name": "POP",
"source": 1
},
{
"begin": 2339,
"end": 2647,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 2653,
"end": 2799,
"name": "tag",
"source": 1,
"value": "60"
},
{
"begin": 2653,
"end": 2799,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2750,
"end": 2756,
"name": "DUP3",
"source": 1
},
{
"begin": 2745,
"end": 2748,
"name": "DUP2",
"source": 1
},
{
"begin": 2740,
"end": 2743,
"name": "DUP4",
"source": 1
},
{
"begin": 2727,
"end": 2757,
"name": "CALLDATACOPY",
"source": 1
},
{
"begin": 2791,
"end": 2792,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2782,
"end": 2788,
"name": "DUP4",
"source": 1
},
{
"begin": 2777,
"end": 2780,
"name": "DUP4",
"source": 1
},
{
"begin": 2773,
"end": 2789,
"name": "ADD",
"source": 1
},
{
"begin": 2766,
"end": 2793,
"name": "MSTORE",
"source": 1
},
{
"begin": 2653,
"end": 2799,
"name": "POP",
"source": 1
},
{
"begin": 2653,
"end": 2799,
"name": "POP",
"source": 1
},
{
"begin": 2653,
"end": 2799,
"name": "POP",
"source": 1
},
{
"begin": 2653,
"end": 2799,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 2805,
"end": 3230,
"name": "tag",
"source": 1,
"value": "61"
},
{
"begin": 2805,
"end": 3230,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2883,
"end": 2888,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2908,
"end": 2974,
"name": "PUSH [tag]",
"source": 1,
"value": "120"
},
{
"begin": 2924,
"end": 2973,
"name": "PUSH [tag]",
"source": 1,
"value": "121"
},
{
"begin": 2966,
"end": 2972,
"name": "DUP5",
"source": 1
},
{
"begin": 2924,
"end": 2973,
"name": "PUSH [tag]",
"source": 1,
"value": "59"
},
{
"begin": 2924,
"end": 2973,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 2924,
"end": 2973,
"name": "tag",
"source": 1,
"value": "121"
},
{
"begin": 2924,
"end": 2973,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2908,
"end": 2974,
"name": "PUSH [tag]",
"source": 1,
"value": "58"
},
{
"begin": 2908,
"end": 2974,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 2908,
"end": 2974,
"name": "tag",
"source": 1,
"value": "120"
},
{
"begin": 2908,
"end": 2974,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2899,
"end": 2974,
"name": "SWAP1",
"source": 1
},
{
"begin": 2899,
"end": 2974,
"name": "POP",
"source": 1
},
{
"begin": 2997,
"end": 3003,
"name": "DUP3",
"source": 1
},
{
"begin": 2990,
"end": 2995,
"name": "DUP2",
"source": 1
},
{
"begin": 2983,
"end": 3004,
"name": "MSTORE",
"source": 1
},
{
"begin": 3035,
"end": 3039,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 3028,
"end": 3033,
"name": "DUP2",
"source": 1
},
{
"begin": 3024,
"end": 3040,
"name": "ADD",
"source": 1
},
{
"begin": 3073,
"end": 3076,
"name": "DUP5",
"source": 1
},
{
"begin": 3064,
"end": 3070,
"name": "DUP5",
"source": 1
},
{
"begin": 3059,
"end": 3062,
"name": "DUP5",
"source": 1
},
{
"begin": 3055,
"end": 3071,
"name": "ADD",
"source": 1
},
{
"begin": 3052,
"end": 3077,
"name": "GT",
"source": 1
},
{
"begin": 3049,
"end": 3161,
"name": "ISZERO",
"source": 1
},
{
"begin": 3049,
"end": 3161,
"name": "PUSH [tag]",
"source": 1,
"value": "122"
},
{
"begin": 3049,
"end": 3161,
"name": "JUMPI",
"source": 1
},
{
"begin": 3080,
"end": 3159,
"name": "PUSH [tag]",
"source": 1,
"value": "123"
},
{
"begin": 3080,
"end": 3159,
"name": "PUSH [tag]",
"source": 1,
"value": "54"
},
{
"begin": 3080,
"end": 3159,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 3080,
"end": 3159,
"name": "tag",
"source": 1,
"value": "123"
},
{
"begin": 3080,
"end": 3159,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3049,
"end": 3161,
"name": "tag",
"source": 1,
"value": "122"
},
{
"begin": 3049,
"end": 3161,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3170,
"end": 3224,
"name": "PUSH [tag]",
"source": 1,
"value": "124"
},
{
"begin": 3217,
"end": 3223,
"name": "DUP5",
"source": 1
},
{
"begin": 3212,
"end": 3215,
"name": "DUP3",
"source": 1
},
{
"begin": 3207,
"end": 3210,
"name": "DUP6",
"source": 1
},
{
"begin": 3170,
"end": 3224,
"name": "PUSH [tag]",
"source": 1,
"value": "60"
},
{
"begin": 3170,
"end": 3224,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 3170,
"end": 3224,
"name": "tag",
"source": 1,
"value": "124"
},
{
"begin": 3170,
"end": 3224,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2889,
"end": 3230,
"name": "POP",
"source": 1
},
{
"begin": 2805,
"end": 3230,
"name": "SWAP4",
"source": 1
},
{
"begin": 2805,
"end": 3230,
"name": "SWAP3",
"source": 1
},
{
"begin": 2805,
"end": 3230,
"name": "POP",
"source": 1
},
{
"begin": 2805,
"end": 3230,
"name": "POP",
"source": 1
},
{
"begin": 2805,
"end": 3230,
"name": "POP",
"source": 1
},
{
"begin": 2805,
"end": 3230,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 3250,
"end": 3590,
"name": "tag",
"source": 1,
"value": "62"
},
{
"begin": 3250,
"end": 3590,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3306,
"end": 3311,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 3355,
"end": 3358,
"name": "DUP3",
"source": 1
},
{
"begin": 3348,
"end": 3352,
"name": "PUSH",
"source": 1,
"value": "1F"
},
{
"begin": 3340,
"end": 3346,
"name": "DUP4",
"source": 1
},
{
"begin": 3336,
"end": 3353,
"name": "ADD",
"source": 1
},
{
"begin": 3332,
"end": 3359,
"name": "SLT",
"source": 1
},
{
"begin": 3322,
"end": 3444,
"name": "PUSH [tag]",
"source": 1,
"value": "126"
},
{
"begin": 3322,
"end": 3444,
"name": "JUMPI",
"source": 1
},
{
"begin": 3363,
"end": 3442,
"name": "PUSH [tag]",
"source": 1,
"value": "127"
},
{
"begin": 3363,
"end": 3442,
"name": "PUSH [tag]",
"source": 1,
"value": "53"
},
{
"begin": 3363,
"end": 3442,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 3363,
"end": 3442,
"name": "tag",
"source": 1,
"value": "127"
},
{
"begin": 3363,
"end": 3442,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3322,
"end": 3444,
"name": "tag",
"source": 1,
"value": "126"
},
{
"begin": 3322,
"end": 3444,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3480,
"end": 3486,
"name": "DUP2",
"source": 1
},
{
"begin": 3467,
"end": 3487,
"name": "CALLDATALOAD",
"source": 1
},
{
"begin": 3505,
"end": 3584,
"name": "PUSH [tag]",
"source": 1,
"value": "128"
},
{
"begin": 3580,
"end": 3583,
"name": "DUP5",
"source": 1
},
{
"begin": 3572,
"end": 3578,
"name": "DUP3",
"source": 1
},
{
"begin": 3565,
"end": 3569,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 3557,
"end": 3563,
"name": "DUP7",
"source": 1
},
{
"begin": 3553,
"end": 3570,
"name": "ADD",
"source": 1
},
{
"begin": 3505,
"end": 3584,
"name": "PUSH [tag]",
"source": 1,
"value": "61"
},
{
"begin": 3505,
"end": 3584,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 3505,
"end": 3584,
"name": "tag",
"source": 1,
"value": "128"
},
{
"begin": 3505,
"end": 3584,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3496,
"end": 3584,
"name": "SWAP2",
"source": 1
},
{
"begin": 3496,
"end": 3584,
"name": "POP",
"source": 1
},
{
"begin": 3312,
"end": 3590,
"name": "POP",
"source": 1
},
{
"begin": 3250,
"end": 3590,
"name": "SWAP3",
"source": 1
},
{
"begin": 3250,
"end": 3590,
"name": "SWAP2",
"source": 1
},
{
"begin": 3250,
"end": 3590,
"name": "POP",
"source": 1
},
{
"begin": 3250,
"end": 3590,
"name": "POP",
"source": 1
},
{
"begin": 3250,
"end": 3590,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 3596,
"end": 4250,
"name": "tag",
"source": 1,
"value": "18"
},
{
"begin": 3596,
"end": 4250,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3674,
"end": 3680,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 3682,
"end": 3688,
"name": "DUP1",
"source": 1
},
{
"begin": 3731,
"end": 3733,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 3719,
"end": 3728,
"name": "DUP4",
"source": 1
},
{
"begin": 3710,
"end": 3717,
"name": "DUP6",
"source": 1
},
{
"begin": 3706,
"end": 3729,
"name": "SUB",
"source": 1
},
{
"begin": 3702,
"end": 3734,
"name": "SLT",
"source": 1
},
{
"begin": 3699,
"end": 3818,
"name": "ISZERO",
"source": 1
},
{
"begin": 3699,
"end": 3818,
"name": "PUSH [tag]",
"source": 1,
"value": "130"
},
{
"begin": 3699,
"end": 3818,
"name": "JUMPI",
"source": 1
},
{
"begin": 3737,
"end": 3816,
"name": "PUSH [tag]",
"source": 1,
"value": "131"
},
{
"begin": 3737,
"end": 3816,
"name": "PUSH [tag]",
"source": 1,
"value": "49"
},
{
"begin": 3737,
"end": 3816,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 3737,
"end": 3816,
"name": "tag",
"source": 1,
"value": "131"
},
{
"begin": 3737,
"end": 3816,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3699,
"end": 3818,
"name": "tag",
"source": 1,
"value": "130"
},
{
"begin": 3699,
"end": 3818,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3885,
"end": 3886,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 3874,
"end": 3883,
"name": "DUP4",
"source": 1
},
{
"begin": 3870,
"end": 3887,
"name": "ADD",
"source": 1
},
{
"begin": 3857,
"end": 3888,
"name": "CALLDATALOAD",
"source": 1
},
{
"begin": 3915,
"end": 3933,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 3907,
"end": 3913,
"name": "DUP2",
"source": 1
},
{
"begin": 3904,
"end": 3934,
"name": "GT",
"source": 1
},
{
"begin": 3901,
"end": 4018,
"name": "ISZERO",
"source": 1
},
{
"begin": 3901,
"end": 4018,
"name": "PUSH [tag]",
"source": 1,
"value": "132"
},
{
"begin": 3901,
"end": 4018,
"name": "JUMPI",
"source": 1
},
{
"begin": 3937,
"end": 4016,
"name": "PUSH [tag]",
"source": 1,
"value": "133"
},
{
"begin": 3937,
"end": 4016,
"name": "PUSH [tag]",
"source": 1,
"value": "50"
},
{
"begin": 3937,
"end": 4016,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 3937,
"end": 4016,
"name": "tag",
"source": 1,
"value": "133"
},
{
"begin": 3937,
"end": 4016,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3901,
"end": 4018,
"name": "tag",
"source": 1,
"value": "132"
},
{
"begin": 3901,
"end": 4018,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4042,
"end": 4105,
"name": "PUSH [tag]",
"source": 1,
"value": "134"
},
{
"begin": 4097,
"end": 4104,
"name": "DUP6",
"source": 1
},
{
"begin": 4088,
"end": 4094,
"name": "DUP3",
"source": 1
},
{
"begin": 4077,
"end": 4086,
"name": "DUP7",
"source": 1
},
{
"begin": 4073,
"end": 4095,
"name": "ADD",
"source": 1
},
{
"begin": 4042,
"end": 4105,
"name": "PUSH [tag]",
"source": 1,
"value": "62"
},
{
"begin": 4042,
"end": 4105,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 4042,
"end": 4105,
"name": "tag",
"source": 1,
"value": "134"
},
{
"begin": 4042,
"end": 4105,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4032,
"end": 4105,
"name": "SWAP3",
"source": 1
},
{
"begin": 4032,
"end": 4105,
"name": "POP",
"source": 1
},
{
"begin": 3828,
"end": 4115,
"name": "POP",
"source": 1
},
{
"begin": 4154,
"end": 4156,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 4180,
"end": 4233,
"name": "PUSH [tag]",
"source": 1,
"value": "135"
},
{
"begin": 4225,
"end": 4232,
"name": "DUP6",
"source": 1
},
{
"begin": 4216,
"end": 4222,
"name": "DUP3",
"source": 1
},
{
"begin": 4205,
"end": 4214,
"name": "DUP7",
"source": 1
},
{
"begin": 4201,
"end": 4223,
"name": "ADD",
"source": 1
},
{
"begin": 4180,
"end": 4233,
"name": "PUSH [tag]",
"source": 1,
"value": "52"
},
{
"begin": 4180,
"end": 4233,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 4180,
"end": 4233,
"name": "tag",
"source": 1,
"value": "135"
},
{
"begin": 4180,
"end": 4233,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4170,
"end": 4233,
"name": "SWAP2",
"source": 1
},
{
"begin": 4170,
"end": 4233,
"name": "POP",
"source": 1
},
{
"begin": 4125,
"end": 4243,
"name": "POP",
"source": 1
},
{
"begin": 3596,
"end": 4250,
"name": "SWAP3",
"source": 1
},
{
"begin": 3596,
"end": 4250,
"name": "POP",
"source": 1
},
{
"begin": 3596,
"end": 4250,
"name": "SWAP3",
"source": 1
},
{
"begin": 3596,
"end": 4250,
"name": "SWAP1",
"source": 1
},
{
"begin": 3596,
"end": 4250,
"name": "POP",
"source": 1
},
{
"begin": 3596,
"end": 4250,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 4256,
"end": 4765,
"name": "tag",
"source": 1,
"value": "22"
},
{
"begin": 4256,
"end": 4765,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4325,
"end": 4331,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 4374,
"end": 4376,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 4362,
"end": 4371,
"name": "DUP3",
"source": 1
},
{
"begin": 4353,
"end": 4360,
"name": "DUP5",
"source": 1
},
{
"begin": 4349,
"end": 4372,
"name": "SUB",
"source": 1
},
{
"begin": 4345,
"end": 4377,
"name": "SLT",
"source": 1
},
{
"begin": 4342,
"end": 4461,
"name": "ISZERO",
"source": 1
},
{
"begin": 4342,
"end": 4461,
"name": "PUSH [tag]",
"source": 1,
"value": "137"
},
{
"begin": 4342,
"end": 4461,
"name": "JUMPI",
"source": 1
},
{
"begin": 4380,
"end": 4459,
"name": "PUSH [tag]",
"source": 1,
"value": "138"
},
{
"begin": 4380,
"end": 4459,
"name": "PUSH [tag]",
"source": 1,
"value": "49"
},
{
"begin": 4380,
"end": 4459,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 4380,
"end": 4459,
"name": "tag",
"source": 1,
"value": "138"
},
{
"begin": 4380,
"end": 4459,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4342,
"end": 4461,
"name": "tag",
"source": 1,
"value": "137"
},
{
"begin": 4342,
"end": 4461,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4528,
"end": 4529,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 4517,
"end": 4526,
"name": "DUP3",
"source": 1
},
{
"begin": 4513,
"end": 4530,
"name": "ADD",
"source": 1
},
{
"begin": 4500,
"end": 4531,
"name": "CALLDATALOAD",
"source": 1
},
{
"begin": 4558,
"end": 4576,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 4550,
"end": 4556,
"name": "DUP2",
"source": 1
},
{
"begin": 4547,
"end": 4577,
"name": "GT",
"source": 1
},
{
"begin": 4544,
"end": 4661,
"name": "ISZERO",
"source": 1
},
{
"begin": 4544,
"end": 4661,
"name": "PUSH [tag]",
"source": 1,
"value": "139"
},
{
"begin": 4544,
"end": 4661,
"name": "JUMPI",
"source": 1
},
{
"begin": 4580,
"end": 4659,
"name": "PUSH [tag]",
"source": 1,
"value": "140"
},
{
"begin": 4580,
"end": 4659,
"name": "PUSH [tag]",
"source": 1,
"value": "50"
},
{
"begin": 4580,
"end": 4659,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 4580,
"end": 4659,
"name": "tag",
"source": 1,
"value": "140"
},
{
"begin": 4580,
"end": 4659,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4544,
"end": 4661,
"name": "tag",
"source": 1,
"value": "139"
},
{
"begin": 4544,
"end": 4661,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4685,
"end": 4748,
"name": "PUSH [tag]",
"source": 1,
"value": "141"
},
{
"begin": 4740,
"end": 4747,
"name": "DUP5",
"source": 1
},
{
"begin": 4731,
"end": 4737,
"name": "DUP3",
"source": 1
},
{
"begin": 4720,
"end": 4729,
"name": "DUP6",
"source": 1
},
{
"begin": 4716,
"end": 4738,
"name": "ADD",
"source": 1
},
{
"begin": 4685,
"end": 4748,
"name": "PUSH [tag]",
"source": 1,
"value": "62"
},
{
"begin": 4685,
"end": 4748,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 4685,
"end": 4748,
"name": "tag",
"source": 1,
"value": "141"
},
{
"begin": 4685,
"end": 4748,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4675,
"end": 4748,
"name": "SWAP2",
"source": 1
},
{
"begin": 4675,
"end": 4748,
"name": "POP",
"source": 1
},
{
"begin": 4471,
"end": 4758,
"name": "POP",
"source": 1
},
{
"begin": 4256,
"end": 4765,
"name": "SWAP3",
"source": 1
},
{
"begin": 4256,
"end": 4765,
"name": "SWAP2",
"source": 1
},
{
"begin": 4256,
"end": 4765,
"name": "POP",
"source": 1
},
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