Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rbrick/183d955de9e4cc9a3c85134b963442da to your computer and use it in GitHub Desktop.
Save rbrick/183d955de9e4cc9a3c85134b963442da 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.13+commit.abaa5c0e.js&optimize=false&runs=200&gist=
This file has been truncated, but you can view the full file.
{
"id": "c7b959fcbba31847bedeecf4657e4425",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.13",
"solcLongVersion": "0.8.13+commit.abaa5c0e",
"input": {
"language": "Solidity",
"sources": {
"ThrowawayNFT_flat.sol": {
"content": "\n// File: @openzeppelin/contracts/utils/Address.sol\n\n\n// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)\n\npragma solidity ^0.8.1;\n\n/**\n * @dev Collection of functions related to the address type\n */\nlibrary Address {\n /**\n * @dev Returns true if `account` is a contract.\n *\n * [IMPORTANT]\n * ====\n * It is unsafe to assume that an address for which this function returns\n * false is an externally-owned account (EOA) and not a contract.\n *\n * Among others, `isContract` will return false for the following\n * types of addresses:\n *\n * - an externally-owned account\n * - a contract in construction\n * - an address where a contract will be created\n * - an address where a contract lived, but was destroyed\n * ====\n *\n * [IMPORTANT]\n * ====\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\n *\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\n * constructor.\n * ====\n */\n function isContract(address account) internal view returns (bool) {\n // This method relies on extcodesize/address.code.length, which returns 0\n // for contracts in construction, since the code is only stored at the end\n // of the constructor execution.\n\n return account.code.length > 0;\n }\n\n /**\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n * `recipient`, forwarding all available gas and reverting on errors.\n *\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\n * imposed by `transfer`, making them unable to receive funds via\n * `transfer`. {sendValue} removes this limitation.\n *\n * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n *\n * IMPORTANT: because control is transferred to `recipient`, care must be\n * taken to not create reentrancy vulnerabilities. Consider using\n * {ReentrancyGuard} or the\n * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\n */\n function sendValue(address payable recipient, uint256 amount) internal {\n require(address(this).balance >= amount, \"Address: insufficient balance\");\n\n (bool success, ) = recipient.call{value: amount}(\"\");\n require(success, \"Address: unable to send value, recipient may have reverted\");\n }\n\n /**\n * @dev Performs a Solidity function call using a low level `call`. A\n * plain `call` is an unsafe replacement for a function call: use this\n * function instead.\n *\n * If `target` reverts with a revert reason, it is bubbled up by this\n * function (like regular Solidity function calls).\n *\n * Returns the raw returned data. To convert to the expected return value,\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n *\n * Requirements:\n *\n * - `target` must be a contract.\n * - calling `target` with `data` must not revert.\n *\n * _Available since v3.1._\n */\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionCall(target, data, \"Address: low-level call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\n * `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but also transferring `value` wei to `target`.\n *\n * Requirements:\n *\n * - the calling contract must have an ETH balance of at least `value`.\n * - the called Solidity function must be `payable`.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(\n address target,\n bytes memory data,\n uint256 value\n ) internal returns (bytes memory) {\n return functionCallWithValue(target, data, value, \"Address: low-level call with value failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\n * with `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(\n address target,\n bytes memory data,\n uint256 value,\n string memory errorMessage\n ) internal returns (bytes memory) {\n require(address(this).balance >= value, \"Address: insufficient balance for call\");\n require(isContract(target), \"Address: call to non-contract\");\n\n (bool success, bytes memory returndata) = target.call{value: value}(data);\n return verifyCallResult(success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\n return functionStaticCall(target, data, \"Address: low-level static call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal view returns (bytes memory) {\n require(isContract(target), \"Address: static call to non-contract\");\n\n (bool success, bytes memory returndata) = target.staticcall(data);\n return verifyCallResult(success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionDelegateCall(target, data, \"Address: low-level delegate call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n require(isContract(target), \"Address: delegate call to non-contract\");\n\n (bool success, bytes memory returndata) = target.delegatecall(data);\n return verifyCallResult(success, returndata, errorMessage);\n }\n\n /**\n * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\n * revert reason using the provided one.\n *\n * _Available since v4.3._\n */\n function verifyCallResult(\n bool success,\n bytes memory returndata,\n string memory errorMessage\n ) internal pure returns (bytes memory) {\n if (success) {\n return returndata;\n } else {\n // Look for revert reason and bubble it up if present\n if (returndata.length > 0) {\n // The easiest way to bubble the revert reason is using memory via assembly\n\n assembly {\n let returndata_size := mload(returndata)\n revert(add(32, returndata), returndata_size)\n }\n } else {\n revert(errorMessage);\n }\n }\n }\n}\n\n// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\n\n\n// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @title ERC721 token receiver interface\n * @dev Interface for any contract that wants to support safeTransfers\n * from ERC721 asset contracts.\n */\ninterface IERC721Receiver {\n /**\n * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}\n * by `operator` from `from`, this function is called.\n *\n * It must return its Solidity selector to confirm the token transfer.\n * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.\n *\n * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.\n */\n function onERC721Received(\n address operator,\n address from,\n uint256 tokenId,\n bytes calldata data\n ) external returns (bytes4);\n}\n\n// File: @openzeppelin/contracts/utils/introspection/IERC165.sol\n\n\n// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC165 standard, as defined in the\n * https://eips.ethereum.org/EIPS/eip-165[EIP].\n *\n * Implementers can declare support of contract interfaces, which can then be\n * queried by others ({ERC165Checker}).\n *\n * For an implementation, see {ERC165}.\n */\ninterface IERC165 {\n /**\n * @dev Returns true if this contract implements the interface defined by\n * `interfaceId`. See the corresponding\n * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]\n * to learn more about how these ids are created.\n *\n * This function call must use less than 30 000 gas.\n */\n function supportsInterface(bytes4 interfaceId) external view returns (bool);\n}\n\n// File: @openzeppelin/contracts/utils/introspection/ERC165.sol\n\n\n// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)\n\npragma solidity ^0.8.0;\n\n\n/**\n * @dev Implementation of the {IERC165} interface.\n *\n * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check\n * for the additional interface id that will be supported. For example:\n *\n * ```solidity\n * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);\n * }\n * ```\n *\n * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.\n */\nabstract contract ERC165 is IERC165 {\n /**\n * @dev See {IERC165-supportsInterface}.\n */\n function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n return interfaceId == type(IERC165).interfaceId;\n }\n}\n\n// File: @openzeppelin/contracts/token/ERC721/IERC721.sol\n\n\n// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)\n\npragma solidity ^0.8.0;\n\n\n/**\n * @dev Required interface of an ERC721 compliant contract.\n */\ninterface IERC721 is IERC165 {\n /**\n * @dev Emitted when `tokenId` token is transferred from `from` to `to`.\n */\n event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);\n\n /**\n * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.\n */\n event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);\n\n /**\n * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.\n */\n event ApprovalForAll(address indexed owner, address indexed operator, bool approved);\n\n /**\n * @dev Returns the number of tokens in ``owner``'s account.\n */\n function balanceOf(address owner) external view returns (uint256 balance);\n\n /**\n * @dev Returns the owner of the `tokenId` token.\n *\n * Requirements:\n *\n * - `tokenId` must exist.\n */\n function ownerOf(uint256 tokenId) external view returns (address owner);\n\n /**\n * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\n * are aware of the ERC721 protocol to prevent tokens from being forever locked.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `tokenId` token must exist and be owned by `from`.\n * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.\n * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n *\n * Emits a {Transfer} event.\n */\n function safeTransferFrom(\n address from,\n address to,\n uint256 tokenId\n ) external;\n\n /**\n * @dev Transfers `tokenId` token from `from` to `to`.\n *\n * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `tokenId` token must be owned by `from`.\n * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n *\n * Emits a {Transfer} event.\n */\n function transferFrom(\n address from,\n address to,\n uint256 tokenId\n ) external;\n\n /**\n * @dev Gives permission to `to` to transfer `tokenId` token to another account.\n * The approval is cleared when the token is transferred.\n *\n * Only a single account can be approved at a time, so approving the zero address clears previous approvals.\n *\n * Requirements:\n *\n * - The caller must own the token or be an approved operator.\n * - `tokenId` must exist.\n *\n * Emits an {Approval} event.\n */\n function approve(address to, uint256 tokenId) external;\n\n /**\n * @dev Returns the account approved for `tokenId` token.\n *\n * Requirements:\n *\n * - `tokenId` must exist.\n */\n function getApproved(uint256 tokenId) external view returns (address operator);\n\n /**\n * @dev Approve or remove `operator` as an operator for the caller.\n * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.\n *\n * Requirements:\n *\n * - The `operator` cannot be the caller.\n *\n * Emits an {ApprovalForAll} event.\n */\n function setApprovalForAll(address operator, bool _approved) external;\n\n /**\n * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.\n *\n * See {setApprovalForAll}\n */\n function isApprovedForAll(address owner, address operator) external view returns (bool);\n\n /**\n * @dev Safely transfers `tokenId` token from `from` to `to`.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `tokenId` token must exist and be owned by `from`.\n * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n *\n * Emits a {Transfer} event.\n */\n function safeTransferFrom(\n address from,\n address to,\n uint256 tokenId,\n bytes calldata data\n ) external;\n}\n\n// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol\n\n\n// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)\n\npragma solidity ^0.8.0;\n\n\n/**\n * @title ERC-721 Non-Fungible Token Standard, optional metadata extension\n * @dev See https://eips.ethereum.org/EIPS/eip-721\n */\ninterface IERC721Metadata is IERC721 {\n /**\n * @dev Returns the token collection name.\n */\n function name() external view returns (string memory);\n\n /**\n * @dev Returns the token collection symbol.\n */\n function symbol() external view returns (string memory);\n\n /**\n * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.\n */\n function tokenURI(uint256 tokenId) external view returns (string memory);\n}\n\n// File: @openzeppelin/contracts/utils/math/Math.sol\n\n\n// OpenZeppelin Contracts (last updated v4.7.0) (utils/math/Math.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Standard math utilities missing in the Solidity language.\n */\nlibrary Math {\n enum Rounding {\n Down, // Toward negative infinity\n Up, // Toward infinity\n Zero // Toward zero\n }\n\n /**\n * @dev Returns the largest of two numbers.\n */\n function max(uint256 a, uint256 b) internal pure returns (uint256) {\n return a >= b ? a : b;\n }\n\n /**\n * @dev Returns the smallest of two numbers.\n */\n function min(uint256 a, uint256 b) internal pure returns (uint256) {\n return a < b ? a : b;\n }\n\n /**\n * @dev Returns the average of two numbers. The result is rounded towards\n * zero.\n */\n function average(uint256 a, uint256 b) internal pure returns (uint256) {\n // (a + b) / 2 can overflow.\n return (a & b) + (a ^ b) / 2;\n }\n\n /**\n * @dev Returns the ceiling of the division of two numbers.\n *\n * This differs from standard division with `/` in that it rounds up instead\n * of rounding down.\n */\n function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {\n // (a + b - 1) / b can overflow on addition, so we distribute.\n return a == 0 ? 0 : (a - 1) / b + 1;\n }\n\n /**\n * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0\n * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)\n * with further edits by Uniswap Labs also under MIT license.\n */\n function mulDiv(\n uint256 x,\n uint256 y,\n uint256 denominator\n ) internal pure returns (uint256 result) {\n unchecked {\n // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use\n // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256\n // variables such that product = prod1 * 2^256 + prod0.\n uint256 prod0; // Least significant 256 bits of the product\n uint256 prod1; // Most significant 256 bits of the product\n assembly {\n let mm := mulmod(x, y, not(0))\n prod0 := mul(x, y)\n prod1 := sub(sub(mm, prod0), lt(mm, prod0))\n }\n\n // Handle non-overflow cases, 256 by 256 division.\n if (prod1 == 0) {\n return prod0 / denominator;\n }\n\n // Make sure the result is less than 2^256. Also prevents denominator == 0.\n require(denominator > prod1);\n\n ///////////////////////////////////////////////\n // 512 by 256 division.\n ///////////////////////////////////////////////\n\n // Make division exact by subtracting the remainder from [prod1 prod0].\n uint256 remainder;\n assembly {\n // Compute remainder using mulmod.\n remainder := mulmod(x, y, denominator)\n\n // Subtract 256 bit number from 512 bit number.\n prod1 := sub(prod1, gt(remainder, prod0))\n prod0 := sub(prod0, remainder)\n }\n\n // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.\n // See https://cs.stackexchange.com/q/138556/92363.\n\n // Does not overflow because the denominator cannot be zero at this stage in the function.\n uint256 twos = denominator & (~denominator + 1);\n assembly {\n // Divide denominator by twos.\n denominator := div(denominator, twos)\n\n // Divide [prod1 prod0] by twos.\n prod0 := div(prod0, twos)\n\n // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.\n twos := add(div(sub(0, twos), twos), 1)\n }\n\n // Shift in bits from prod1 into prod0.\n prod0 |= prod1 * twos;\n\n // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such\n // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for\n // four bits. That is, denominator * inv = 1 mod 2^4.\n uint256 inverse = (3 * denominator) ^ 2;\n\n // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works\n // in modular arithmetic, doubling the correct bits in each step.\n inverse *= 2 - denominator * inverse; // inverse mod 2^8\n inverse *= 2 - denominator * inverse; // inverse mod 2^16\n inverse *= 2 - denominator * inverse; // inverse mod 2^32\n inverse *= 2 - denominator * inverse; // inverse mod 2^64\n inverse *= 2 - denominator * inverse; // inverse mod 2^128\n inverse *= 2 - denominator * inverse; // inverse mod 2^256\n\n // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.\n // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is\n // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1\n // is no longer required.\n result = prod0 * inverse;\n return result;\n }\n }\n\n /**\n * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.\n */\n function mulDiv(\n uint256 x,\n uint256 y,\n uint256 denominator,\n Rounding rounding\n ) internal pure returns (uint256) {\n uint256 result = mulDiv(x, y, denominator);\n if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {\n result += 1;\n }\n return result;\n }\n\n /**\n * @dev Returns the square root of a number. It the number is not a perfect square, the value is rounded down.\n *\n * Inspired by Henry S. Warren, Jr.'s \"Hacker's Delight\" (Chapter 11).\n */\n function sqrt(uint256 a) internal pure returns (uint256) {\n if (a == 0) {\n return 0;\n }\n\n // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.\n // We know that the \"msb\" (most significant bit) of our target number `a` is a power of 2 such that we have\n // `msb(a) <= a < 2*msb(a)`.\n // We also know that `k`, the position of the most significant bit, is such that `msb(a) = 2**k`.\n // This gives `2**k < a <= 2**(k+1)` → `2**(k/2) <= sqrt(a) < 2 ** (k/2+1)`.\n // Using an algorithm similar to the msb conmputation, we are able to compute `result = 2**(k/2)` which is a\n // good first aproximation of `sqrt(a)` with at least 1 correct bit.\n uint256 result = 1;\n uint256 x = a;\n if (x >> 128 > 0) {\n x >>= 128;\n result <<= 64;\n }\n if (x >> 64 > 0) {\n x >>= 64;\n result <<= 32;\n }\n if (x >> 32 > 0) {\n x >>= 32;\n result <<= 16;\n }\n if (x >> 16 > 0) {\n x >>= 16;\n result <<= 8;\n }\n if (x >> 8 > 0) {\n x >>= 8;\n result <<= 4;\n }\n if (x >> 4 > 0) {\n x >>= 4;\n result <<= 2;\n }\n if (x >> 2 > 0) {\n result <<= 1;\n }\n\n // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,\n // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at\n // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision\n // into the expected uint128 result.\n unchecked {\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n return min(result, a / result);\n }\n }\n\n /**\n * @notice Calculates sqrt(a), following the selected rounding direction.\n */\n function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {\n uint256 result = sqrt(a);\n if (rounding == Rounding.Up && result * result < a) {\n result += 1;\n }\n return result;\n }\n}\n\n// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol\n\n\n// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev These functions deal with verification of Merkle Tree proofs.\n *\n * The proofs can be generated using the JavaScript library\n * https://github.com/miguelmota/merkletreejs[merkletreejs].\n * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.\n *\n * See `test/utils/cryptography/MerkleProof.test.js` for some examples.\n *\n * WARNING: You should avoid using leaf values that are 64 bytes long prior to\n * hashing, or use a hash function other than keccak256 for hashing leaves.\n * This is because the concatenation of a sorted pair of internal nodes in\n * the merkle tree could be reinterpreted as a leaf value.\n */\nlibrary MerkleProof {\n /**\n * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree\n * defined by `root`. For this, a `proof` must be provided, containing\n * sibling hashes on the branch from the leaf to the root of the tree. Each\n * pair of leaves and each pair of pre-images are assumed to be sorted.\n */\n function verify(\n bytes32[] memory proof,\n bytes32 root,\n bytes32 leaf\n ) internal pure returns (bool) {\n return processProof(proof, leaf) == root;\n }\n\n /**\n * @dev Calldata version of {verify}\n *\n * _Available since v4.7._\n */\n function verifyCalldata(\n bytes32[] calldata proof,\n bytes32 root,\n bytes32 leaf\n ) internal pure returns (bool) {\n return processProofCalldata(proof, leaf) == root;\n }\n\n /**\n * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up\n * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt\n * hash matches the root of the tree. When processing the proof, the pairs\n * of leafs & pre-images are assumed to be sorted.\n *\n * _Available since v4.4._\n */\n function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {\n bytes32 computedHash = leaf;\n for (uint256 i = 0; i < proof.length; i++) {\n computedHash = _hashPair(computedHash, proof[i]);\n }\n return computedHash;\n }\n\n /**\n * @dev Calldata version of {processProof}\n *\n * _Available since v4.7._\n */\n function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {\n bytes32 computedHash = leaf;\n for (uint256 i = 0; i < proof.length; i++) {\n computedHash = _hashPair(computedHash, proof[i]);\n }\n return computedHash;\n }\n\n /**\n * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by\n * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.\n *\n * _Available since v4.7._\n */\n function multiProofVerify(\n bytes32[] memory proof,\n bool[] memory proofFlags,\n bytes32 root,\n bytes32[] memory leaves\n ) internal pure returns (bool) {\n return processMultiProof(proof, proofFlags, leaves) == root;\n }\n\n /**\n * @dev Calldata version of {multiProofVerify}\n *\n * _Available since v4.7._\n */\n function multiProofVerifyCalldata(\n bytes32[] calldata proof,\n bool[] calldata proofFlags,\n bytes32 root,\n bytes32[] memory leaves\n ) internal pure returns (bool) {\n return processMultiProofCalldata(proof, proofFlags, leaves) == root;\n }\n\n /**\n * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,\n * consuming from one or the other at each step according to the instructions given by\n * `proofFlags`.\n *\n * _Available since v4.7._\n */\n function processMultiProof(\n bytes32[] memory proof,\n bool[] memory proofFlags,\n bytes32[] memory leaves\n ) internal pure returns (bytes32 merkleRoot) {\n // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by\n // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the\n // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of\n // the merkle tree.\n uint256 leavesLen = leaves.length;\n uint256 totalHashes = proofFlags.length;\n\n // Check proof validity.\n require(leavesLen + proof.length - 1 == totalHashes, \"MerkleProof: invalid multiproof\");\n\n // The xxxPos values are \"pointers\" to the next value to consume in each array. All accesses are done using\n // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's \"pop\".\n bytes32[] memory hashes = new bytes32[](totalHashes);\n uint256 leafPos = 0;\n uint256 hashPos = 0;\n uint256 proofPos = 0;\n // At each step, we compute the next hash using two values:\n // - a value from the \"main queue\". If not all leaves have been consumed, we get the next leaf, otherwise we\n // get the next hash.\n // - depending on the flag, either another value for the \"main queue\" (merging branches) or an element from the\n // `proof` array.\n for (uint256 i = 0; i < totalHashes; i++) {\n bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];\n bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];\n hashes[i] = _hashPair(a, b);\n }\n\n if (totalHashes > 0) {\n return hashes[totalHashes - 1];\n } else if (leavesLen > 0) {\n return leaves[0];\n } else {\n return proof[0];\n }\n }\n\n /**\n * @dev Calldata version of {processMultiProof}\n *\n * _Available since v4.7._\n */\n function processMultiProofCalldata(\n bytes32[] calldata proof,\n bool[] calldata proofFlags,\n bytes32[] memory leaves\n ) internal pure returns (bytes32 merkleRoot) {\n // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by\n // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the\n // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of\n // the merkle tree.\n uint256 leavesLen = leaves.length;\n uint256 totalHashes = proofFlags.length;\n\n // Check proof validity.\n require(leavesLen + proof.length - 1 == totalHashes, \"MerkleProof: invalid multiproof\");\n\n // The xxxPos values are \"pointers\" to the next value to consume in each array. All accesses are done using\n // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's \"pop\".\n bytes32[] memory hashes = new bytes32[](totalHashes);\n uint256 leafPos = 0;\n uint256 hashPos = 0;\n uint256 proofPos = 0;\n // At each step, we compute the next hash using two values:\n // - a value from the \"main queue\". If not all leaves have been consumed, we get the next leaf, otherwise we\n // get the next hash.\n // - depending on the flag, either another value for the \"main queue\" (merging branches) or an element from the\n // `proof` array.\n for (uint256 i = 0; i < totalHashes; i++) {\n bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];\n bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];\n hashes[i] = _hashPair(a, b);\n }\n\n if (totalHashes > 0) {\n return hashes[totalHashes - 1];\n } else if (leavesLen > 0) {\n return leaves[0];\n } else {\n return proof[0];\n }\n }\n\n function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {\n return a < b ? _efficientHash(a, b) : _efficientHash(b, a);\n }\n\n function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {\n /// @solidity memory-safe-assembly\n assembly {\n mstore(0x00, a)\n mstore(0x20, b)\n value := keccak256(0x00, 0x40)\n }\n }\n}\n\n// File: @openzeppelin/contracts/utils/Strings.sol\n\n\n// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev String operations.\n */\nlibrary Strings {\n bytes16 private constant _HEX_SYMBOLS = \"0123456789abcdef\";\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` decimal representation.\n */\n function toString(uint256 value) internal pure returns (string memory) {\n // Inspired by OraclizeAPI's implementation - MIT licence\n // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol\n\n if (value == 0) {\n return \"0\";\n }\n uint256 temp = value;\n uint256 digits;\n while (temp != 0) {\n digits++;\n temp /= 10;\n }\n bytes memory buffer = new bytes(digits);\n while (value != 0) {\n digits -= 1;\n buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));\n value /= 10;\n }\n return string(buffer);\n }\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.\n */\n function toHexString(uint256 value) internal pure returns (string memory) {\n if (value == 0) {\n return \"0x00\";\n }\n uint256 temp = value;\n uint256 length = 0;\n while (temp != 0) {\n length++;\n temp >>= 8;\n }\n return toHexString(value, length);\n }\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.\n */\n function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {\n bytes memory buffer = new bytes(2 * length + 2);\n buffer[0] = \"0\";\n buffer[1] = \"x\";\n for (uint256 i = 2 * length + 1; i > 1; --i) {\n buffer[i] = _HEX_SYMBOLS[value & 0xf];\n value >>= 4;\n }\n require(value == 0, \"Strings: hex length insufficient\");\n return string(buffer);\n }\n}\n\n// File: @openzeppelin/contracts/security/ReentrancyGuard.sol\n\n\n// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Contract module that helps prevent reentrant calls to a function.\n *\n * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier\n * available, which can be applied to functions to make sure there are no nested\n * (reentrant) calls to them.\n *\n * Note that because there is a single `nonReentrant` guard, functions marked as\n * `nonReentrant` may not call one another. This can be worked around by making\n * those functions `private`, and then adding `external` `nonReentrant` entry\n * points to them.\n *\n * TIP: If you would like to learn more about reentrancy and alternative ways\n * to protect against it, check out our blog post\n * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].\n */\nabstract contract ReentrancyGuard {\n // Booleans are more expensive than uint256 or any type that takes up a full\n // word because each write operation emits an extra SLOAD to first read the\n // slot's contents, replace the bits taken up by the boolean, and then write\n // back. This is the compiler's defense against contract upgrades and\n // pointer aliasing, and it cannot be disabled.\n\n // The values being non-zero value makes deployment a bit more expensive,\n // but in exchange the refund on every call to nonReentrant will be lower in\n // amount. Since refunds are capped to a percentage of the total\n // transaction's gas, it is best to keep them low in cases like this one, to\n // increase the likelihood of the full refund coming into effect.\n uint256 private constant _NOT_ENTERED = 1;\n uint256 private constant _ENTERED = 2;\n\n uint256 private _status;\n\n constructor() {\n _status = _NOT_ENTERED;\n }\n\n /**\n * @dev Prevents a contract from calling itself, directly or indirectly.\n * Calling a `nonReentrant` function from another `nonReentrant`\n * function is not supported. It is possible to prevent this from happening\n * by making the `nonReentrant` function external, and making it call a\n * `private` function that does the actual work.\n */\n modifier nonReentrant() {\n // On the first call to nonReentrant, _notEntered will be true\n require(_status != _ENTERED, \"ReentrancyGuard: reentrant call\");\n\n // Any calls to nonReentrant after this point will fail\n _status = _ENTERED;\n\n _;\n\n // By storing the original value once again, a refund is triggered (see\n // https://eips.ethereum.org/EIPS/eip-2200)\n _status = _NOT_ENTERED;\n }\n}\n\n// File: @openzeppelin/contracts/utils/Context.sol\n\n\n// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Provides information about the current execution context, including the\n * sender of the transaction and its data. While these are generally available\n * via msg.sender and msg.data, they should not be accessed in such a direct\n * manner, since when dealing with meta-transactions the account sending and\n * paying for execution may not be the actual sender (as far as an application\n * is concerned).\n *\n * This contract is only required for intermediate, library-like contracts.\n */\nabstract contract Context {\n function _msgSender() internal view virtual returns (address) {\n return msg.sender;\n }\n\n function _msgData() internal view virtual returns (bytes calldata) {\n return msg.data;\n }\n}\n\n// File: contracts/ERC721A.sol\n\n\n// Creator: Chiru Labs\n\npragma solidity ^0.8.4;\n\n\n\n\n\n\n\n\nerror ApprovalCallerNotOwnerNorApproved();\nerror ApprovalQueryForNonexistentToken();\nerror ApproveToCaller();\nerror ApprovalToCurrentOwner();\nerror BalanceQueryForZeroAddress();\nerror MintToZeroAddress();\nerror MintZeroQuantity();\nerror OwnerQueryForNonexistentToken();\nerror TransferCallerNotOwnerNorApproved();\nerror TransferFromIncorrectOwner();\nerror TransferToNonERC721ReceiverImplementer();\nerror TransferToZeroAddress();\nerror URIQueryForNonexistentToken();\n\n/**\n * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including\n * the Metadata extension. Built to optimize for lower gas during batch mints.\n *\n * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).\n *\n * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.\n *\n * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).\n */\ncontract ERC721A is Context, ERC165, IERC721, IERC721Metadata {\n using Address for address;\n using Strings for uint256;\n\n // Compiler will pack this into a single 256bit word.\n struct TokenOwnership {\n // The address of the owner.\n address addr;\n // Keeps track of the start time of ownership with minimal overhead for tokenomics.\n uint64 startTimestamp;\n // Whether the token has been burned.\n bool burned;\n }\n\n // Compiler will pack this into a single 256bit word.\n struct AddressData {\n // Realistically, 2**64-1 is more than enough.\n uint64 balance;\n // Keeps track of mint count with minimal overhead for tokenomics.\n uint64 numberMinted;\n // Keeps track of burn count with minimal overhead for tokenomics.\n uint64 numberBurned;\n // For miscellaneous variable(s) pertaining to the address\n // (e.g. number of whitelist mint slots used).\n // If there are multiple variables, please pack them into a uint64.\n uint64 aux;\n }\n\n // The tokenId of the next token to be minted.\n uint256 internal _currentIndex;\n\n // The number of tokens burned.\n uint256 internal _burnCounter;\n\n // Token name\n string private _name;\n\n // Token symbol\n string private _symbol;\n\n // Mapping from token ID to ownership details\n // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.\n mapping(uint256 => TokenOwnership) internal _ownerships;\n\n // Mapping owner address to address data\n mapping(address => AddressData) private _addressData;\n\n // Mapping from token ID to approved address\n mapping(uint256 => address) private _tokenApprovals;\n\n // Mapping from owner to operator approvals\n mapping(address => mapping(address => bool)) private _operatorApprovals;\n\n constructor(string memory name_, string memory symbol_) {\n _name = name_;\n _symbol = symbol_;\n _currentIndex = _startTokenId();\n }\n\n /**\n * To change the starting tokenId, please override this function.\n */\n function _startTokenId() internal view virtual returns (uint256) {\n return 0;\n }\n\n /**\n * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.\n */\n function totalSupply() public view returns (uint256) {\n // Counter underflow is impossible as _burnCounter cannot be incremented\n // more than _currentIndex - _startTokenId() times\n unchecked {\n return _currentIndex - _burnCounter - _startTokenId();\n }\n }\n\n /**\n * Returns the total amount of tokens minted in the contract.\n */\n function _totalMinted() internal view returns (uint256) {\n // Counter underflow is impossible as _currentIndex does not decrement,\n // and it is initialized to _startTokenId()\n unchecked {\n return _currentIndex - _startTokenId();\n }\n }\n\n /**\n * @dev See {IERC165-supportsInterface}.\n */\n function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {\n return\n interfaceId == type(IERC721).interfaceId ||\n interfaceId == type(IERC721Metadata).interfaceId ||\n super.supportsInterface(interfaceId);\n }\n\n /**\n * @dev See {IERC721-balanceOf}.\n */\n function balanceOf(address owner) public view override returns (uint256) {\n if (owner == address(0)) revert BalanceQueryForZeroAddress();\n return uint256(_addressData[owner].balance);\n }\n\n /**\n * Returns the number of tokens minted by `owner`.\n */\n function _numberMinted(address owner) internal view returns (uint256) {\n return uint256(_addressData[owner].numberMinted);\n }\n\n /**\n * Returns the number of tokens burned by or on behalf of `owner`.\n */\n function _numberBurned(address owner) internal view returns (uint256) {\n return uint256(_addressData[owner].numberBurned);\n }\n\n /**\n * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).\n */\n function _getAux(address owner) internal view returns (uint64) {\n return _addressData[owner].aux;\n }\n\n /**\n * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).\n * If there are multiple variables, please pack them into a uint64.\n */\n function _setAux(address owner, uint64 aux) internal {\n _addressData[owner].aux = aux;\n }\n\n /**\n * Gas spent here starts off proportional to the maximum mint batch size.\n * It gradually moves to O(1) as tokens get transferred around in the collection over time.\n */\n function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {\n uint256 curr = tokenId;\n\n unchecked {\n if (_startTokenId() <= curr && curr < _currentIndex) {\n TokenOwnership memory ownership = _ownerships[curr];\n if (!ownership.burned) {\n if (ownership.addr != address(0)) {\n return ownership;\n }\n // Invariant:\n // There will always be an ownership that has an address and is not burned\n // before an ownership that does not have an address and is not burned.\n // Hence, curr will not underflow.\n while (true) {\n curr--;\n ownership = _ownerships[curr];\n if (ownership.addr != address(0)) {\n return ownership;\n }\n }\n }\n }\n }\n revert OwnerQueryForNonexistentToken();\n }\n\n /**\n * @dev See {IERC721-ownerOf}.\n */\n function ownerOf(uint256 tokenId) public view override returns (address) {\n return _ownershipOf(tokenId).addr;\n }\n\n /**\n * @dev See {IERC721Metadata-name}.\n */\n function name() public view virtual override returns (string memory) {\n return _name;\n }\n\n /**\n * @dev See {IERC721Metadata-symbol}.\n */\n function symbol() public view virtual override returns (string memory) {\n return _symbol;\n }\n\n /**\n * @dev See {IERC721Metadata-tokenURI}.\n */\n function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {\n if (!_exists(tokenId)) revert URIQueryForNonexistentToken();\n\n string memory baseURI = _baseURI();\n return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '';\n }\n\n /**\n * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each\n * token will be the concatenation of the `baseURI` and the `tokenId`. Empty\n * by default, can be overriden in child contracts.\n */\n function _baseURI() internal view virtual returns (string memory) {\n return '';\n }\n\n /**\n * @dev See {IERC721-approve}.\n */\n function approve(address to, uint256 tokenId) public override {\n address owner = ERC721A.ownerOf(tokenId);\n if (to == owner) revert ApprovalToCurrentOwner();\n\n if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {\n revert ApprovalCallerNotOwnerNorApproved();\n }\n\n _approve(to, tokenId, owner);\n }\n\n /**\n * @dev See {IERC721-getApproved}.\n */\n function getApproved(uint256 tokenId) public view override returns (address) {\n if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();\n\n return _tokenApprovals[tokenId];\n }\n\n /**\n * @dev See {IERC721-setApprovalForAll}.\n */\n function setApprovalForAll(address operator, bool approved) public virtual override {\n if (operator == _msgSender()) revert ApproveToCaller();\n\n _operatorApprovals[_msgSender()][operator] = approved;\n emit ApprovalForAll(_msgSender(), operator, approved);\n }\n\n /**\n * @dev See {IERC721-isApprovedForAll}.\n */\n function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {\n return _operatorApprovals[owner][operator];\n }\n\n /**\n * @dev See {IERC721-transferFrom}.\n */\n function transferFrom(\n address from,\n address to,\n uint256 tokenId\n ) public virtual override {\n _transfer(from, to, tokenId);\n }\n\n /**\n * @dev See {IERC721-safeTransferFrom}.\n */\n function safeTransferFrom(\n address from,\n address to,\n uint256 tokenId\n ) public virtual override {\n safeTransferFrom(from, to, tokenId, '');\n }\n\n /**\n * @dev See {IERC721-safeTransferFrom}.\n */\n function safeTransferFrom(\n address from,\n address to,\n uint256 tokenId,\n bytes memory _data\n ) public virtual override {\n _transfer(from, to, tokenId);\n if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {\n revert TransferToNonERC721ReceiverImplementer();\n }\n }\n\n /**\n * @dev Returns whether `tokenId` exists.\n *\n * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.\n *\n * Tokens start existing when they are minted (`_mint`),\n */\n function _exists(uint256 tokenId) internal view returns (bool) {\n return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;\n }\n\n function _safeMint(address to, uint256 quantity) internal {\n _safeMint(to, quantity, '');\n }\n\n /**\n * @dev Safely mints `quantity` tokens and transfers them to `to`.\n *\n * Requirements:\n *\n * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.\n * - `quantity` must be greater than 0.\n *\n * Emits a {Transfer} event.\n */\n function _safeMint(\n address to,\n uint256 quantity,\n bytes memory _data\n ) internal {\n _mint(to, quantity, _data, true);\n }\n\n /**\n * @dev Mints `quantity` tokens and transfers them to `to`.\n *\n * Requirements:\n *\n * - `to` cannot be the zero address.\n * - `quantity` must be greater than 0.\n *\n * Emits a {Transfer} event.\n */\n function _mint(\n address to,\n uint256 quantity,\n bytes memory _data,\n bool safe\n ) internal {\n uint256 startTokenId = _currentIndex;\n if (to == address(0)) revert MintToZeroAddress();\n if (quantity == 0) revert MintZeroQuantity();\n\n _beforeTokenTransfers(address(0), to, startTokenId, quantity);\n\n // Overflows are incredibly unrealistic.\n // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1\n // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1\n unchecked {\n _addressData[to].balance += uint64(quantity);\n _addressData[to].numberMinted += uint64(quantity);\n\n _ownerships[startTokenId].addr = to;\n _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);\n\n uint256 updatedIndex = startTokenId;\n uint256 end = updatedIndex + quantity;\n\n if (safe && to.isContract()) {\n do {\n emit Transfer(address(0), to, updatedIndex);\n if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {\n revert TransferToNonERC721ReceiverImplementer();\n }\n } while (updatedIndex != end);\n // Reentrancy protection\n if (_currentIndex != startTokenId) revert();\n } else {\n do {\n emit Transfer(address(0), to, updatedIndex++);\n } while (updatedIndex != end);\n }\n _currentIndex = updatedIndex;\n }\n _afterTokenTransfers(address(0), to, startTokenId, quantity);\n }\n\n /**\n * @dev Transfers `tokenId` from `from` to `to`.\n *\n * Requirements:\n *\n * - `to` cannot be the zero address.\n * - `tokenId` token must be owned by `from`.\n *\n * Emits a {Transfer} event.\n */\n function _transfer(\n address from,\n address to,\n uint256 tokenId\n ) private {\n TokenOwnership memory prevOwnership = _ownershipOf(tokenId);\n\n if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();\n\n bool isApprovedOrOwner = (_msgSender() == from ||\n isApprovedForAll(from, _msgSender()) ||\n getApproved(tokenId) == _msgSender());\n\n if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();\n if (to == address(0)) revert TransferToZeroAddress();\n\n _beforeTokenTransfers(from, to, tokenId, 1);\n\n // Clear approvals from the previous owner\n _approve(address(0), tokenId, from);\n\n // Underflow of the sender's balance is impossible because we check for\n // ownership above and the recipient's balance can't realistically overflow.\n // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.\n unchecked {\n _addressData[from].balance -= 1;\n _addressData[to].balance += 1;\n\n TokenOwnership storage currSlot = _ownerships[tokenId];\n currSlot.addr = to;\n currSlot.startTimestamp = uint64(block.timestamp);\n\n // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.\n // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.\n uint256 nextTokenId = tokenId + 1;\n TokenOwnership storage nextSlot = _ownerships[nextTokenId];\n if (nextSlot.addr == address(0)) {\n // This will suffice for checking _exists(nextTokenId),\n // as a burned slot cannot contain the zero address.\n if (nextTokenId != _currentIndex) {\n nextSlot.addr = from;\n nextSlot.startTimestamp = prevOwnership.startTimestamp;\n }\n }\n }\n\n emit Transfer(from, to, tokenId);\n _afterTokenTransfers(from, to, tokenId, 1);\n }\n\n /**\n * @dev This is equivalent to _burn(tokenId, false)\n */\n function _burn(uint256 tokenId) internal virtual {\n _burn(tokenId, false);\n }\n\n /**\n * @dev Destroys `tokenId`.\n * The approval is cleared when the token is burned.\n *\n * Requirements:\n *\n * - `tokenId` must exist.\n *\n * Emits a {Transfer} event.\n */\n function _burn(uint256 tokenId, bool approvalCheck) internal virtual {\n TokenOwnership memory prevOwnership = _ownershipOf(tokenId);\n\n address from = prevOwnership.addr;\n\n if (approvalCheck) {\n bool isApprovedOrOwner = (_msgSender() == from ||\n isApprovedForAll(from, _msgSender()) ||\n getApproved(tokenId) == _msgSender());\n\n if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();\n }\n\n _beforeTokenTransfers(from, address(0), tokenId, 1);\n\n // Clear approvals from the previous owner\n _approve(address(0), tokenId, from);\n\n // Underflow of the sender's balance is impossible because we check for\n // ownership above and the recipient's balance can't realistically overflow.\n // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.\n unchecked {\n AddressData storage addressData = _addressData[from];\n addressData.balance -= 1;\n addressData.numberBurned += 1;\n\n // Keep track of who burned the token, and the timestamp of burning.\n TokenOwnership storage currSlot = _ownerships[tokenId];\n currSlot.addr = from;\n currSlot.startTimestamp = uint64(block.timestamp);\n currSlot.burned = true;\n\n // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.\n // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.\n uint256 nextTokenId = tokenId + 1;\n TokenOwnership storage nextSlot = _ownerships[nextTokenId];\n if (nextSlot.addr == address(0)) {\n // This will suffice for checking _exists(nextTokenId),\n // as a burned slot cannot contain the zero address.\n if (nextTokenId != _currentIndex) {\n nextSlot.addr = from;\n nextSlot.startTimestamp = prevOwnership.startTimestamp;\n }\n }\n }\n\n emit Transfer(from, address(0), tokenId);\n _afterTokenTransfers(from, address(0), tokenId, 1);\n\n // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.\n unchecked {\n _burnCounter++;\n }\n }\n\n /**\n * @dev Approve `to` to operate on `tokenId`\n *\n * Emits a {Approval} event.\n */\n function _approve(\n address to,\n uint256 tokenId,\n address owner\n ) private {\n _tokenApprovals[tokenId] = to;\n emit Approval(owner, to, tokenId);\n }\n\n /**\n * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.\n *\n * @param from address representing the previous owner of the given token ID\n * @param to target address that will receive the tokens\n * @param tokenId uint256 ID of the token to be transferred\n * @param _data bytes optional data to send along with the call\n * @return bool whether the call correctly returned the expected magic value\n */\n function _checkContractOnERC721Received(\n address from,\n address to,\n uint256 tokenId,\n bytes memory _data\n ) private returns (bool) {\n try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {\n return retval == IERC721Receiver(to).onERC721Received.selector;\n } catch (bytes memory reason) {\n if (reason.length == 0) {\n revert TransferToNonERC721ReceiverImplementer();\n } else {\n assembly {\n revert(add(32, reason), mload(reason))\n }\n }\n }\n }\n\n /**\n * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.\n * And also called before burning one token.\n *\n * startTokenId - the first token id to be transferred\n * quantity - the amount to be transferred\n *\n * Calling conditions:\n *\n * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be\n * transferred to `to`.\n * - When `from` is zero, `tokenId` will be minted for `to`.\n * - When `to` is zero, `tokenId` will be burned by `from`.\n * - `from` and `to` are never both zero.\n */\n function _beforeTokenTransfers(\n address from,\n address to,\n uint256 startTokenId,\n uint256 quantity\n ) internal virtual {}\n\n /**\n * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes\n * minting.\n * And also called after one token has been burned.\n *\n * startTokenId - the first token id to be transferred\n * quantity - the amount to be transferred\n *\n * Calling conditions:\n *\n * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been\n * transferred to `to`.\n * - When `from` is zero, `tokenId` has been minted for `to`.\n * - When `to` is zero, `tokenId` has been burned by `from`.\n * - `from` and `to` are never both zero.\n */\n function _afterTokenTransfers(\n address from,\n address to,\n uint256 startTokenId,\n uint256 quantity\n ) internal virtual {}\n}\n\n// File: @openzeppelin/contracts/access/Ownable.sol\n\n\n// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)\n\npragma solidity ^0.8.0;\n\n\n/**\n * @dev Contract module which provides a basic access control mechanism, where\n * there is an account (an owner) that can be granted exclusive access to\n * specific functions.\n *\n * By default, the owner account will be the one that deploys the contract. This\n * can later be changed with {transferOwnership}.\n *\n * This module is used through inheritance. It will make available the modifier\n * `onlyOwner`, which can be applied to your functions to restrict their use to\n * the owner.\n */\nabstract contract Ownable is Context {\n address private _owner;\n\n event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\n\n /**\n * @dev Initializes the contract setting the deployer as the initial owner.\n */\n constructor() {\n _transferOwnership(_msgSender());\n }\n\n /**\n * @dev Returns the address of the current owner.\n */\n function owner() public view virtual returns (address) {\n return _owner;\n }\n\n /**\n * @dev Throws if called by any account other than the owner.\n */\n modifier onlyOwner() {\n require(owner() == _msgSender(), \"Ownable: caller is not the owner\");\n _;\n }\n\n /**\n * @dev Leaves the contract without owner. It will not be possible to call\n * `onlyOwner` functions anymore. Can only be called by the current owner.\n *\n * NOTE: Renouncing ownership will leave the contract without an owner,\n * thereby removing any functionality that is only available to the owner.\n */\n function renounceOwnership() public virtual onlyOwner {\n _transferOwnership(address(0));\n }\n\n /**\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\n * Can only be called by the current owner.\n */\n function transferOwnership(address newOwner) public virtual onlyOwner {\n require(newOwner != address(0), \"Ownable: new owner is the zero address\");\n _transferOwnership(newOwner);\n }\n\n /**\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\n * Internal function without access restriction.\n */\n function _transferOwnership(address newOwner) internal virtual {\n address oldOwner = _owner;\n _owner = newOwner;\n emit OwnershipTransferred(oldOwner, newOwner);\n }\n}\n\n// File: contracts/ThrowawayNFT.sol\n\npragma solidity ^0.8.13;\n\n\n\n\n\n\n\n\ncontract NFT is ERC721A, Ownable, ReentrancyGuard {\n using Strings for uint256;\n\n enum MintState {\n\n // PUBLIC: open for all, integer id: 0\n PUBLIC,\n // WHITELIST: only used for\n WHITELIST,\n // mint is closed, only admin/owner may mint\n CLOSED\n }\n\n uint256 public constant MAX_FREE_MINTS = 1000;\n uint256 public constant MINT_PRICE = 0.005 ether;\n uint256 public constant MINT_PER_ACCOUNT = 5;\n\n\n uint256 public immutable MAX_SUPPLY;\n\n // the state of whether minting is allowed.\n MintState private mintingState = MintState.CLOSED;\n\n string public readMeURI;\n // the base uri for the token\n string public baseURI;\n\n constructor(\n uint256 maxSupply,\n string memory name, string memory symbol\n ) ERC721A(name, symbol) {\n MAX_SUPPLY = maxSupply;\n }\n\n /**\n * To change the starting tokenId, please override this function.\n */\n function _startTokenId() internal override view virtual returns (uint256) {\n return 1;\n }\n\n function setReadMeURI(string calldata _uri) external onlyOwner {\n readMeURI = _uri;\n }\n\n function setBaseURI(string calldata _uri) external onlyOwner {\n baseURI = _uri;\n }\n\n function tokenURI(uint256 tokenId)\n public\n view\n override\n returns (string memory)\n {\n require(\n _exists(tokenId),\n \"ERC721Metadata: URI query for nonexistent token\"\n );\n\n return bytes(baseURI).length > 0\n ? string(\n abi.encodePacked(\n baseURI,\n tokenId.toString(),\n \".json\"))\n : \"\";\n }\n\n modifier mintOpen() {\n require(mintingState == MintState.PUBLIC, \"minting not active.\");\n _;\n }\n\n function ownerMint(uint16 amount) external onlyOwner {\n uint256 totalSupply = totalSupply();\n // ensure minting the amount entered would not mint over the max supply\n require(\n totalSupply + amount < MAX_SUPPLY,\n \"mint amount would be out of range.\"\n );\n\n _safeMint(_msgSender(), amount);\n }\n\n\n function max(int256 a, int256 b) internal returns(int256) {\n return a > b ? a : b;\n }\n\n function min(int256 a, int256 b) internal returns(int256) {\n return a < b ? a : b;\n }\n\n\n function mint(uint256 amount) external payable nonReentrant mintOpen {\n require(msg.sender == tx.origin);\n require(amount > 0 && amount <= MINT_PER_ACCOUNT, \"number too large\");\n\n uint minted = _numberMinted(msg.sender);\n require(minted < MINT_PER_ACCOUNT, \"mint limit reached\");\n require(minted + amount <= MINT_PER_ACCOUNT, \"mint limit reached\");\n \n // this will determine how many free mints are left.\n // 1000 - 999 = 1\n // for example\n int256 remainingFreeMints = max(int256(MAX_FREE_MINTS) - int256(totalSupply()), 0);\n uint256 requiredPrice = 0;\n\n if (remainingFreeMints > 0 && remainingFreeMints < int256(MINT_PER_ACCOUNT)) {\n // if upon this mint, the remaining free mints is less than MINT_PER_ACCOUNT,\n // but larger than zero. We need to calculate for the number of free mints available.\n\n // the number of paid mints would be the total amount to mint, minus the remaining free mints.\n\n // so like\n int256 paidMints = int256(amount) - remainingFreeMints;\n\n if (paidMints > 0) {\n requiredPrice = uint256(paidMints) * MINT_PRICE;\n }\n } else if (remainingFreeMints == 0) {\n requiredPrice = amount * MINT_PRICE;\n }\n\n\n if (requiredPrice > 0) {\n require(msg.value >= requiredPrice, \"out of free mints, must pay 0.005 ether for each\");\n }\n\n _safeMint(msg.sender, amount);\n\n if (msg.value > requiredPrice) {\n uint256 diff = msg.value - requiredPrice;\n payable(msg.sender).call{value: diff}(\"\");\n }\n }\n\n // toggles the state of mint\n function setMintingState(MintState state) external onlyOwner {\n mintingState = state;\n }\n\n\n\n // Issue a withdrawal to a specific address\n function withdraw(address sendTo) external onlyOwner {\n (bool ok, ) = payable(sendTo).call{value: address(this).balance}(\"\");\n require(ok);\n }\n}\n"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"ThrowawayNFT_flat.sol": {
"Address": {
"abi": [],
"devdoc": {
"details": "Collection of functions related to the address type",
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"ThrowawayNFT_flat.sol\":216:8277 library Address {... */\n dataSize(sub_0)\n dataOffset(sub_0)\n 0x0b\n dup3\n dup3\n dup3\n codecopy\n dup1\n mload\n 0x00\n byte\n 0x73\n eq\n tag_1\n jumpi\n mstore(0x00, 0x4e487b7100000000000000000000000000000000000000000000000000000000)\n mstore(0x04, 0x00)\n revert(0x00, 0x24)\ntag_1:\n mstore(0x00, address)\n 0x73\n dup2\n mstore8\n dup3\n dup2\n return\nstop\n\nsub_0: assembly {\n /* \"ThrowawayNFT_flat.sol\":216:8277 library Address {... */\n eq(address, deployTimeAddress())\n mstore(0x40, 0x80)\n 0x00\n dup1\n revert\n\n auxdata: 0xa264697066735822122070acc8b4d85f4183ca1227af85882665ac9e1b27d51c6f64973339ad5db7ae3364736f6c634300080d0033\n}\n",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "60566050600b82828239805160001a6073146043577f4e487b7100000000000000000000000000000000000000000000000000000000600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122070acc8b4d85f4183ca1227af85882665ac9e1b27d51c6f64973339ad5db7ae3364736f6c634300080d0033",
"opcodes": "PUSH1 0x56 PUSH1 0x50 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x43 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH17 0xACC8B4D85F4183CA1227AF85882665AC9E SHL 0x27 0xD5 SHR PUSH16 0x64973339AD5DB7AE3364736F6C634300 ADDMOD 0xD STOP CALLER ",
"sourceMap": "216:8061:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122070acc8b4d85f4183ca1227af85882665ac9e1b27d51c6f64973339ad5db7ae3364736f6c634300080d0033",
"opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH17 0xACC8B4D85F4183CA1227AF85882665AC9E SHL 0x27 0xD5 SHR PUSH16 0x64973339AD5DB7AE3364736F6C634300 ADDMOD 0xD STOP CALLER ",
"sourceMap": "216:8061:0:-:0;;;;;;;;"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "17200",
"executionCost": "97",
"totalCost": "17297"
},
"internal": {
"functionCall(address,bytes memory)": "infinite",
"functionCall(address,bytes memory,string memory)": "infinite",
"functionCallWithValue(address,bytes memory,uint256)": "infinite",
"functionCallWithValue(address,bytes memory,uint256,string memory)": "infinite",
"functionDelegateCall(address,bytes memory)": "infinite",
"functionDelegateCall(address,bytes memory,string memory)": "infinite",
"functionStaticCall(address,bytes memory)": "infinite",
"functionStaticCall(address,bytes memory,string memory)": "infinite",
"isContract(address)": "infinite",
"sendValue(address payable,uint256)": "infinite",
"verifyCallResult(bool,bytes memory,string memory)": "infinite"
}
},
"legacyAssembly": {
".code": [
{
"begin": 216,
"end": 8277,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 216,
"end": 8277,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 216,
"end": 8277,
"name": "PUSH",
"source": 0,
"value": "B"
},
{
"begin": 216,
"end": 8277,
"name": "DUP3",
"source": 0
},
{
"begin": 216,
"end": 8277,
"name": "DUP3",
"source": 0
},
{
"begin": 216,
"end": 8277,
"name": "DUP3",
"source": 0
},
{
"begin": 216,
"end": 8277,
"name": "CODECOPY",
"source": 0
},
{
"begin": 216,
"end": 8277,
"name": "DUP1",
"source": 0
},
{
"begin": 216,
"end": 8277,
"name": "MLOAD",
"source": 0
},
{
"begin": 216,
"end": 8277,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 216,
"end": 8277,
"name": "BYTE",
"source": 0
},
{
"begin": 216,
"end": 8277,
"name": "PUSH",
"source": 0,
"value": "73"
},
{
"begin": 216,
"end": 8277,
"name": "EQ",
"source": 0
},
{
"begin": 216,
"end": 8277,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 216,
"end": 8277,
"name": "JUMPI",
"source": 0
},
{
"begin": 216,
"end": 8277,
"name": "PUSH",
"source": 0,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 216,
"end": 8277,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 216,
"end": 8277,
"name": "MSTORE",
"source": 0
},
{
"begin": 216,
"end": 8277,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 216,
"end": 8277,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 216,
"end": 8277,
"name": "MSTORE",
"source": 0
},
{
"begin": 216,
"end": 8277,
"name": "PUSH",
"source": 0,
"value": "24"
},
{
"begin": 216,
"end": 8277,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 216,
"end": 8277,
"name": "REVERT",
"source": 0
},
{
"begin": 216,
"end": 8277,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 216,
"end": 8277,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 216,
"end": 8277,
"name": "ADDRESS",
"source": 0
},
{
"begin": 216,
"end": 8277,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 216,
"end": 8277,
"name": "MSTORE",
"source": 0
},
{
"begin": 216,
"end": 8277,
"name": "PUSH",
"source": 0,
"value": "73"
},
{
"begin": 216,
"end": 8277,
"name": "DUP2",
"source": 0
},
{
"begin": 216,
"end": 8277,
"name": "MSTORE8",
"source": 0
},
{
"begin": 216,
"end": 8277,
"name": "DUP3",
"source": 0
},
{
"begin": 216,
"end": 8277,
"name": "DUP2",
"source": 0
},
{
"begin": 216,
"end": 8277,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a264697066735822122070acc8b4d85f4183ca1227af85882665ac9e1b27d51c6f64973339ad5db7ae3364736f6c634300080d0033",
".code": [
{
"begin": 216,
"end": 8277,
"name": "PUSHDEPLOYADDRESS",
"source": 0
},
{
"begin": 216,
"end": 8277,
"name": "ADDRESS",
"source": 0
},
{
"begin": 216,
"end": 8277,
"name": "EQ",
"source": 0
},
{
"begin": 216,
"end": 8277,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 216,
"end": 8277,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 216,
"end": 8277,
"name": "MSTORE",
"source": 0
},
{
"begin": 216,
"end": 8277,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 216,
"end": 8277,
"name": "DUP1",
"source": 0
},
{
"begin": 216,
"end": 8277,
"name": "REVERT",
"source": 0
}
]
}
}
},
"methodIdentifiers": {}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.13+commit.abaa5c0e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Collection of functions related to the address type\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"ThrowawayNFT_flat.sol\":\"Address\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"ThrowawayNFT_flat.sol\":{\"keccak256\":\"0x14d565a1d50efcff385c62c66eca63b62c154e49c6abee72b1509cb5f099449f\",\"urls\":[\"bzz-raw://b636586c082177a22af688a1baef647bb505c645649e635c4cea52a384eb7c55\",\"dweb:/ipfs/QmajrF3Zge8ncJBHkDJqK1VBeRwon8kCRnougtgAhqoZig\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"Context": {
"abi": [],
"devdoc": {
"details": "Provides information about the current execution context, including the sender of the transaction and its data. While these are generally available via msg.sender and msg.data, they should not be accessed in such a direct manner, since when dealing with meta-transactions the account sending and paying for execution may not be the actual sender (as far as an application is concerned). This contract is only required for intermediate, library-like contracts.",
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.13+commit.abaa5c0e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Provides information about the current execution context, including the sender of the transaction and its data. While these are generally available via msg.sender and msg.data, they should not be accessed in such a direct manner, since when dealing with meta-transactions the account sending and paying for execution may not be the actual sender (as far as an application is concerned). This contract is only required for intermediate, library-like contracts.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"ThrowawayNFT_flat.sol\":\"Context\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"ThrowawayNFT_flat.sol\":{\"keccak256\":\"0x14d565a1d50efcff385c62c66eca63b62c154e49c6abee72b1509cb5f099449f\",\"urls\":[\"bzz-raw://b636586c082177a22af688a1baef647bb505c645649e635c4cea52a384eb7c55\",\"dweb:/ipfs/QmajrF3Zge8ncJBHkDJqK1VBeRwon8kCRnougtgAhqoZig\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"ERC165": {
"abi": [
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"details": "Implementation of the {IERC165} interface. Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check for the additional interface id that will be supported. For example: ```solidity function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); } ``` Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.",
"kind": "dev",
"methods": {
"supportsInterface(bytes4)": {
"details": "See {IERC165-supportsInterface}."
}
},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {
"supportsInterface(bytes4)": "01ffc9a7"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.13+commit.abaa5c0e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Implementation of the {IERC165} interface. Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check for the additional interface id that will be supported. For example: ```solidity function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); } ``` Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.\",\"kind\":\"dev\",\"methods\":{\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"ThrowawayNFT_flat.sol\":\"ERC165\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"ThrowawayNFT_flat.sol\":{\"keccak256\":\"0x14d565a1d50efcff385c62c66eca63b62c154e49c6abee72b1509cb5f099449f\",\"urls\":[\"bzz-raw://b636586c082177a22af688a1baef647bb505c645649e635c4cea52a384eb7c55\",\"dweb:/ipfs/QmajrF3Zge8ncJBHkDJqK1VBeRwon8kCRnougtgAhqoZig\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"ERC721A": {
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "name_",
"type": "string"
},
{
"internalType": "string",
"name": "symbol_",
"type": "string"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [],
"name": "ApprovalCallerNotOwnerNorApproved",
"type": "error"
},
{
"inputs": [],
"name": "ApprovalQueryForNonexistentToken",
"type": "error"
},
{
"inputs": [],
"name": "ApprovalToCurrentOwner",
"type": "error"
},
{
"inputs": [],
"name": "ApproveToCaller",
"type": "error"
},
{
"inputs": [],
"name": "BalanceQueryForZeroAddress",
"type": "error"
},
{
"inputs": [],
"name": "OwnerQueryForNonexistentToken",
"type": "error"
},
{
"inputs": [],
"name": "TransferCallerNotOwnerNorApproved",
"type": "error"
},
{
"inputs": [],
"name": "TransferFromIncorrectOwner",
"type": "error"
},
{
"inputs": [],
"name": "TransferToNonERC721ReceiverImplementer",
"type": "error"
},
{
"inputs": [],
"name": "TransferToZeroAddress",
"type": "error"
},
{
"inputs": [],
"name": "URIQueryForNonexistentToken",
"type": "error"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "approved",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"indexed": false,
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "ApprovalForAll",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "approve",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "getApproved",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"name": "isApprovedForAll",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "ownerOf",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "_data",
"type": "bytes"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "setApprovalForAll",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "tokenURI",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including the Metadata extension. Built to optimize for lower gas during batch mints. Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).",
"kind": "dev",
"methods": {
"approve(address,uint256)": {
"details": "See {IERC721-approve}."
},
"balanceOf(address)": {
"details": "See {IERC721-balanceOf}."
},
"getApproved(uint256)": {
"details": "See {IERC721-getApproved}."
},
"isApprovedForAll(address,address)": {
"details": "See {IERC721-isApprovedForAll}."
},
"name()": {
"details": "See {IERC721Metadata-name}."
},
"ownerOf(uint256)": {
"details": "See {IERC721-ownerOf}."
},
"safeTransferFrom(address,address,uint256)": {
"details": "See {IERC721-safeTransferFrom}."
},
"safeTransferFrom(address,address,uint256,bytes)": {
"details": "See {IERC721-safeTransferFrom}."
},
"setApprovalForAll(address,bool)": {
"details": "See {IERC721-setApprovalForAll}."
},
"supportsInterface(bytes4)": {
"details": "See {IERC165-supportsInterface}."
},
"symbol()": {
"details": "See {IERC721Metadata-symbol}."
},
"tokenURI(uint256)": {
"details": "See {IERC721Metadata-tokenURI}."
},
"totalSupply()": {
"details": "Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC721-transferFrom}."
}
},
"version": 1
},
"evm": {
"assembly": " /* \"ThrowawayNFT_flat.sol\":40688:61019 contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {... */\n mstore(0x40, 0x80)\n /* \"ThrowawayNFT_flat.sol\":42581:42735 constructor(string memory name_, string memory symbol_) {... */\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n mload(0x40)\n sub(codesize, bytecodeSize)\n dup1\n bytecodeSize\n dup4\n codecopy\n dup2\n dup2\n add\n 0x40\n mstore\n dup2\n add\n swap1\n tag_2\n swap2\n swap1\n tag_3\n jump\t// in\ntag_2:\n /* \"ThrowawayNFT_flat.sol\":42655:42660 name_ */\n dup2\n /* \"ThrowawayNFT_flat.sol\":42647:42652 _name */\n 0x02\n /* \"ThrowawayNFT_flat.sol\":42647:42660 _name = name_ */\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_6\n swap3\n swap2\n swap1\n tag_7\n jump\t// in\ntag_6:\n pop\n /* \"ThrowawayNFT_flat.sol\":42680:42687 symbol_ */\n dup1\n /* \"ThrowawayNFT_flat.sol\":42670:42677 _symbol */\n 0x03\n /* \"ThrowawayNFT_flat.sol\":42670:42687 _symbol = symbol_ */\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_8\n swap3\n swap2\n swap1\n tag_7\n jump\t// in\ntag_8:\n pop\n /* \"ThrowawayNFT_flat.sol\":42713:42728 _startTokenId() */\n tag_9\n /* \"ThrowawayNFT_flat.sol\":42713:42726 _startTokenId */\n shl(0x20, tag_10)\n /* \"ThrowawayNFT_flat.sol\":42713:42728 _startTokenId() */\n 0x20\n shr\n jump\t// in\ntag_9:\n /* \"ThrowawayNFT_flat.sol\":42697:42710 _currentIndex */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":42697:42728 _currentIndex = _startTokenId() */\n dup2\n swap1\n sstore\n pop\n /* \"ThrowawayNFT_flat.sol\":42581:42735 constructor(string memory name_, string memory symbol_) {... */\n pop\n pop\n /* \"ThrowawayNFT_flat.sol\":40688:61019 contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {... */\n jump(tag_11)\n /* \"ThrowawayNFT_flat.sol\":42827:42917 function _startTokenId() internal view virtual returns (uint256) {... */\ntag_10:\n /* \"ThrowawayNFT_flat.sol\":42883:42890 uint256 */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":42827:42917 function _startTokenId() internal view virtual returns (uint256) {... */\n swap1\n jump\t// out\n /* \"ThrowawayNFT_flat.sol\":40688:61019 contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {... */\ntag_7:\n dup3\n dup1\n sload\n tag_13\n swap1\n tag_14\n jump\t// in\ntag_13:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x1f\n add\n 0x20\n swap1\n div\n dup2\n add\n swap3\n dup3\n tag_16\n jumpi\n 0x00\n dup6\n sstore\n jump(tag_15)\ntag_16:\n dup3\n 0x1f\n lt\n tag_17\n jumpi\n dup1\n mload\n not(0xff)\n and\n dup4\n dup1\n add\n or\n dup6\n sstore\n jump(tag_15)\ntag_17:\n dup3\n dup1\n add\n 0x01\n add\n dup6\n sstore\n dup3\n iszero\n tag_15\n jumpi\n swap2\n dup3\n add\ntag_18:\n dup3\n dup2\n gt\n iszero\n tag_19\n jumpi\n dup3\n mload\n dup3\n sstore\n swap2\n 0x20\n add\n swap2\n swap1\n 0x01\n add\n swap1\n jump(tag_18)\ntag_19:\ntag_15:\n pop\n swap1\n pop\n tag_20\n swap2\n swap1\n tag_21\n jump\t// in\ntag_20:\n pop\n swap1\n jump\t// out\ntag_21:\ntag_22:\n dup1\n dup3\n gt\n iszero\n tag_23\n jumpi\n 0x00\n dup2\n 0x00\n swap1\n sstore\n pop\n 0x01\n add\n jump(tag_22)\ntag_23:\n pop\n swap1\n jump\t// out\n /* \"#utility.yul\":7:82 */\ntag_24:\n /* \"#utility.yul\":40:46 */\n 0x00\n /* \"#utility.yul\":73:75 */\n 0x40\n /* \"#utility.yul\":67:76 */\n mload\n /* \"#utility.yul\":57:76 */\n swap1\n pop\n /* \"#utility.yul\":7:82 */\n swap1\n jump\t// out\n /* \"#utility.yul\":88:205 */\ntag_25:\n /* \"#utility.yul\":197:198 */\n 0x00\n /* \"#utility.yul\":194:195 */\n dup1\n /* \"#utility.yul\":187:199 */\n revert\n /* \"#utility.yul\":211:328 */\ntag_26:\n /* \"#utility.yul\":320:321 */\n 0x00\n /* \"#utility.yul\":317:318 */\n dup1\n /* \"#utility.yul\":310:322 */\n revert\n /* \"#utility.yul\":334:451 */\ntag_27:\n /* \"#utility.yul\":443:444 */\n 0x00\n /* \"#utility.yul\":440:441 */\n dup1\n /* \"#utility.yul\":433:445 */\n revert\n /* \"#utility.yul\":457:574 */\ntag_28:\n /* \"#utility.yul\":566:567 */\n 0x00\n /* \"#utility.yul\":563:564 */\n dup1\n /* \"#utility.yul\":556:568 */\n revert\n /* \"#utility.yul\":580:682 */\ntag_29:\n /* \"#utility.yul\":621:627 */\n 0x00\n /* \"#utility.yul\":672:674 */\n 0x1f\n /* \"#utility.yul\":668:675 */\n not\n /* \"#utility.yul\":663:665 */\n 0x1f\n /* \"#utility.yul\":656:661 */\n dup4\n /* \"#utility.yul\":652:666 */\n add\n /* \"#utility.yul\":648:676 */\n and\n /* \"#utility.yul\":638:676 */\n swap1\n pop\n /* \"#utility.yul\":580:682 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":688:868 */\ntag_30:\n /* \"#utility.yul\":736:813 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":733:734 */\n 0x00\n /* \"#utility.yul\":726:814 */\n mstore\n /* \"#utility.yul\":833:837 */\n 0x41\n /* \"#utility.yul\":830:831 */\n 0x04\n /* \"#utility.yul\":823:838 */\n mstore\n /* \"#utility.yul\":857:861 */\n 0x24\n /* \"#utility.yul\":854:855 */\n 0x00\n /* \"#utility.yul\":847:862 */\n revert\n /* \"#utility.yul\":874:1155 */\ntag_31:\n /* \"#utility.yul\":957:984 */\n tag_47\n /* \"#utility.yul\":979:983 */\n dup3\n /* \"#utility.yul\":957:984 */\n tag_29\n jump\t// in\ntag_47:\n /* \"#utility.yul\":949:955 */\n dup2\n /* \"#utility.yul\":945:985 */\n add\n /* \"#utility.yul\":1087:1093 */\n dup2\n /* \"#utility.yul\":1075:1085 */\n dup2\n /* \"#utility.yul\":1072:1094 */\n lt\n /* \"#utility.yul\":1051:1069 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1039:1049 */\n dup3\n /* \"#utility.yul\":1036:1070 */\n gt\n /* \"#utility.yul\":1033:1095 */\n or\n /* \"#utility.yul\":1030:1118 */\n iszero\n tag_48\n jumpi\n /* \"#utility.yul\":1098:1116 */\n tag_49\n tag_30\n jump\t// in\ntag_49:\n /* \"#utility.yul\":1030:1118 */\ntag_48:\n /* \"#utility.yul\":1138:1148 */\n dup1\n /* \"#utility.yul\":1134:1136 */\n 0x40\n /* \"#utility.yul\":1127:1149 */\n mstore\n /* \"#utility.yul\":917:1155 */\n pop\n /* \"#utility.yul\":874:1155 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1161:1290 */\ntag_32:\n /* \"#utility.yul\":1195:1201 */\n 0x00\n /* \"#utility.yul\":1222:1242 */\n tag_51\n tag_24\n jump\t// in\ntag_51:\n /* \"#utility.yul\":1212:1242 */\n swap1\n pop\n /* \"#utility.yul\":1251:1284 */\n tag_52\n /* \"#utility.yul\":1279:1283 */\n dup3\n /* \"#utility.yul\":1271:1277 */\n dup3\n /* \"#utility.yul\":1251:1284 */\n tag_31\n jump\t// in\ntag_52:\n /* \"#utility.yul\":1161:1290 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1296:1604 */\ntag_33:\n /* \"#utility.yul\":1358:1362 */\n 0x00\n /* \"#utility.yul\":1448:1466 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1440:1446 */\n dup3\n /* \"#utility.yul\":1437:1467 */\n gt\n /* \"#utility.yul\":1434:1490 */\n iszero\n tag_54\n jumpi\n /* \"#utility.yul\":1470:1488 */\n tag_55\n tag_30\n jump\t// in\ntag_55:\n /* \"#utility.yul\":1434:1490 */\ntag_54:\n /* \"#utility.yul\":1508:1537 */\n tag_56\n /* \"#utility.yul\":1530:1536 */\n dup3\n /* \"#utility.yul\":1508:1537 */\n tag_29\n jump\t// in\ntag_56:\n /* \"#utility.yul\":1500:1537 */\n swap1\n pop\n /* \"#utility.yul\":1592:1596 */\n 0x20\n /* \"#utility.yul\":1586:1590 */\n dup2\n /* \"#utility.yul\":1582:1597 */\n add\n /* \"#utility.yul\":1574:1597 */\n swap1\n pop\n /* \"#utility.yul\":1296:1604 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1610:1917 */\ntag_34:\n /* \"#utility.yul\":1678:1679 */\n 0x00\n /* \"#utility.yul\":1688:1801 */\ntag_58:\n /* \"#utility.yul\":1702:1708 */\n dup4\n /* \"#utility.yul\":1699:1700 */\n dup2\n /* \"#utility.yul\":1696:1709 */\n lt\n /* \"#utility.yul\":1688:1801 */\n iszero\n tag_60\n jumpi\n /* \"#utility.yul\":1787:1788 */\n dup1\n /* \"#utility.yul\":1782:1785 */\n dup3\n /* \"#utility.yul\":1778:1789 */\n add\n /* \"#utility.yul\":1772:1790 */\n mload\n /* \"#utility.yul\":1768:1769 */\n dup2\n /* \"#utility.yul\":1763:1766 */\n dup5\n /* \"#utility.yul\":1759:1770 */\n add\n /* \"#utility.yul\":1752:1791 */\n mstore\n /* \"#utility.yul\":1724:1726 */\n 0x20\n /* \"#utility.yul\":1721:1722 */\n dup2\n /* \"#utility.yul\":1717:1727 */\n add\n /* \"#utility.yul\":1712:1727 */\n swap1\n pop\n /* \"#utility.yul\":1688:1801 */\n jump(tag_58)\ntag_60:\n /* \"#utility.yul\":1819:1825 */\n dup4\n /* \"#utility.yul\":1816:1817 */\n dup2\n /* \"#utility.yul\":1813:1826 */\n gt\n /* \"#utility.yul\":1810:1911 */\n iszero\n tag_61\n jumpi\n /* \"#utility.yul\":1899:1900 */\n 0x00\n /* \"#utility.yul\":1890:1896 */\n dup5\n /* \"#utility.yul\":1885:1888 */\n dup5\n /* \"#utility.yul\":1881:1897 */\n add\n /* \"#utility.yul\":1874:1901 */\n mstore\n /* \"#utility.yul\":1810:1911 */\ntag_61:\n /* \"#utility.yul\":1659:1917 */\n pop\n /* \"#utility.yul\":1610:1917 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1923:2344 */\ntag_35:\n /* \"#utility.yul\":2012:2017 */\n 0x00\n /* \"#utility.yul\":2037:2103 */\n tag_63\n /* \"#utility.yul\":2053:2102 */\n tag_64\n /* \"#utility.yul\":2095:2101 */\n dup5\n /* \"#utility.yul\":2053:2102 */\n tag_33\n jump\t// in\ntag_64:\n /* \"#utility.yul\":2037:2103 */\n tag_32\n jump\t// in\ntag_63:\n /* \"#utility.yul\":2028:2103 */\n swap1\n pop\n /* \"#utility.yul\":2126:2132 */\n dup3\n /* \"#utility.yul\":2119:2124 */\n dup2\n /* \"#utility.yul\":2112:2133 */\n mstore\n /* \"#utility.yul\":2164:2168 */\n 0x20\n /* \"#utility.yul\":2157:2162 */\n dup2\n /* \"#utility.yul\":2153:2169 */\n add\n /* \"#utility.yul\":2202:2205 */\n dup5\n /* \"#utility.yul\":2193:2199 */\n dup5\n /* \"#utility.yul\":2188:2191 */\n dup5\n /* \"#utility.yul\":2184:2200 */\n add\n /* \"#utility.yul\":2181:2206 */\n gt\n /* \"#utility.yul\":2178:2290 */\n iszero\n tag_65\n jumpi\n /* \"#utility.yul\":2209:2288 */\n tag_66\n tag_28\n jump\t// in\ntag_66:\n /* \"#utility.yul\":2178:2290 */\ntag_65:\n /* \"#utility.yul\":2299:2338 */\n tag_67\n /* \"#utility.yul\":2331:2337 */\n dup5\n /* \"#utility.yul\":2326:2329 */\n dup3\n /* \"#utility.yul\":2321:2324 */\n dup6\n /* \"#utility.yul\":2299:2338 */\n tag_34\n jump\t// in\ntag_67:\n /* \"#utility.yul\":2018:2344 */\n pop\n /* \"#utility.yul\":1923:2344 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2364:2719 */\ntag_36:\n /* \"#utility.yul\":2431:2436 */\n 0x00\n /* \"#utility.yul\":2480:2483 */\n dup3\n /* \"#utility.yul\":2473:2477 */\n 0x1f\n /* \"#utility.yul\":2465:2471 */\n dup4\n /* \"#utility.yul\":2461:2478 */\n add\n /* \"#utility.yul\":2457:2484 */\n slt\n /* \"#utility.yul\":2447:2569 */\n tag_69\n jumpi\n /* \"#utility.yul\":2488:2567 */\n tag_70\n tag_27\n jump\t// in\ntag_70:\n /* \"#utility.yul\":2447:2569 */\ntag_69:\n /* \"#utility.yul\":2598:2604 */\n dup2\n /* \"#utility.yul\":2592:2605 */\n mload\n /* \"#utility.yul\":2623:2713 */\n tag_71\n /* \"#utility.yul\":2709:2712 */\n dup5\n /* \"#utility.yul\":2701:2707 */\n dup3\n /* \"#utility.yul\":2694:2698 */\n 0x20\n /* \"#utility.yul\":2686:2692 */\n dup7\n /* \"#utility.yul\":2682:2699 */\n add\n /* \"#utility.yul\":2623:2713 */\n tag_35\n jump\t// in\ntag_71:\n /* \"#utility.yul\":2614:2713 */\n swap2\n pop\n /* \"#utility.yul\":2437:2719 */\n pop\n /* \"#utility.yul\":2364:2719 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2725:3578 */\ntag_3:\n /* \"#utility.yul\":2824:2830 */\n 0x00\n /* \"#utility.yul\":2832:2838 */\n dup1\n /* \"#utility.yul\":2881:2883 */\n 0x40\n /* \"#utility.yul\":2869:2878 */\n dup4\n /* \"#utility.yul\":2860:2867 */\n dup6\n /* \"#utility.yul\":2856:2879 */\n sub\n /* \"#utility.yul\":2852:2884 */\n slt\n /* \"#utility.yul\":2849:2968 */\n iszero\n tag_73\n jumpi\n /* \"#utility.yul\":2887:2966 */\n tag_74\n tag_25\n jump\t// in\ntag_74:\n /* \"#utility.yul\":2849:2968 */\ntag_73:\n /* \"#utility.yul\":3028:3029 */\n 0x00\n /* \"#utility.yul\":3017:3026 */\n dup4\n /* \"#utility.yul\":3013:3030 */\n add\n /* \"#utility.yul\":3007:3031 */\n mload\n /* \"#utility.yul\":3058:3076 */\n 0xffffffffffffffff\n /* \"#utility.yul\":3050:3056 */\n dup2\n /* \"#utility.yul\":3047:3077 */\n gt\n /* \"#utility.yul\":3044:3161 */\n iszero\n tag_75\n jumpi\n /* \"#utility.yul\":3080:3159 */\n tag_76\n tag_26\n jump\t// in\ntag_76:\n /* \"#utility.yul\":3044:3161 */\ntag_75:\n /* \"#utility.yul\":3185:3259 */\n tag_77\n /* \"#utility.yul\":3251:3258 */\n dup6\n /* \"#utility.yul\":3242:3248 */\n dup3\n /* \"#utility.yul\":3231:3240 */\n dup7\n /* \"#utility.yul\":3227:3249 */\n add\n /* \"#utility.yul\":3185:3259 */\n tag_36\n jump\t// in\ntag_77:\n /* \"#utility.yul\":3175:3259 */\n swap3\n pop\n /* \"#utility.yul\":2978:3269 */\n pop\n /* \"#utility.yul\":3329:3331 */\n 0x20\n /* \"#utility.yul\":3318:3327 */\n dup4\n /* \"#utility.yul\":3314:3332 */\n add\n /* \"#utility.yul\":3308:3333 */\n mload\n /* \"#utility.yul\":3360:3378 */\n 0xffffffffffffffff\n /* \"#utility.yul\":3352:3358 */\n dup2\n /* \"#utility.yul\":3349:3379 */\n gt\n /* \"#utility.yul\":3346:3463 */\n iszero\n tag_78\n jumpi\n /* \"#utility.yul\":3382:3461 */\n tag_79\n tag_26\n jump\t// in\ntag_79:\n /* \"#utility.yul\":3346:3463 */\ntag_78:\n /* \"#utility.yul\":3487:3561 */\n tag_80\n /* \"#utility.yul\":3553:3560 */\n dup6\n /* \"#utility.yul\":3544:3550 */\n dup3\n /* \"#utility.yul\":3533:3542 */\n dup7\n /* \"#utility.yul\":3529:3551 */\n add\n /* \"#utility.yul\":3487:3561 */\n tag_36\n jump\t// in\ntag_80:\n /* \"#utility.yul\":3477:3561 */\n swap2\n pop\n /* \"#utility.yul\":3279:3571 */\n pop\n /* \"#utility.yul\":2725:3578 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3584:3764 */\ntag_37:\n /* \"#utility.yul\":3632:3709 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":3629:3630 */\n 0x00\n /* \"#utility.yul\":3622:3710 */\n mstore\n /* \"#utility.yul\":3729:3733 */\n 0x22\n /* \"#utility.yul\":3726:3727 */\n 0x04\n /* \"#utility.yul\":3719:3734 */\n mstore\n /* \"#utility.yul\":3753:3757 */\n 0x24\n /* \"#utility.yul\":3750:3751 */\n 0x00\n /* \"#utility.yul\":3743:3758 */\n revert\n /* \"#utility.yul\":3770:4090 */\ntag_14:\n /* \"#utility.yul\":3814:3820 */\n 0x00\n /* \"#utility.yul\":3851:3852 */\n 0x02\n /* \"#utility.yul\":3845:3849 */\n dup3\n /* \"#utility.yul\":3841:3853 */\n div\n /* \"#utility.yul\":3831:3853 */\n swap1\n pop\n /* \"#utility.yul\":3898:3899 */\n 0x01\n /* \"#utility.yul\":3892:3896 */\n dup3\n /* \"#utility.yul\":3888:3900 */\n and\n /* \"#utility.yul\":3919:3937 */\n dup1\n /* \"#utility.yul\":3909:3990 */\n tag_83\n jumpi\n /* \"#utility.yul\":3975:3979 */\n 0x7f\n /* \"#utility.yul\":3967:3973 */\n dup3\n /* \"#utility.yul\":3963:3980 */\n and\n /* \"#utility.yul\":3953:3980 */\n swap2\n pop\n /* \"#utility.yul\":3909:3990 */\ntag_83:\n /* \"#utility.yul\":4037:4039 */\n 0x20\n /* \"#utility.yul\":4029:4035 */\n dup3\n /* \"#utility.yul\":4026:4040 */\n lt\n /* \"#utility.yul\":4006:4024 */\n dup2\n /* \"#utility.yul\":4003:4041 */\n sub\n /* \"#utility.yul\":4000:4084 */\n tag_84\n jumpi\n /* \"#utility.yul\":4056:4074 */\n tag_85\n tag_37\n jump\t// in\ntag_85:\n /* \"#utility.yul\":4000:4084 */\ntag_84:\n /* \"#utility.yul\":3821:4090 */\n pop\n /* \"#utility.yul\":3770:4090 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"ThrowawayNFT_flat.sol\":40688:61019 contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {... */\ntag_11:\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"ThrowawayNFT_flat.sol\":40688:61019 contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {... */\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 0x6352211e\n gt\n tag_17\n jumpi\n dup1\n 0xa22cb465\n gt\n tag_18\n jumpi\n dup1\n 0xa22cb465\n eq\n tag_13\n jumpi\n dup1\n 0xb88d4fde\n eq\n tag_14\n jumpi\n dup1\n 0xc87b56dd\n eq\n tag_15\n jumpi\n dup1\n 0xe985e9c5\n eq\n tag_16\n jumpi\n jump(tag_2)\n tag_18:\n dup1\n 0x6352211e\n eq\n tag_10\n jumpi\n dup1\n 0x70a08231\n eq\n tag_11\n jumpi\n dup1\n 0x95d89b41\n eq\n tag_12\n jumpi\n jump(tag_2)\n tag_17:\n dup1\n 0x095ea7b3\n gt\n tag_19\n jumpi\n dup1\n 0x095ea7b3\n eq\n tag_6\n jumpi\n dup1\n 0x18160ddd\n eq\n tag_7\n jumpi\n dup1\n 0x23b872dd\n eq\n tag_8\n jumpi\n dup1\n 0x42842e0e\n eq\n tag_9\n jumpi\n jump(tag_2)\n tag_19:\n dup1\n 0x01ffc9a7\n eq\n tag_3\n jumpi\n dup1\n 0x06fdde03\n eq\n tag_4\n jumpi\n dup1\n 0x081812fc\n eq\n tag_5\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"ThrowawayNFT_flat.sol\":43775:44075 function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {... */\n tag_3:\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_25\n jump\t// in\n tag_24:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"ThrowawayNFT_flat.sol\":46803:46901 function name() public view virtual override returns (string memory) {... */\n tag_4:\n tag_26\n tag_27\n jump\t// in\n tag_26:\n mload(0x40)\n tag_28\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 /* \"ThrowawayNFT_flat.sol\":48259:48459 function getApproved(uint256 tokenId) public view override returns (address) {... */\n tag_5:\n tag_30\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_31\n swap2\n swap1\n tag_32\n jump\t// in\n tag_31:\n tag_33\n jump\t// in\n tag_30:\n mload(0x40)\n tag_34\n swap2\n swap1\n tag_35\n jump\t// in\n tag_34:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"ThrowawayNFT_flat.sol\":47836:48198 function approve(address to, uint256 tokenId) public override {... */\n tag_6:\n tag_36\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_37\n swap2\n swap1\n tag_38\n jump\t// in\n tag_37:\n tag_39\n jump\t// in\n tag_36:\n stop\n /* \"ThrowawayNFT_flat.sol\":43046:43343 function totalSupply() public view returns (uint256) {... */\n tag_7:\n tag_40\n tag_41\n jump\t// in\n tag_40:\n mload(0x40)\n tag_42\n swap2\n swap1\n tag_43\n jump\t// in\n tag_42:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"ThrowawayNFT_flat.sol\":49098:49262 function transferFrom(... */\n tag_8:\n tag_44\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_45\n swap2\n swap1\n tag_46\n jump\t// in\n tag_45:\n tag_47\n jump\t// in\n tag_44:\n stop\n /* \"ThrowawayNFT_flat.sol\":49328:49507 function safeTransferFrom(... */\n tag_9:\n tag_48\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_49\n swap2\n swap1\n tag_46\n jump\t// in\n tag_49:\n tag_50\n jump\t// in\n tag_48:\n stop\n /* \"ThrowawayNFT_flat.sol\":46618:46741 function ownerOf(uint256 tokenId) public view override returns (address) {... */\n tag_10:\n tag_51\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_52\n swap2\n swap1\n tag_32\n jump\t// in\n tag_52:\n tag_53\n jump\t// in\n tag_51:\n mload(0x40)\n tag_54\n swap2\n swap1\n tag_35\n jump\t// in\n tag_54:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"ThrowawayNFT_flat.sol\":44134:44337 function balanceOf(address owner) public view override returns (uint256) {... */\n tag_11:\n tag_55\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_56\n swap2\n swap1\n tag_57\n jump\t// in\n tag_56:\n tag_58\n jump\t// in\n tag_55:\n mload(0x40)\n tag_59\n swap2\n swap1\n tag_43\n jump\t// in\n tag_59:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"ThrowawayNFT_flat.sol\":46965:47067 function symbol() public view virtual override returns (string memory) {... */\n tag_12:\n tag_60\n tag_61\n jump\t// in\n tag_60:\n mload(0x40)\n tag_62\n swap2\n swap1\n tag_29\n jump\t// in\n tag_62:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"ThrowawayNFT_flat.sol\":48526:48808 function setApprovalForAll(address operator, bool approved) public virtual override {... */\n tag_13:\n tag_63\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_64\n swap2\n swap1\n tag_65\n jump\t// in\n tag_64:\n tag_66\n jump\t// in\n tag_63:\n stop\n /* \"ThrowawayNFT_flat.sol\":49573:49932 function safeTransferFrom(... */\n tag_14:\n tag_67\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_68\n swap2\n swap1\n tag_69\n jump\t// in\n tag_68:\n tag_70\n jump\t// in\n tag_67:\n stop\n /* \"ThrowawayNFT_flat.sol\":47133:47446 function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {... */\n tag_15:\n tag_71\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_72\n swap2\n swap1\n tag_32\n jump\t// in\n tag_72:\n tag_73\n jump\t// in\n tag_71:\n mload(0x40)\n tag_74\n swap2\n swap1\n tag_29\n jump\t// in\n tag_74:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"ThrowawayNFT_flat.sol\":48874:49036 function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {... */\n tag_16:\n tag_75\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_76\n swap2\n swap1\n tag_77\n jump\t// in\n tag_76:\n tag_78\n jump\t// in\n tag_75:\n mload(0x40)\n tag_79\n swap2\n swap1\n tag_25\n jump\t// in\n tag_79:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"ThrowawayNFT_flat.sol\":43775:44075 function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {... */\n tag_23:\n /* \"ThrowawayNFT_flat.sol\":43877:43881 bool */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":43927:43952 type(IERC721).interfaceId */\n 0x80ac58cd00000000000000000000000000000000000000000000000000000000\n /* \"ThrowawayNFT_flat.sol\":43912:43952 interfaceId == type(IERC721).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n /* \"ThrowawayNFT_flat.sol\":43912:43923 interfaceId */\n dup3\n /* \"ThrowawayNFT_flat.sol\":43912:43952 interfaceId == type(IERC721).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n eq\n /* \"ThrowawayNFT_flat.sol\":43912:44016 interfaceId == type(IERC721).interfaceId ||... */\n dup1\n tag_81\n jumpi\n pop\n /* \"ThrowawayNFT_flat.sol\":43983:44016 type(IERC721Metadata).interfaceId */\n 0x5b5e139f00000000000000000000000000000000000000000000000000000000\n /* \"ThrowawayNFT_flat.sol\":43968:44016 interfaceId == type(IERC721Metadata).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n /* \"ThrowawayNFT_flat.sol\":43968:43979 interfaceId */\n dup3\n /* \"ThrowawayNFT_flat.sol\":43968:44016 interfaceId == type(IERC721Metadata).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n eq\n /* \"ThrowawayNFT_flat.sol\":43912:44016 interfaceId == type(IERC721).interfaceId ||... */\n tag_81:\n /* \"ThrowawayNFT_flat.sol\":43912:44068 interfaceId == type(IERC721).interfaceId ||... */\n dup1\n tag_82\n jumpi\n pop\n /* \"ThrowawayNFT_flat.sol\":44032:44068 super.supportsInterface(interfaceId) */\n tag_83\n /* \"ThrowawayNFT_flat.sol\":44056:44067 interfaceId */\n dup3\n /* \"ThrowawayNFT_flat.sol\":44032:44055 super.supportsInterface */\n tag_84\n /* \"ThrowawayNFT_flat.sol\":44032:44068 super.supportsInterface(interfaceId) */\n jump\t// in\n tag_83:\n /* \"ThrowawayNFT_flat.sol\":43912:44068 interfaceId == type(IERC721).interfaceId ||... */\n tag_82:\n /* \"ThrowawayNFT_flat.sol\":43893:44068 return... */\n swap1\n pop\n /* \"ThrowawayNFT_flat.sol\":43775:44075 function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"ThrowawayNFT_flat.sol\":46803:46901 function name() public view virtual override returns (string memory) {... */\n tag_27:\n /* \"ThrowawayNFT_flat.sol\":46857:46870 string memory */\n 0x60\n /* \"ThrowawayNFT_flat.sol\":46889:46894 _name */\n 0x02\n /* \"ThrowawayNFT_flat.sol\":46882:46894 return _name */\n dup1\n sload\n tag_86\n swap1\n tag_87\n jump\t// in\n tag_86:\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_88\n swap1\n tag_87\n jump\t// in\n tag_88:\n dup1\n iszero\n tag_89\n jumpi\n dup1\n 0x1f\n lt\n tag_90\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_89)\n tag_90:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_91:\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_91\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_89:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n /* \"ThrowawayNFT_flat.sol\":46803:46901 function name() public view virtual override returns (string memory) {... */\n swap1\n jump\t// out\n /* \"ThrowawayNFT_flat.sol\":48259:48459 function getApproved(uint256 tokenId) public view override returns (address) {... */\n tag_33:\n /* \"ThrowawayNFT_flat.sol\":48327:48334 address */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":48351:48367 _exists(tokenId) */\n tag_93\n /* \"ThrowawayNFT_flat.sol\":48359:48366 tokenId */\n dup3\n /* \"ThrowawayNFT_flat.sol\":48351:48358 _exists */\n tag_94\n /* \"ThrowawayNFT_flat.sol\":48351:48367 _exists(tokenId) */\n jump\t// in\n tag_93:\n /* \"ThrowawayNFT_flat.sol\":48346:48410 if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken() */\n tag_95\n jumpi\n /* \"ThrowawayNFT_flat.sol\":48376:48410 ApprovalQueryForNonexistentToken() */\n mload(0x40)\n 0xcf4700e400000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"ThrowawayNFT_flat.sol\":48346:48410 if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken() */\n tag_95:\n /* \"ThrowawayNFT_flat.sol\":48428:48443 _tokenApprovals */\n 0x06\n /* \"ThrowawayNFT_flat.sol\":48428:48452 _tokenApprovals[tokenId] */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":48444:48451 tokenId */\n dup4\n /* \"ThrowawayNFT_flat.sol\":48428:48452 _tokenApprovals[tokenId] */\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"ThrowawayNFT_flat.sol\":48421:48452 return _tokenApprovals[tokenId] */\n swap1\n pop\n /* \"ThrowawayNFT_flat.sol\":48259:48459 function getApproved(uint256 tokenId) public view override returns (address) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"ThrowawayNFT_flat.sol\":47836:48198 function approve(address to, uint256 tokenId) public override {... */\n tag_39:\n /* \"ThrowawayNFT_flat.sol\":47908:47921 address owner */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":47924:47948 ERC721A.ownerOf(tokenId) */\n tag_97\n /* \"ThrowawayNFT_flat.sol\":47940:47947 tokenId */\n dup3\n /* \"ThrowawayNFT_flat.sol\":47924:47939 ERC721A.ownerOf */\n tag_53\n /* \"ThrowawayNFT_flat.sol\":47924:47948 ERC721A.ownerOf(tokenId) */\n jump\t// in\n tag_97:\n /* \"ThrowawayNFT_flat.sol\":47908:47948 address owner = ERC721A.ownerOf(tokenId) */\n swap1\n pop\n /* \"ThrowawayNFT_flat.sol\":47968:47973 owner */\n dup1\n /* \"ThrowawayNFT_flat.sol\":47962:47973 to == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"ThrowawayNFT_flat.sol\":47962:47964 to */\n dup4\n /* \"ThrowawayNFT_flat.sol\":47962:47973 to == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"ThrowawayNFT_flat.sol\":47958:48006 if (to == owner) revert ApprovalToCurrentOwner() */\n tag_98\n jumpi\n /* \"ThrowawayNFT_flat.sol\":47982:48006 ApprovalToCurrentOwner() */\n mload(0x40)\n 0x943f7b8c00000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"ThrowawayNFT_flat.sol\":47958:48006 if (to == owner) revert ApprovalToCurrentOwner() */\n tag_98:\n /* \"ThrowawayNFT_flat.sol\":48037:48042 owner */\n dup1\n /* \"ThrowawayNFT_flat.sol\":48021:48042 _msgSender() != owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"ThrowawayNFT_flat.sol\":48021:48033 _msgSender() */\n tag_99\n /* \"ThrowawayNFT_flat.sol\":48021:48031 _msgSender */\n tag_100\n /* \"ThrowawayNFT_flat.sol\":48021:48033 _msgSender() */\n jump\t// in\n tag_99:\n /* \"ThrowawayNFT_flat.sol\":48021:48042 _msgSender() != owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"ThrowawayNFT_flat.sol\":48021:48084 _msgSender() != owner && !isApprovedForAll(owner, _msgSender()) */\n dup1\n iszero\n tag_101\n jumpi\n pop\n /* \"ThrowawayNFT_flat.sol\":48047:48084 isApprovedForAll(owner, _msgSender()) */\n tag_102\n /* \"ThrowawayNFT_flat.sol\":48064:48069 owner */\n dup2\n /* \"ThrowawayNFT_flat.sol\":48071:48083 _msgSender() */\n tag_103\n /* \"ThrowawayNFT_flat.sol\":48071:48081 _msgSender */\n tag_100\n /* \"ThrowawayNFT_flat.sol\":48071:48083 _msgSender() */\n jump\t// in\n tag_103:\n /* \"ThrowawayNFT_flat.sol\":48047:48063 isApprovedForAll */\n tag_78\n /* \"ThrowawayNFT_flat.sol\":48047:48084 isApprovedForAll(owner, _msgSender()) */\n jump\t// in\n tag_102:\n /* \"ThrowawayNFT_flat.sol\":48046:48084 !isApprovedForAll(owner, _msgSender()) */\n iszero\n /* \"ThrowawayNFT_flat.sol\":48021:48084 _msgSender() != owner && !isApprovedForAll(owner, _msgSender()) */\n tag_101:\n /* \"ThrowawayNFT_flat.sol\":48017:48153 if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {... */\n iszero\n tag_104\n jumpi\n /* \"ThrowawayNFT_flat.sol\":48107:48142 ApprovalCallerNotOwnerNorApproved() */\n mload(0x40)\n 0xcfb3b94200000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"ThrowawayNFT_flat.sol\":48017:48153 if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {... */\n tag_104:\n /* \"ThrowawayNFT_flat.sol\":48163:48191 _approve(to, tokenId, owner) */\n tag_105\n /* \"ThrowawayNFT_flat.sol\":48172:48174 to */\n dup4\n /* \"ThrowawayNFT_flat.sol\":48176:48183 tokenId */\n dup4\n /* \"ThrowawayNFT_flat.sol\":48185:48190 owner */\n dup4\n /* \"ThrowawayNFT_flat.sol\":48163:48171 _approve */\n tag_106\n /* \"ThrowawayNFT_flat.sol\":48163:48191 _approve(to, tokenId, owner) */\n jump\t// in\n tag_105:\n /* \"ThrowawayNFT_flat.sol\":47898:48198 {... */\n pop\n /* \"ThrowawayNFT_flat.sol\":47836:48198 function approve(address to, uint256 tokenId) public override {... */\n pop\n pop\n jump\t// out\n /* \"ThrowawayNFT_flat.sol\":43046:43343 function totalSupply() public view returns (uint256) {... */\n tag_41:\n /* \"ThrowawayNFT_flat.sol\":43090:43097 uint256 */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":43311:43326 _startTokenId() */\n tag_108\n /* \"ThrowawayNFT_flat.sol\":43311:43324 _startTokenId */\n tag_109\n /* \"ThrowawayNFT_flat.sol\":43311:43326 _startTokenId() */\n jump\t// in\n tag_108:\n /* \"ThrowawayNFT_flat.sol\":43296:43308 _burnCounter */\n sload(0x01)\n /* \"ThrowawayNFT_flat.sol\":43280:43293 _currentIndex */\n sload(0x00)\n /* \"ThrowawayNFT_flat.sol\":43280:43308 _currentIndex - _burnCounter */\n sub\n /* \"ThrowawayNFT_flat.sol\":43280:43326 _currentIndex - _burnCounter - _startTokenId() */\n sub\n /* \"ThrowawayNFT_flat.sol\":43273:43326 return _currentIndex - _burnCounter - _startTokenId() */\n swap1\n pop\n /* \"ThrowawayNFT_flat.sol\":43046:43343 function totalSupply() public view returns (uint256) {... */\n swap1\n jump\t// out\n /* \"ThrowawayNFT_flat.sol\":49098:49262 function transferFrom(... */\n tag_47:\n /* \"ThrowawayNFT_flat.sol\":49227:49255 _transfer(from, to, tokenId) */\n tag_111\n /* \"ThrowawayNFT_flat.sol\":49237:49241 from */\n dup4\n /* \"ThrowawayNFT_flat.sol\":49243:49245 to */\n dup4\n /* \"ThrowawayNFT_flat.sol\":49247:49254 tokenId */\n dup4\n /* \"ThrowawayNFT_flat.sol\":49227:49236 _transfer */\n tag_112\n /* \"ThrowawayNFT_flat.sol\":49227:49255 _transfer(from, to, tokenId) */\n jump\t// in\n tag_111:\n /* \"ThrowawayNFT_flat.sol\":49098:49262 function transferFrom(... */\n pop\n pop\n pop\n jump\t// out\n /* \"ThrowawayNFT_flat.sol\":49328:49507 function safeTransferFrom(... */\n tag_50:\n /* \"ThrowawayNFT_flat.sol\":49461:49500 safeTransferFrom(from, to, tokenId, '') */\n tag_114\n /* \"ThrowawayNFT_flat.sol\":49478:49482 from */\n dup4\n /* \"ThrowawayNFT_flat.sol\":49484:49486 to */\n dup4\n /* \"ThrowawayNFT_flat.sol\":49488:49495 tokenId */\n dup4\n /* \"ThrowawayNFT_flat.sol\":49461:49500 safeTransferFrom(from, to, tokenId, '') */\n mload(0x40)\n dup1\n 0x20\n add\n 0x40\n mstore\n dup1\n 0x00\n dup2\n mstore\n pop\n /* \"ThrowawayNFT_flat.sol\":49461:49477 safeTransferFrom */\n tag_70\n /* \"ThrowawayNFT_flat.sol\":49461:49500 safeTransferFrom(from, to, tokenId, '') */\n jump\t// in\n tag_114:\n /* \"ThrowawayNFT_flat.sol\":49328:49507 function safeTransferFrom(... */\n pop\n pop\n pop\n jump\t// out\n /* \"ThrowawayNFT_flat.sol\":46618:46741 function ownerOf(uint256 tokenId) public view override returns (address) {... */\n tag_53:\n /* \"ThrowawayNFT_flat.sol\":46682:46689 address */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":46708:46729 _ownershipOf(tokenId) */\n tag_116\n /* \"ThrowawayNFT_flat.sol\":46721:46728 tokenId */\n dup3\n /* \"ThrowawayNFT_flat.sol\":46708:46720 _ownershipOf */\n tag_117\n /* \"ThrowawayNFT_flat.sol\":46708:46729 _ownershipOf(tokenId) */\n jump\t// in\n tag_116:\n /* \"ThrowawayNFT_flat.sol\":46708:46734 _ownershipOf(tokenId).addr */\n 0x00\n add\n mload\n /* \"ThrowawayNFT_flat.sol\":46701:46734 return _ownershipOf(tokenId).addr */\n swap1\n pop\n /* \"ThrowawayNFT_flat.sol\":46618:46741 function ownerOf(uint256 tokenId) public view override returns (address) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"ThrowawayNFT_flat.sol\":44134:44337 function balanceOf(address owner) public view override returns (uint256) {... */\n tag_58:\n /* \"ThrowawayNFT_flat.sol\":44198:44205 uint256 */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":44238:44239 0 */\n dup1\n /* \"ThrowawayNFT_flat.sol\":44221:44240 owner == address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"ThrowawayNFT_flat.sol\":44221:44226 owner */\n dup3\n /* \"ThrowawayNFT_flat.sol\":44221:44240 owner == address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"ThrowawayNFT_flat.sol\":44217:44277 if (owner == address(0)) revert BalanceQueryForZeroAddress() */\n tag_119\n jumpi\n /* \"ThrowawayNFT_flat.sol\":44249:44277 BalanceQueryForZeroAddress() */\n mload(0x40)\n 0x8f4eb60400000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"ThrowawayNFT_flat.sol\":44217:44277 if (owner == address(0)) revert BalanceQueryForZeroAddress() */\n tag_119:\n /* \"ThrowawayNFT_flat.sol\":44302:44314 _addressData */\n 0x05\n /* \"ThrowawayNFT_flat.sol\":44302:44321 _addressData[owner] */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":44315:44320 owner */\n dup4\n /* \"ThrowawayNFT_flat.sol\":44302:44321 _addressData[owner] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"ThrowawayNFT_flat.sol\":44302:44329 _addressData[owner].balance */\n 0x00\n add\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffff\n and\n /* \"ThrowawayNFT_flat.sol\":44294:44330 uint256(_addressData[owner].balance) */\n 0xffffffffffffffff\n and\n /* \"ThrowawayNFT_flat.sol\":44287:44330 return uint256(_addressData[owner].balance) */\n swap1\n pop\n /* \"ThrowawayNFT_flat.sol\":44134:44337 function balanceOf(address owner) public view override returns (uint256) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"ThrowawayNFT_flat.sol\":46965:47067 function symbol() public view virtual override returns (string memory) {... */\n tag_61:\n /* \"ThrowawayNFT_flat.sol\":47021:47034 string memory */\n 0x60\n /* \"ThrowawayNFT_flat.sol\":47053:47060 _symbol */\n 0x03\n /* \"ThrowawayNFT_flat.sol\":47046:47060 return _symbol */\n dup1\n sload\n tag_121\n swap1\n tag_87\n jump\t// in\n tag_121:\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_122\n swap1\n tag_87\n jump\t// in\n tag_122:\n dup1\n iszero\n tag_123\n jumpi\n dup1\n 0x1f\n lt\n tag_124\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_123)\n tag_124:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_125:\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_125\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_123:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n /* \"ThrowawayNFT_flat.sol\":46965:47067 function symbol() public view virtual override returns (string memory) {... */\n swap1\n jump\t// out\n /* \"ThrowawayNFT_flat.sol\":48526:48808 function setApprovalForAll(address operator, bool approved) public virtual override {... */\n tag_66:\n /* \"ThrowawayNFT_flat.sol\":48636:48648 _msgSender() */\n tag_127\n /* \"ThrowawayNFT_flat.sol\":48636:48646 _msgSender */\n tag_100\n /* \"ThrowawayNFT_flat.sol\":48636:48648 _msgSender() */\n jump\t// in\n tag_127:\n /* \"ThrowawayNFT_flat.sol\":48624:48648 operator == _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"ThrowawayNFT_flat.sol\":48624:48632 operator */\n dup3\n /* \"ThrowawayNFT_flat.sol\":48624:48648 operator == _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"ThrowawayNFT_flat.sol\":48620:48674 if (operator == _msgSender()) revert ApproveToCaller() */\n tag_128\n jumpi\n /* \"ThrowawayNFT_flat.sol\":48657:48674 ApproveToCaller() */\n mload(0x40)\n 0xb06307db00000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"ThrowawayNFT_flat.sol\":48620:48674 if (operator == _msgSender()) revert ApproveToCaller() */\n tag_128:\n /* \"ThrowawayNFT_flat.sol\":48730:48738 approved */\n dup1\n /* \"ThrowawayNFT_flat.sol\":48685:48703 _operatorApprovals */\n 0x07\n /* \"ThrowawayNFT_flat.sol\":48685:48717 _operatorApprovals[_msgSender()] */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":48704:48716 _msgSender() */\n tag_129\n /* \"ThrowawayNFT_flat.sol\":48704:48714 _msgSender */\n tag_100\n /* \"ThrowawayNFT_flat.sol\":48704:48716 _msgSender() */\n jump\t// in\n tag_129:\n /* \"ThrowawayNFT_flat.sol\":48685:48717 _operatorApprovals[_msgSender()] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"ThrowawayNFT_flat.sol\":48685:48727 _operatorApprovals[_msgSender()][operator] */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":48718:48726 operator */\n dup5\n /* \"ThrowawayNFT_flat.sol\":48685:48727 _operatorApprovals[_msgSender()][operator] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n /* \"ThrowawayNFT_flat.sol\":48685:48738 _operatorApprovals[_msgSender()][operator] = approved */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xff\n mul\n not\n and\n swap1\n dup4\n iszero\n iszero\n mul\n or\n swap1\n sstore\n pop\n /* \"ThrowawayNFT_flat.sol\":48782:48790 operator */\n dup2\n /* \"ThrowawayNFT_flat.sol\":48753:48801 ApprovalForAll(_msgSender(), operator, approved) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"ThrowawayNFT_flat.sol\":48768:48780 _msgSender() */\n tag_130\n /* \"ThrowawayNFT_flat.sol\":48768:48778 _msgSender */\n tag_100\n /* \"ThrowawayNFT_flat.sol\":48768:48780 _msgSender() */\n jump\t// in\n tag_130:\n /* \"ThrowawayNFT_flat.sol\":48753:48801 ApprovalForAll(_msgSender(), operator, approved) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31\n /* \"ThrowawayNFT_flat.sol\":48792:48800 approved */\n dup4\n /* \"ThrowawayNFT_flat.sol\":48753:48801 ApprovalForAll(_msgSender(), operator, approved) */\n mload(0x40)\n tag_131\n swap2\n swap1\n tag_25\n jump\t// in\n tag_131:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"ThrowawayNFT_flat.sol\":48526:48808 function setApprovalForAll(address operator, bool approved) public virtual override {... */\n pop\n pop\n jump\t// out\n /* \"ThrowawayNFT_flat.sol\":49573:49932 function safeTransferFrom(... */\n tag_70:\n /* \"ThrowawayNFT_flat.sol\":49734:49762 _transfer(from, to, tokenId) */\n tag_133\n /* \"ThrowawayNFT_flat.sol\":49744:49748 from */\n dup5\n /* \"ThrowawayNFT_flat.sol\":49750:49752 to */\n dup5\n /* \"ThrowawayNFT_flat.sol\":49754:49761 tokenId */\n dup5\n /* \"ThrowawayNFT_flat.sol\":49734:49743 _transfer */\n tag_112\n /* \"ThrowawayNFT_flat.sol\":49734:49762 _transfer(from, to, tokenId) */\n jump\t// in\n tag_133:\n /* \"ThrowawayNFT_flat.sol\":49776:49791 to.isContract() */\n tag_134\n /* \"ThrowawayNFT_flat.sol\":49776:49778 to */\n dup4\n /* \"ThrowawayNFT_flat.sol\":49776:49789 to.isContract */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n tag_135\n /* \"ThrowawayNFT_flat.sol\":49776:49791 to.isContract() */\n jump\t// in\n tag_134:\n /* \"ThrowawayNFT_flat.sol\":49776:49852 to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data) */\n dup1\n iszero\n tag_136\n jumpi\n pop\n /* \"ThrowawayNFT_flat.sol\":49796:49852 _checkContractOnERC721Received(from, to, tokenId, _data) */\n tag_137\n /* \"ThrowawayNFT_flat.sol\":49827:49831 from */\n dup5\n /* \"ThrowawayNFT_flat.sol\":49833:49835 to */\n dup5\n /* \"ThrowawayNFT_flat.sol\":49837:49844 tokenId */\n dup5\n /* \"ThrowawayNFT_flat.sol\":49846:49851 _data */\n dup5\n /* \"ThrowawayNFT_flat.sol\":49796:49826 _checkContractOnERC721Received */\n tag_138\n /* \"ThrowawayNFT_flat.sol\":49796:49852 _checkContractOnERC721Received(from, to, tokenId, _data) */\n jump\t// in\n tag_137:\n /* \"ThrowawayNFT_flat.sol\":49795:49852 !_checkContractOnERC721Received(from, to, tokenId, _data) */\n iszero\n /* \"ThrowawayNFT_flat.sol\":49776:49852 to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data) */\n tag_136:\n /* \"ThrowawayNFT_flat.sol\":49772:49926 if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {... */\n iszero\n tag_139\n jumpi\n /* \"ThrowawayNFT_flat.sol\":49875:49915 TransferToNonERC721ReceiverImplementer() */\n mload(0x40)\n 0xd1a57ed600000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"ThrowawayNFT_flat.sol\":49772:49926 if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {... */\n tag_139:\n /* \"ThrowawayNFT_flat.sol\":49573:49932 function safeTransferFrom(... */\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"ThrowawayNFT_flat.sol\":47133:47446 function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {... */\n tag_73:\n /* \"ThrowawayNFT_flat.sol\":47206:47219 string memory */\n 0x60\n /* \"ThrowawayNFT_flat.sol\":47236:47252 _exists(tokenId) */\n tag_141\n /* \"ThrowawayNFT_flat.sol\":47244:47251 tokenId */\n dup3\n /* \"ThrowawayNFT_flat.sol\":47236:47243 _exists */\n tag_94\n /* \"ThrowawayNFT_flat.sol\":47236:47252 _exists(tokenId) */\n jump\t// in\n tag_141:\n /* \"ThrowawayNFT_flat.sol\":47231:47290 if (!_exists(tokenId)) revert URIQueryForNonexistentToken() */\n tag_142\n jumpi\n /* \"ThrowawayNFT_flat.sol\":47261:47290 URIQueryForNonexistentToken() */\n mload(0x40)\n 0xa14c4b5000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"ThrowawayNFT_flat.sol\":47231:47290 if (!_exists(tokenId)) revert URIQueryForNonexistentToken() */\n tag_142:\n /* \"ThrowawayNFT_flat.sol\":47301:47322 string memory baseURI */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":47325:47335 _baseURI() */\n tag_143\n /* \"ThrowawayNFT_flat.sol\":47325:47333 _baseURI */\n tag_144\n /* \"ThrowawayNFT_flat.sol\":47325:47335 _baseURI() */\n jump\t// in\n tag_143:\n /* \"ThrowawayNFT_flat.sol\":47301:47335 string memory baseURI = _baseURI() */\n swap1\n pop\n /* \"ThrowawayNFT_flat.sol\":47377:47378 0 */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":47358:47365 baseURI */\n dup2\n /* \"ThrowawayNFT_flat.sol\":47352:47373 bytes(baseURI).length */\n mload\n /* \"ThrowawayNFT_flat.sol\":47352:47378 bytes(baseURI).length != 0 */\n sub\n /* \"ThrowawayNFT_flat.sol\":47352:47439 bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '' */\n tag_145\n jumpi\n mload(0x40)\n dup1\n 0x20\n add\n 0x40\n mstore\n dup1\n 0x00\n dup2\n mstore\n pop\n jump(tag_146)\n tag_145:\n /* \"ThrowawayNFT_flat.sol\":47405:47412 baseURI */\n dup1\n /* \"ThrowawayNFT_flat.sol\":47414:47432 tokenId.toString() */\n tag_147\n /* \"ThrowawayNFT_flat.sol\":47414:47421 tokenId */\n dup5\n /* \"ThrowawayNFT_flat.sol\":47414:47430 tokenId.toString */\n tag_148\n /* \"ThrowawayNFT_flat.sol\":47414:47432 tokenId.toString() */\n jump\t// in\n tag_147:\n /* \"ThrowawayNFT_flat.sol\":47388:47433 abi.encodePacked(baseURI, tokenId.toString()) */\n add(0x20, mload(0x40))\n tag_149\n swap3\n swap2\n swap1\n tag_150\n jump\t// in\n tag_149:\n mload(0x40)\n 0x20\n dup2\n dup4\n sub\n sub\n dup2\n mstore\n swap1\n 0x40\n mstore\n /* \"ThrowawayNFT_flat.sol\":47352:47439 bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '' */\n tag_146:\n /* \"ThrowawayNFT_flat.sol\":47345:47439 return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '' */\n swap2\n pop\n pop\n /* \"ThrowawayNFT_flat.sol\":47133:47446 function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"ThrowawayNFT_flat.sol\":48874:49036 function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {... */\n tag_78:\n /* \"ThrowawayNFT_flat.sol\":48971:48975 bool */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":48994:49012 _operatorApprovals */\n 0x07\n /* \"ThrowawayNFT_flat.sol\":48994:49019 _operatorApprovals[owner] */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":49013:49018 owner */\n dup5\n /* \"ThrowawayNFT_flat.sol\":48994:49019 _operatorApprovals[owner] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"ThrowawayNFT_flat.sol\":48994:49029 _operatorApprovals[owner][operator] */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":49020:49028 operator */\n dup4\n /* \"ThrowawayNFT_flat.sol\":48994:49029 _operatorApprovals[owner][operator] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xff\n and\n /* \"ThrowawayNFT_flat.sol\":48987:49029 return _operatorApprovals[owner][operator] */\n swap1\n pop\n /* \"ThrowawayNFT_flat.sol\":48874:49036 function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"ThrowawayNFT_flat.sol\":11008:11163 function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {... */\n tag_84:\n /* \"ThrowawayNFT_flat.sol\":11093:11097 bool */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":11131:11156 type(IERC165).interfaceId */\n 0x01ffc9a700000000000000000000000000000000000000000000000000000000\n /* \"ThrowawayNFT_flat.sol\":11116:11156 interfaceId == type(IERC165).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n /* \"ThrowawayNFT_flat.sol\":11116:11127 interfaceId */\n dup3\n /* \"ThrowawayNFT_flat.sol\":11116:11156 interfaceId == type(IERC165).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n eq\n /* \"ThrowawayNFT_flat.sol\":11109:11156 return interfaceId == type(IERC165).interfaceId */\n swap1\n pop\n /* \"ThrowawayNFT_flat.sol\":11008:11163 function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"ThrowawayNFT_flat.sol\":50178:50350 function _exists(uint256 tokenId) internal view returns (bool) {... */\n tag_94:\n /* \"ThrowawayNFT_flat.sol\":50235:50239 bool */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":50277:50284 tokenId */\n dup2\n /* \"ThrowawayNFT_flat.sol\":50258:50273 _startTokenId() */\n tag_154\n /* \"ThrowawayNFT_flat.sol\":50258:50271 _startTokenId */\n tag_109\n /* \"ThrowawayNFT_flat.sol\":50258:50273 _startTokenId() */\n jump\t// in\n tag_154:\n /* \"ThrowawayNFT_flat.sol\":50258:50284 _startTokenId() <= tokenId */\n gt\n iszero\n /* \"ThrowawayNFT_flat.sol\":50258:50311 _startTokenId() <= tokenId && tokenId < _currentIndex */\n dup1\n iszero\n tag_155\n jumpi\n pop\n /* \"ThrowawayNFT_flat.sol\":50298:50311 _currentIndex */\n sload(0x00)\n /* \"ThrowawayNFT_flat.sol\":50288:50295 tokenId */\n dup3\n /* \"ThrowawayNFT_flat.sol\":50288:50311 tokenId < _currentIndex */\n lt\n /* \"ThrowawayNFT_flat.sol\":50258:50311 _startTokenId() <= tokenId && tokenId < _currentIndex */\n tag_155:\n /* \"ThrowawayNFT_flat.sol\":50258:50343 _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned */\n dup1\n iszero\n tag_156\n jumpi\n pop\n /* \"ThrowawayNFT_flat.sol\":50316:50327 _ownerships */\n 0x04\n /* \"ThrowawayNFT_flat.sol\":50316:50336 _ownerships[tokenId] */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":50328:50335 tokenId */\n dup4\n /* \"ThrowawayNFT_flat.sol\":50316:50336 _ownerships[tokenId] */\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"ThrowawayNFT_flat.sol\":50316:50343 _ownerships[tokenId].burned */\n 0x00\n add\n 0x1c\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xff\n and\n /* \"ThrowawayNFT_flat.sol\":50315:50343 !_ownerships[tokenId].burned */\n iszero\n /* \"ThrowawayNFT_flat.sol\":50258:50343 _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned */\n tag_156:\n /* \"ThrowawayNFT_flat.sol\":50251:50343 return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned */\n swap1\n pop\n /* \"ThrowawayNFT_flat.sol\":50178:50350 function _exists(uint256 tokenId) internal view returns (bool) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"ThrowawayNFT_flat.sol\":39437:39533 function _msgSender() internal view virtual returns (address) {... */\n tag_100:\n /* \"ThrowawayNFT_flat.sol\":39490:39497 address */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":39516:39526 msg.sender */\n caller\n /* \"ThrowawayNFT_flat.sol\":39509:39526 return msg.sender */\n swap1\n pop\n /* \"ThrowawayNFT_flat.sol\":39437:39533 function _msgSender() internal view virtual returns (address) {... */\n swap1\n jump\t// out\n /* \"ThrowawayNFT_flat.sol\":58118:58307 function _approve(... */\n tag_106:\n /* \"ThrowawayNFT_flat.sol\":58255:58257 to */\n dup3\n /* \"ThrowawayNFT_flat.sol\":58228:58243 _tokenApprovals */\n 0x06\n /* \"ThrowawayNFT_flat.sol\":58228:58252 _tokenApprovals[tokenId] */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":58244:58251 tokenId */\n dup5\n /* \"ThrowawayNFT_flat.sol\":58228:58252 _tokenApprovals[tokenId] */\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n /* \"ThrowawayNFT_flat.sol\":58228:58257 _tokenApprovals[tokenId] = to */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffffffffffffffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"ThrowawayNFT_flat.sol\":58292:58299 tokenId */\n dup2\n /* \"ThrowawayNFT_flat.sol\":58288:58290 to */\n dup4\n /* \"ThrowawayNFT_flat.sol\":58272:58300 Approval(owner, to, tokenId) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"ThrowawayNFT_flat.sol\":58281:58286 owner */\n dup3\n /* \"ThrowawayNFT_flat.sol\":58272:58300 Approval(owner, to, tokenId) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925\n mload(0x40)\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log4\n /* \"ThrowawayNFT_flat.sol\":58118:58307 function _approve(... */\n pop\n pop\n pop\n jump\t// out\n /* \"ThrowawayNFT_flat.sol\":42827:42917 function _startTokenId() internal view virtual returns (uint256) {... */\n tag_109:\n /* \"ThrowawayNFT_flat.sol\":42883:42890 uint256 */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":42827:42917 function _startTokenId() internal view virtual returns (uint256) {... */\n swap1\n jump\t// out\n /* \"ThrowawayNFT_flat.sol\":53188:55270 function _transfer(... */\n tag_112:\n /* \"ThrowawayNFT_flat.sol\":53298:53333 TokenOwnership memory prevOwnership */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":53336:53357 _ownershipOf(tokenId) */\n tag_161\n /* \"ThrowawayNFT_flat.sol\":53349:53356 tokenId */\n dup3\n /* \"ThrowawayNFT_flat.sol\":53336:53348 _ownershipOf */\n tag_117\n /* \"ThrowawayNFT_flat.sol\":53336:53357 _ownershipOf(tokenId) */\n jump\t// in\n tag_161:\n /* \"ThrowawayNFT_flat.sol\":53298:53357 TokenOwnership memory prevOwnership = _ownershipOf(tokenId) */\n swap1\n pop\n /* \"ThrowawayNFT_flat.sol\":53394:53398 from */\n dup4\n /* \"ThrowawayNFT_flat.sol\":53372:53398 prevOwnership.addr != from */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"ThrowawayNFT_flat.sol\":53372:53385 prevOwnership */\n dup2\n /* \"ThrowawayNFT_flat.sol\":53372:53390 prevOwnership.addr */\n 0x00\n add\n mload\n /* \"ThrowawayNFT_flat.sol\":53372:53398 prevOwnership.addr != from */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"ThrowawayNFT_flat.sol\":53368:53435 if (prevOwnership.addr != from) revert TransferFromIncorrectOwner() */\n tag_162\n jumpi\n /* \"ThrowawayNFT_flat.sol\":53407:53435 TransferFromIncorrectOwner() */\n mload(0x40)\n 0xa114810000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"ThrowawayNFT_flat.sol\":53368:53435 if (prevOwnership.addr != from) revert TransferFromIncorrectOwner() */\n tag_162:\n /* \"ThrowawayNFT_flat.sol\":53446:53468 bool isApprovedOrOwner */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":53488:53492 from */\n dup5\n /* \"ThrowawayNFT_flat.sol\":53472:53492 _msgSender() == from */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"ThrowawayNFT_flat.sol\":53472:53484 _msgSender() */\n tag_163\n /* \"ThrowawayNFT_flat.sol\":53472:53482 _msgSender */\n tag_100\n /* \"ThrowawayNFT_flat.sol\":53472:53484 _msgSender() */\n jump\t// in\n tag_163:\n /* \"ThrowawayNFT_flat.sol\":53472:53492 _msgSender() == from */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"ThrowawayNFT_flat.sol\":53472:53544 _msgSender() == from ||... */\n dup1\n tag_164\n jumpi\n pop\n /* \"ThrowawayNFT_flat.sol\":53508:53544 isApprovedForAll(from, _msgSender()) */\n tag_165\n /* \"ThrowawayNFT_flat.sol\":53525:53529 from */\n dup6\n /* \"ThrowawayNFT_flat.sol\":53531:53543 _msgSender() */\n tag_166\n /* \"ThrowawayNFT_flat.sol\":53531:53541 _msgSender */\n tag_100\n /* \"ThrowawayNFT_flat.sol\":53531:53543 _msgSender() */\n jump\t// in\n tag_166:\n /* \"ThrowawayNFT_flat.sol\":53508:53524 isApprovedForAll */\n tag_78\n /* \"ThrowawayNFT_flat.sol\":53508:53544 isApprovedForAll(from, _msgSender()) */\n jump\t// in\n tag_165:\n /* \"ThrowawayNFT_flat.sol\":53472:53544 _msgSender() == from ||... */\n tag_164:\n /* \"ThrowawayNFT_flat.sol\":53472:53596 _msgSender() == from ||... */\n dup1\n tag_167\n jumpi\n pop\n /* \"ThrowawayNFT_flat.sol\":53584:53596 _msgSender() */\n tag_168\n /* \"ThrowawayNFT_flat.sol\":53584:53594 _msgSender */\n tag_100\n /* \"ThrowawayNFT_flat.sol\":53584:53596 _msgSender() */\n jump\t// in\n tag_168:\n /* \"ThrowawayNFT_flat.sol\":53560:53596 getApproved(tokenId) == _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"ThrowawayNFT_flat.sol\":53560:53580 getApproved(tokenId) */\n tag_169\n /* \"ThrowawayNFT_flat.sol\":53572:53579 tokenId */\n dup5\n /* \"ThrowawayNFT_flat.sol\":53560:53571 getApproved */\n tag_33\n /* \"ThrowawayNFT_flat.sol\":53560:53580 getApproved(tokenId) */\n jump\t// in\n tag_169:\n /* \"ThrowawayNFT_flat.sol\":53560:53596 getApproved(tokenId) == _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"ThrowawayNFT_flat.sol\":53472:53596 _msgSender() == from ||... */\n tag_167:\n /* \"ThrowawayNFT_flat.sol\":53446:53597 bool isApprovedOrOwner = (_msgSender() == from ||... */\n swap1\n pop\n /* \"ThrowawayNFT_flat.sol\":53613:53630 isApprovedOrOwner */\n dup1\n /* \"ThrowawayNFT_flat.sol\":53608:53674 if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved() */\n tag_170\n jumpi\n /* \"ThrowawayNFT_flat.sol\":53639:53674 TransferCallerNotOwnerNorApproved() */\n mload(0x40)\n 0x59c896be00000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"ThrowawayNFT_flat.sol\":53608:53674 if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved() */\n tag_170:\n /* \"ThrowawayNFT_flat.sol\":53702:53703 0 */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":53688:53704 to == address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"ThrowawayNFT_flat.sol\":53688:53690 to */\n dup5\n /* \"ThrowawayNFT_flat.sol\":53688:53704 to == address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"ThrowawayNFT_flat.sol\":53684:53736 if (to == address(0)) revert TransferToZeroAddress() */\n tag_171\n jumpi\n /* \"ThrowawayNFT_flat.sol\":53713:53736 TransferToZeroAddress() */\n mload(0x40)\n 0xea553b3400000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"ThrowawayNFT_flat.sol\":53684:53736 if (to == address(0)) revert TransferToZeroAddress() */\n tag_171:\n /* \"ThrowawayNFT_flat.sol\":53747:53790 _beforeTokenTransfers(from, to, tokenId, 1) */\n tag_172\n /* \"ThrowawayNFT_flat.sol\":53769:53773 from */\n dup6\n /* \"ThrowawayNFT_flat.sol\":53775:53777 to */\n dup6\n /* \"ThrowawayNFT_flat.sol\":53779:53786 tokenId */\n dup6\n /* \"ThrowawayNFT_flat.sol\":53788:53789 1 */\n 0x01\n /* \"ThrowawayNFT_flat.sol\":53747:53768 _beforeTokenTransfers */\n tag_173\n /* \"ThrowawayNFT_flat.sol\":53747:53790 _beforeTokenTransfers(from, to, tokenId, 1) */\n jump\t// in\n tag_172:\n /* \"ThrowawayNFT_flat.sol\":53852:53887 _approve(address(0), tokenId, from) */\n tag_174\n /* \"ThrowawayNFT_flat.sol\":53869:53870 0 */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":53873:53880 tokenId */\n dup5\n /* \"ThrowawayNFT_flat.sol\":53882:53886 from */\n dup8\n /* \"ThrowawayNFT_flat.sol\":53852:53860 _approve */\n tag_106\n /* \"ThrowawayNFT_flat.sol\":53852:53887 _approve(address(0), tokenId, from) */\n jump\t// in\n tag_174:\n /* \"ThrowawayNFT_flat.sol\":54207:54208 1 */\n 0x01\n /* \"ThrowawayNFT_flat.sol\":54177:54189 _addressData */\n 0x05\n /* \"ThrowawayNFT_flat.sol\":54177:54195 _addressData[from] */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":54190:54194 from */\n dup8\n /* \"ThrowawayNFT_flat.sol\":54177:54195 _addressData[from] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"ThrowawayNFT_flat.sol\":54177:54203 _addressData[from].balance */\n 0x00\n add\n 0x00\n /* \"ThrowawayNFT_flat.sol\":54177:54208 _addressData[from].balance -= 1 */\n dup3\n dup3\n dup3\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffff\n and\n sub\n swap3\n pop\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"ThrowawayNFT_flat.sol\":54250:54251 1 */\n 0x01\n /* \"ThrowawayNFT_flat.sol\":54222:54234 _addressData */\n 0x05\n /* \"ThrowawayNFT_flat.sol\":54222:54238 _addressData[to] */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":54235:54237 to */\n dup7\n /* \"ThrowawayNFT_flat.sol\":54222:54238 _addressData[to] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"ThrowawayNFT_flat.sol\":54222:54246 _addressData[to].balance */\n 0x00\n add\n 0x00\n /* \"ThrowawayNFT_flat.sol\":54222:54251 _addressData[to].balance += 1 */\n dup3\n dup3\n dup3\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffff\n and\n add\n swap3\n pop\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"ThrowawayNFT_flat.sol\":54266:54297 TokenOwnership storage currSlot */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":54300:54311 _ownerships */\n 0x04\n /* \"ThrowawayNFT_flat.sol\":54300:54320 _ownerships[tokenId] */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":54312:54319 tokenId */\n dup6\n /* \"ThrowawayNFT_flat.sol\":54300:54320 _ownerships[tokenId] */\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"ThrowawayNFT_flat.sol\":54266:54320 TokenOwnership storage currSlot = _ownerships[tokenId] */\n swap1\n pop\n /* \"ThrowawayNFT_flat.sol\":54350:54352 to */\n dup5\n /* \"ThrowawayNFT_flat.sol\":54334:54342 currSlot */\n dup2\n /* \"ThrowawayNFT_flat.sol\":54334:54347 currSlot.addr */\n 0x00\n add\n 0x00\n /* \"ThrowawayNFT_flat.sol\":54334:54352 currSlot.addr = to */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffffffffffffffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"ThrowawayNFT_flat.sol\":54399:54414 block.timestamp */\n timestamp\n /* \"ThrowawayNFT_flat.sol\":54366:54374 currSlot */\n dup2\n /* \"ThrowawayNFT_flat.sol\":54366:54389 currSlot.startTimestamp */\n 0x00\n add\n 0x14\n /* \"ThrowawayNFT_flat.sol\":54366:54415 currSlot.startTimestamp = uint64(block.timestamp) */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"ThrowawayNFT_flat.sol\":54663:54682 uint256 nextTokenId */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":54695:54696 1 */\n 0x01\n /* \"ThrowawayNFT_flat.sol\":54685:54692 tokenId */\n dup6\n /* \"ThrowawayNFT_flat.sol\":54685:54696 tokenId + 1 */\n add\n /* \"ThrowawayNFT_flat.sol\":54663:54696 uint256 nextTokenId = tokenId + 1 */\n swap1\n pop\n /* \"ThrowawayNFT_flat.sol\":54710:54741 TokenOwnership storage nextSlot */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":54744:54755 _ownerships */\n 0x04\n /* \"ThrowawayNFT_flat.sol\":54744:54768 _ownerships[nextTokenId] */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":54756:54767 nextTokenId */\n dup4\n /* \"ThrowawayNFT_flat.sol\":54744:54768 _ownerships[nextTokenId] */\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"ThrowawayNFT_flat.sol\":54710:54768 TokenOwnership storage nextSlot = _ownerships[nextTokenId] */\n swap1\n pop\n /* \"ThrowawayNFT_flat.sol\":54811:54812 0 */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":54786:54813 nextSlot.addr == address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"ThrowawayNFT_flat.sol\":54786:54794 nextSlot */\n dup2\n /* \"ThrowawayNFT_flat.sol\":54786:54799 nextSlot.addr */\n 0x00\n add\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"ThrowawayNFT_flat.sol\":54786:54813 nextSlot.addr == address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"ThrowawayNFT_flat.sol\":54782:55159 if (nextSlot.addr == address(0)) {... */\n tag_175\n jumpi\n /* \"ThrowawayNFT_flat.sol\":54993:55006 _currentIndex */\n sload(0x00)\n /* \"ThrowawayNFT_flat.sol\":54978:54989 nextTokenId */\n dup3\n /* \"ThrowawayNFT_flat.sol\":54978:55006 nextTokenId != _currentIndex */\n eq\n /* \"ThrowawayNFT_flat.sol\":54974:55145 if (nextTokenId != _currentIndex) {... */\n tag_176\n jumpi\n /* \"ThrowawayNFT_flat.sol\":55046:55050 from */\n dup8\n /* \"ThrowawayNFT_flat.sol\":55030:55038 nextSlot */\n dup2\n /* \"ThrowawayNFT_flat.sol\":55030:55043 nextSlot.addr */\n 0x00\n add\n 0x00\n /* \"ThrowawayNFT_flat.sol\":55030:55050 nextSlot.addr = from */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffffffffffffffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"ThrowawayNFT_flat.sol\":55098:55111 prevOwnership */\n dup5\n /* \"ThrowawayNFT_flat.sol\":55098:55126 prevOwnership.startTimestamp */\n 0x20\n add\n mload\n /* \"ThrowawayNFT_flat.sol\":55072:55080 nextSlot */\n dup2\n /* \"ThrowawayNFT_flat.sol\":55072:55095 nextSlot.startTimestamp */\n 0x00\n add\n 0x14\n /* \"ThrowawayNFT_flat.sol\":55072:55126 nextSlot.startTimestamp = prevOwnership.startTimestamp */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"ThrowawayNFT_flat.sol\":54974:55145 if (nextTokenId != _currentIndex) {... */\n tag_176:\n /* \"ThrowawayNFT_flat.sol\":54782:55159 if (nextSlot.addr == address(0)) {... */\n tag_175:\n /* \"ThrowawayNFT_flat.sol\":54153:55169 unchecked {... */\n pop\n pop\n pop\n /* \"ThrowawayNFT_flat.sol\":55203:55210 tokenId */\n dup3\n /* \"ThrowawayNFT_flat.sol\":55199:55201 to */\n dup5\n /* \"ThrowawayNFT_flat.sol\":55184:55211 Transfer(from, to, tokenId) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"ThrowawayNFT_flat.sol\":55193:55197 from */\n dup7\n /* \"ThrowawayNFT_flat.sol\":55184:55211 Transfer(from, to, tokenId) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef\n mload(0x40)\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log4\n /* \"ThrowawayNFT_flat.sol\":55221:55263 _afterTokenTransfers(from, to, tokenId, 1) */\n tag_177\n /* \"ThrowawayNFT_flat.sol\":55242:55246 from */\n dup6\n /* \"ThrowawayNFT_flat.sol\":55248:55250 to */\n dup6\n /* \"ThrowawayNFT_flat.sol\":55252:55259 tokenId */\n dup6\n /* \"ThrowawayNFT_flat.sol\":55261:55262 1 */\n 0x01\n /* \"ThrowawayNFT_flat.sol\":55221:55241 _afterTokenTransfers */\n tag_178\n /* \"ThrowawayNFT_flat.sol\":55221:55263 _afterTokenTransfers(from, to, tokenId, 1) */\n jump\t// in\n tag_177:\n /* \"ThrowawayNFT_flat.sol\":53288:55270 {... */\n pop\n pop\n /* \"ThrowawayNFT_flat.sol\":53188:55270 function _transfer(... */\n pop\n pop\n pop\n jump\t// out\n /* \"ThrowawayNFT_flat.sol\":45477:46561 function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {... */\n tag_117:\n /* \"ThrowawayNFT_flat.sol\":45539:45560 TokenOwnership memory */\n tag_179\n tag_180\n jump\t// in\n tag_179:\n /* \"ThrowawayNFT_flat.sol\":45572:45584 uint256 curr */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":45587:45594 tokenId */\n dup3\n /* \"ThrowawayNFT_flat.sol\":45572:45594 uint256 curr = tokenId */\n swap1\n pop\n /* \"ThrowawayNFT_flat.sol\":45652:45656 curr */\n dup1\n /* \"ThrowawayNFT_flat.sol\":45633:45648 _startTokenId() */\n tag_182\n /* \"ThrowawayNFT_flat.sol\":45633:45646 _startTokenId */\n tag_109\n /* \"ThrowawayNFT_flat.sol\":45633:45648 _startTokenId() */\n jump\t// in\n tag_182:\n /* \"ThrowawayNFT_flat.sol\":45633:45656 _startTokenId() <= curr */\n gt\n iszero\n /* \"ThrowawayNFT_flat.sol\":45633:45680 _startTokenId() <= curr && curr < _currentIndex */\n dup1\n iszero\n tag_183\n jumpi\n pop\n /* \"ThrowawayNFT_flat.sol\":45667:45680 _currentIndex */\n sload(0x00)\n /* \"ThrowawayNFT_flat.sol\":45660:45664 curr */\n dup2\n /* \"ThrowawayNFT_flat.sol\":45660:45680 curr < _currentIndex */\n lt\n /* \"ThrowawayNFT_flat.sol\":45633:45680 _startTokenId() <= curr && curr < _currentIndex */\n tag_183:\n /* \"ThrowawayNFT_flat.sol\":45629:46497 if (_startTokenId() <= curr && curr < _currentIndex) {... */\n iszero\n tag_184\n jumpi\n /* \"ThrowawayNFT_flat.sol\":45700:45731 TokenOwnership memory ownership */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":45734:45745 _ownerships */\n 0x04\n /* \"ThrowawayNFT_flat.sol\":45734:45751 _ownerships[curr] */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":45746:45750 curr */\n dup4\n /* \"ThrowawayNFT_flat.sol\":45734:45751 _ownerships[curr] */\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"ThrowawayNFT_flat.sol\":45700:45751 TokenOwnership memory ownership = _ownerships[curr] */\n mload(0x40)\n dup1\n 0x60\n add\n 0x40\n mstore\n swap1\n dup2\n 0x00\n dup3\n add\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n 0x00\n dup3\n add\n 0x14\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffff\n and\n 0xffffffffffffffff\n and\n 0xffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n 0x00\n dup3\n add\n 0x1c\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xff\n and\n iszero\n iszero\n iszero\n iszero\n dup2\n mstore\n pop\n pop\n swap1\n pop\n /* \"ThrowawayNFT_flat.sol\":45774:45783 ownership */\n dup1\n /* \"ThrowawayNFT_flat.sol\":45774:45790 ownership.burned */\n 0x40\n add\n mload\n /* \"ThrowawayNFT_flat.sol\":45769:46483 if (!ownership.burned) {... */\n tag_185\n jumpi\n /* \"ThrowawayNFT_flat.sol\":45844:45845 0 */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":45818:45846 ownership.addr != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"ThrowawayNFT_flat.sol\":45818:45827 ownership */\n dup2\n /* \"ThrowawayNFT_flat.sol\":45818:45832 ownership.addr */\n 0x00\n add\n mload\n /* \"ThrowawayNFT_flat.sol\":45818:45846 ownership.addr != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"ThrowawayNFT_flat.sol\":45814:45913 if (ownership.addr != address(0)) {... */\n tag_186\n jumpi\n /* \"ThrowawayNFT_flat.sol\":45881:45890 ownership */\n dup1\n /* \"ThrowawayNFT_flat.sol\":45874:45890 return ownership */\n swap3\n pop\n pop\n pop\n jump(tag_181)\n /* \"ThrowawayNFT_flat.sol\":45814:45913 if (ownership.addr != address(0)) {... */\n tag_186:\n /* \"ThrowawayNFT_flat.sol\":46210:46465 while (true) {... */\n tag_187:\n /* \"ThrowawayNFT_flat.sol\":46217:46221 true */\n 0x01\n /* \"ThrowawayNFT_flat.sol\":46210:46465 while (true) {... */\n iszero\n tag_188\n jumpi\n /* \"ThrowawayNFT_flat.sol\":46249:46255 curr-- */\n dup2\n dup1\n 0x01\n swap1\n sub\n swap3\n pop\n pop\n /* \"ThrowawayNFT_flat.sol\":46293:46304 _ownerships */\n 0x04\n /* \"ThrowawayNFT_flat.sol\":46293:46310 _ownerships[curr] */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":46305:46309 curr */\n dup4\n /* \"ThrowawayNFT_flat.sol\":46293:46310 _ownerships[curr] */\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"ThrowawayNFT_flat.sol\":46281:46310 ownership = _ownerships[curr] */\n mload(0x40)\n dup1\n 0x60\n add\n 0x40\n mstore\n swap1\n dup2\n 0x00\n dup3\n add\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n 0x00\n dup3\n add\n 0x14\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffff\n and\n 0xffffffffffffffff\n and\n 0xffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n 0x00\n dup3\n add\n 0x1c\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xff\n and\n iszero\n iszero\n iszero\n iszero\n dup2\n mstore\n pop\n pop\n swap1\n pop\n /* \"ThrowawayNFT_flat.sol\":46366:46367 0 */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":46340:46368 ownership.addr != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"ThrowawayNFT_flat.sol\":46340:46349 ownership */\n dup2\n /* \"ThrowawayNFT_flat.sol\":46340:46354 ownership.addr */\n 0x00\n add\n mload\n /* \"ThrowawayNFT_flat.sol\":46340:46368 ownership.addr != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"ThrowawayNFT_flat.sol\":46336:46443 if (ownership.addr != address(0)) {... */\n tag_189\n jumpi\n /* \"ThrowawayNFT_flat.sol\":46407:46416 ownership */\n dup1\n /* \"ThrowawayNFT_flat.sol\":46400:46416 return ownership */\n swap3\n pop\n pop\n pop\n jump(tag_181)\n /* \"ThrowawayNFT_flat.sol\":46336:46443 if (ownership.addr != address(0)) {... */\n tag_189:\n /* \"ThrowawayNFT_flat.sol\":46210:46465 while (true) {... */\n jump(tag_187)\n tag_188:\n /* \"ThrowawayNFT_flat.sol\":45769:46483 if (!ownership.burned) {... */\n tag_185:\n /* \"ThrowawayNFT_flat.sol\":45682:46497 {... */\n pop\n /* \"ThrowawayNFT_flat.sol\":45629:46497 if (_startTokenId() <= curr && curr < _currentIndex) {... */\n tag_184:\n /* \"ThrowawayNFT_flat.sol\":46523:46554 OwnerQueryForNonexistentToken() */\n mload(0x40)\n 0xdf2d9b4200000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"ThrowawayNFT_flat.sol\":45477:46561 function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {... */\n tag_181:\n swap2\n swap1\n pop\n jump\t// out\n /* \"ThrowawayNFT_flat.sol\":1197:1517 function isContract(address account) internal view returns (bool) {... */\n tag_135:\n /* \"ThrowawayNFT_flat.sol\":1257:1261 bool */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":1509:1510 0 */\n dup1\n /* \"ThrowawayNFT_flat.sol\":1487:1494 account */\n dup3\n /* \"ThrowawayNFT_flat.sol\":1487:1506 account.code.length */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n extcodesize\n /* \"ThrowawayNFT_flat.sol\":1487:1510 account.code.length > 0 */\n gt\n /* \"ThrowawayNFT_flat.sol\":1480:1510 return account.code.length > 0 */\n swap1\n pop\n /* \"ThrowawayNFT_flat.sol\":1197:1517 function isContract(address account) internal view returns (bool) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"ThrowawayNFT_flat.sol\":58788:59438 function _checkContractOnERC721Received(... */\n tag_138:\n /* \"ThrowawayNFT_flat.sol\":58946:58950 bool */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":58982:58984 to */\n dup4\n /* \"ThrowawayNFT_flat.sol\":58966:59002 IERC721Receiver(to).onERC721Received */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x150b7a02\n /* \"ThrowawayNFT_flat.sol\":59003:59015 _msgSender() */\n tag_192\n /* \"ThrowawayNFT_flat.sol\":59003:59013 _msgSender */\n tag_100\n /* \"ThrowawayNFT_flat.sol\":59003:59015 _msgSender() */\n jump\t// in\n tag_192:\n /* \"ThrowawayNFT_flat.sol\":59017:59021 from */\n dup8\n /* \"ThrowawayNFT_flat.sol\":59023:59030 tokenId */\n dup7\n /* \"ThrowawayNFT_flat.sol\":59032:59037 _data */\n dup7\n /* \"ThrowawayNFT_flat.sol\":58966:59038 IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) */\n mload(0x40)\n dup6\n 0xffffffff\n and\n 0xe0\n shl\n dup2\n mstore\n 0x04\n add\n tag_193\n swap5\n swap4\n swap3\n swap2\n swap1\n tag_194\n jump\t// in\n tag_193:\n 0x20\n mload(0x40)\n dup1\n dup4\n sub\n dup2\n 0x00\n dup8\n gas\n call\n swap3\n pop\n pop\n pop\n dup1\n iszero\n tag_195\n jumpi\n pop\n mload(0x40)\n returndatasize\n not(0x1f)\n 0x1f\n dup3\n add\n and\n dup3\n add\n dup1\n 0x40\n mstore\n pop\n dup2\n add\n swap1\n tag_196\n swap2\n swap1\n tag_197\n jump\t// in\n tag_196:\n 0x01\n tag_195:\n /* \"ThrowawayNFT_flat.sol\":58962:59432 try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {... */\n tag_198\n jumpi\n returndatasize\n dup1\n 0x00\n dup2\n eq\n tag_203\n jumpi\n mload(0x40)\n swap2\n pop\n and(add(returndatasize, 0x3f), not(0x1f))\n dup3\n add\n 0x40\n mstore\n returndatasize\n dup3\n mstore\n returndatasize\n 0x00\n 0x20\n dup5\n add\n returndatacopy\n jump(tag_202)\n tag_203:\n 0x60\n swap2\n pop\n tag_202:\n pop\n /* \"ThrowawayNFT_flat.sol\":59214:59215 0 */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":59197:59203 reason */\n dup2\n /* \"ThrowawayNFT_flat.sol\":59197:59210 reason.length */\n mload\n /* \"ThrowawayNFT_flat.sol\":59197:59215 reason.length == 0 */\n sub\n /* \"ThrowawayNFT_flat.sol\":59193:59422 if (reason.length == 0) {... */\n tag_204\n jumpi\n /* \"ThrowawayNFT_flat.sol\":59242:59282 TransferToNonERC721ReceiverImplementer() */\n mload(0x40)\n 0xd1a57ed600000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"ThrowawayNFT_flat.sol\":59193:59422 if (reason.length == 0) {... */\n tag_204:\n /* \"ThrowawayNFT_flat.sol\":59382:59388 reason */\n dup1\n /* \"ThrowawayNFT_flat.sol\":59376:59389 mload(reason) */\n mload\n /* \"ThrowawayNFT_flat.sol\":59367:59373 reason */\n dup2\n /* \"ThrowawayNFT_flat.sol\":59363:59365 32 */\n 0x20\n /* \"ThrowawayNFT_flat.sol\":59359:59374 add(32, reason) */\n add\n /* \"ThrowawayNFT_flat.sol\":59352:59390 revert(add(32, reason), mload(reason)) */\n revert\n /* \"ThrowawayNFT_flat.sol\":58962:59432 try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {... */\n tag_198:\n /* \"ThrowawayNFT_flat.sol\":59094:59139 IERC721Receiver(to).onERC721Received.selector */\n shl(0xe0, 0x150b7a02)\n /* \"ThrowawayNFT_flat.sol\":59084:59139 retval == IERC721Receiver(to).onERC721Received.selector */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n /* \"ThrowawayNFT_flat.sol\":59084:59090 retval */\n dup2\n /* \"ThrowawayNFT_flat.sol\":59084:59139 retval == IERC721Receiver(to).onERC721Received.selector */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n eq\n /* \"ThrowawayNFT_flat.sol\":59077:59139 return retval == IERC721Receiver(to).onERC721Received.selector */\n swap2\n pop\n pop\n /* \"ThrowawayNFT_flat.sol\":58788:59438 function _checkContractOnERC721Received(... */\n swap5\n swap4\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"ThrowawayNFT_flat.sol\":47687:47779 function _baseURI() internal view virtual returns (string memory) {... */\n tag_144:\n /* \"ThrowawayNFT_flat.sol\":47738:47751 string memory */\n 0x60\n /* \"ThrowawayNFT_flat.sol\":47763:47772 return '' */\n mload(0x40)\n dup1\n 0x20\n add\n 0x40\n mstore\n dup1\n 0x00\n dup2\n mstore\n pop\n swap1\n pop\n /* \"ThrowawayNFT_flat.sol\":47687:47779 function _baseURI() internal view virtual returns (string memory) {... */\n swap1\n jump\t// out\n /* \"ThrowawayNFT_flat.sol\":34378:35081 function toString(uint256 value) internal pure returns (string memory) {... */\n tag_148:\n /* \"ThrowawayNFT_flat.sol\":34434:34447 string memory */\n 0x60\n /* \"ThrowawayNFT_flat.sol\":34660:34661 0 */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":34651:34656 value */\n dup3\n /* \"ThrowawayNFT_flat.sol\":34651:34661 value == 0 */\n sub\n /* \"ThrowawayNFT_flat.sol\":34647:34698 if (value == 0) {... */\n tag_209\n jumpi\n /* \"ThrowawayNFT_flat.sol\":34677:34687 return \"0\" */\n mload(0x40)\n dup1\n 0x40\n add\n 0x40\n mstore\n dup1\n 0x01\n dup2\n mstore\n 0x20\n add\n 0x3000000000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n pop\n swap1\n pop\n jump(tag_208)\n /* \"ThrowawayNFT_flat.sol\":34647:34698 if (value == 0) {... */\n tag_209:\n /* \"ThrowawayNFT_flat.sol\":34707:34719 uint256 temp */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":34722:34727 value */\n dup3\n /* \"ThrowawayNFT_flat.sol\":34707:34727 uint256 temp = value */\n swap1\n pop\n /* \"ThrowawayNFT_flat.sol\":34737:34751 uint256 digits */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":34761:34836 while (temp != 0) {... */\n tag_210:\n /* \"ThrowawayNFT_flat.sol\":34776:34777 0 */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":34768:34772 temp */\n dup3\n /* \"ThrowawayNFT_flat.sol\":34768:34777 temp != 0 */\n eq\n /* \"ThrowawayNFT_flat.sol\":34761:34836 while (temp != 0) {... */\n tag_211\n jumpi\n /* \"ThrowawayNFT_flat.sol\":34793:34801 digits++ */\n dup1\n dup1\n tag_212\n swap1\n tag_213\n jump\t// in\n tag_212:\n swap2\n pop\n pop\n /* \"ThrowawayNFT_flat.sol\":34823:34825 10 */\n 0x0a\n /* \"ThrowawayNFT_flat.sol\":34815:34825 temp /= 10 */\n dup3\n tag_214\n swap2\n swap1\n tag_215\n jump\t// in\n tag_214:\n swap2\n pop\n /* \"ThrowawayNFT_flat.sol\":34761:34836 while (temp != 0) {... */\n jump(tag_210)\n tag_211:\n /* \"ThrowawayNFT_flat.sol\":34845:34864 bytes memory buffer */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":34877:34883 digits */\n dup2\n /* \"ThrowawayNFT_flat.sol\":34867:34884 new bytes(digits) */\n 0xffffffffffffffff\n dup2\n gt\n iszero\n tag_216\n jumpi\n tag_217\n tag_218\n jump\t// in\n tag_217:\n tag_216:\n mload(0x40)\n swap1\n dup1\n dup3\n mstore\n dup1\n 0x1f\n add\n not(0x1f)\n and\n 0x20\n add\n dup3\n add\n 0x40\n mstore\n dup1\n iszero\n tag_219\n jumpi\n dup2\n 0x20\n add\n 0x01\n dup3\n mul\n dup1\n calldatasize\n dup4\n calldatacopy\n dup1\n dup3\n add\n swap2\n pop\n pop\n swap1\n pop\n tag_219:\n pop\n /* \"ThrowawayNFT_flat.sol\":34845:34884 bytes memory buffer = new bytes(digits) */\n swap1\n pop\n /* \"ThrowawayNFT_flat.sol\":34894:35044 while (value != 0) {... */\n tag_220:\n /* \"ThrowawayNFT_flat.sol\":34910:34911 0 */\n 0x00\n /* \"ThrowawayNFT_flat.sol\":34901:34906 value */\n dup6\n /* \"ThrowawayNFT_flat.sol\":34901:34911 value != 0 */\n eq\n /* \"ThrowawayNFT_flat.sol\":34894:35044 while (value != 0) {... */\n tag_221\n jumpi\n /* \"ThrowawayNFT_flat.sol\":34937:34938 1 */\n 0x01\n /* \"ThrowawayNFT_flat.sol\":34927:34938 digits -= 1 */\n dup3\n tag_222\n swap2\n swap1\n tag_223\n jump\t// in\n tag_222:\n swap2\n pop\n /* \"ThrowawayNFT_flat.sol\":35003:35005 10 */\n 0x0a\n /* \"ThrowawayNFT_flat.sol\":34995:35000 value */\n dup6\n /* \"ThrowawayNFT_flat.sol\":34995:35005 value % 10 */\n tag_224\n swap2\n swap1\n tag_225\n jump\t// in\n tag_224:\n /* \"ThrowawayNFT_flat.sol\":34982:34984 48 */\n 0x30\n /* \"ThrowawayNFT_flat.sol\":34982:35006 48 + uint256(value % 10) */\n tag_226\n swap2\n swap1\n tag_227\n jump\t// in\n tag_226:\n /* \"ThrowawayNFT_flat.sol\":34969:35008 bytes1(uint8(48 + uint256(value % 10))) */\n 0xf8\n shl\n /* \"ThrowawayNFT_flat.sol\":34952:34958 buffer */\n dup2\n /* \"ThrowawayNFT_flat.sol\":34959:34965 digits */\n dup4\n /* \"ThrowawayNFT_flat.sol\":34952:34966 buffer[digits] */\n dup2\n mload\n dup2\n lt\n tag_228\n jumpi\n tag_229\n tag_230\n jump\t// in\n tag_229:\n tag_228:\n 0x20\n add\n add\n /* \"ThrowawayNFT_flat.sol\":34952:35008 buffer[digits] = bytes1(uint8(48 + uint256(value % 10))) */\n swap1\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n swap1\n dup2\n 0x00\n byte\n swap1\n mstore8\n pop\n /* \"ThrowawayNFT_flat.sol\":35031:35033 10 */\n 0x0a\n /* \"ThrowawayNFT_flat.sol\":35022:35033 value /= 10 */\n dup6\n tag_231\n swap2\n swap1\n tag_215\n jump\t// in\n tag_231:\n swap5\n pop\n /* \"ThrowawayNFT_flat.sol\":34894:35044 while (value != 0) {... */\n jump(tag_220)\n tag_221:\n /* \"ThrowawayNFT_flat.sol\":35067:35073 buffer */\n dup1\n /* \"ThrowawayNFT_flat.sol\":35053:35074 return string(buffer) */\n swap4\n pop\n pop\n pop\n pop\n /* \"ThrowawayNFT_flat.sol\":34378:35081 function toString(uint256 value) internal pure returns (string memory) {... */\n tag_208:\n swap2\n swap1\n pop\n jump\t// out\n /* \"ThrowawayNFT_flat.sol\":60069:60223 function _beforeTokenTransfers(... */\n tag_173:\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"ThrowawayNFT_flat.sol\":60864:61017 function _afterTokenTransfers(... */\n tag_178:\n pop\n pop\n pop\n pop\n jump\t// out\n tag_180:\n mload(0x40)\n dup1\n 0x60\n add\n 0x40\n mstore\n dup1\n and(0xffffffffffffffffffffffffffffffffffffffff, 0x00)\n dup2\n mstore\n 0x20\n add\n and(0xffffffffffffffff, 0x00)\n dup2\n mstore\n 0x20\n add\n iszero(iszero(0x00))\n dup2\n mstore\n pop\n swap1\n jump\t// out\n /* \"#utility.yul\":7:82 */\n tag_234:\n /* \"#utility.yul\":40:46 */\n 0x00\n /* \"#utility.yul\":73:75 */\n 0x40\n /* \"#utility.yul\":67:76 */\n mload\n /* \"#utility.yul\":57:76 */\n swap1\n pop\n /* \"#utility.yul\":7:82 */\n swap1\n jump\t// out\n /* \"#utility.yul\":88:205 */\n tag_235:\n /* \"#utility.yul\":197:198 */\n 0x00\n /* \"#utility.yul\":194:195 */\n dup1\n /* \"#utility.yul\":187:199 */\n revert\n /* \"#utility.yul\":211:328 */\n tag_236:\n /* \"#utility.yul\":320:321 */\n 0x00\n /* \"#utility.yul\":317:318 */\n dup1\n /* \"#utility.yul\":310:322 */\n revert\n /* \"#utility.yul\":334:483 */\n tag_237:\n /* \"#utility.yul\":370:377 */\n 0x00\n /* \"#utility.yul\":410:476 */\n 0xffffffff00000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":403:408 */\n dup3\n /* \"#utility.yul\":399:477 */\n and\n /* \"#utility.yul\":388:477 */\n swap1\n pop\n /* \"#utility.yul\":334:483 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":489:609 */\n tag_238:\n /* \"#utility.yul\":561:584 */\n tag_281\n /* \"#utility.yul\":578:583 */\n dup2\n /* \"#utility.yul\":561:584 */\n tag_237\n jump\t// in\n tag_281:\n /* \"#utility.yul\":554:559 */\n dup2\n /* \"#utility.yul\":551:585 */\n eq\n /* \"#utility.yul\":541:603 */\n tag_282\n jumpi\n /* \"#utility.yul\":599:600 */\n 0x00\n /* \"#utility.yul\":596:597 */\n dup1\n /* \"#utility.yul\":589:601 */\n revert\n /* \"#utility.yul\":541:603 */\n tag_282:\n /* \"#utility.yul\":489:609 */\n pop\n jump\t// out\n /* \"#utility.yul\":615:752 */\n tag_239:\n /* \"#utility.yul\":660:665 */\n 0x00\n /* \"#utility.yul\":698:704 */\n dup2\n /* \"#utility.yul\":685:705 */\n calldataload\n /* \"#utility.yul\":676:705 */\n swap1\n pop\n /* \"#utility.yul\":714:746 */\n tag_284\n /* \"#utility.yul\":740:745 */\n dup2\n /* \"#utility.yul\":714:746 */\n tag_238\n jump\t// in\n tag_284:\n /* \"#utility.yul\":615:752 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":758:1085 */\n tag_22:\n /* \"#utility.yul\":816:822 */\n 0x00\n /* \"#utility.yul\":865:867 */\n 0x20\n /* \"#utility.yul\":853:862 */\n dup3\n /* \"#utility.yul\":844:851 */\n dup5\n /* \"#utility.yul\":840:863 */\n sub\n /* \"#utility.yul\":836:868 */\n slt\n /* \"#utility.yul\":833:952 */\n iszero\n tag_286\n jumpi\n /* \"#utility.yul\":871:950 */\n tag_287\n tag_235\n jump\t// in\n tag_287:\n /* \"#utility.yul\":833:952 */\n tag_286:\n /* \"#utility.yul\":991:992 */\n 0x00\n /* \"#utility.yul\":1016:1068 */\n tag_288\n /* \"#utility.yul\":1060:1067 */\n dup5\n /* \"#utility.yul\":1051:1057 */\n dup3\n /* \"#utility.yul\":1040:1049 */\n dup6\n /* \"#utility.yul\":1036:1058 */\n add\n /* \"#utility.yul\":1016:1068 */\n tag_239\n jump\t// in\n tag_288:\n /* \"#utility.yul\":1006:1068 */\n swap2\n pop\n /* \"#utility.yul\":962:1078 */\n pop\n /* \"#utility.yul\":758:1085 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1091:1181 */\n tag_240:\n /* \"#utility.yul\":1125:1132 */\n 0x00\n /* \"#utility.yul\":1168:1173 */\n dup2\n /* \"#utility.yul\":1161:1174 */\n iszero\n /* \"#utility.yul\":1154:1175 */\n iszero\n /* \"#utility.yul\":1143:1175 */\n swap1\n pop\n /* \"#utility.yul\":1091:1181 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1187:1296 */\n tag_241:\n /* \"#utility.yul\":1268:1289 */\n tag_291\n /* \"#utility.yul\":1283:1288 */\n dup2\n /* \"#utility.yul\":1268:1289 */\n tag_240\n jump\t// in\n tag_291:\n /* \"#utility.yul\":1263:1266 */\n dup3\n /* \"#utility.yul\":1256:1290 */\n mstore\n /* \"#utility.yul\":1187:1296 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1302:1512 */\n tag_25:\n /* \"#utility.yul\":1389:1393 */\n 0x00\n /* \"#utility.yul\":1427:1429 */\n 0x20\n /* \"#utility.yul\":1416:1425 */\n dup3\n /* \"#utility.yul\":1412:1430 */\n add\n /* \"#utility.yul\":1404:1430 */\n swap1\n pop\n /* \"#utility.yul\":1440:1505 */\n tag_293\n /* \"#utility.yul\":1502:1503 */\n 0x00\n /* \"#utility.yul\":1491:1500 */\n dup4\n /* \"#utility.yul\":1487:1504 */\n add\n /* \"#utility.yul\":1478:1484 */\n dup5\n /* \"#utility.yul\":1440:1505 */\n tag_241\n jump\t// in\n tag_293:\n /* \"#utility.yul\":1302:1512 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1518:1617 */\n tag_242:\n /* \"#utility.yul\":1570:1576 */\n 0x00\n /* \"#utility.yul\":1604:1609 */\n dup2\n /* \"#utility.yul\":1598:1610 */\n mload\n /* \"#utility.yul\":1588:1610 */\n swap1\n pop\n /* \"#utility.yul\":1518:1617 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1623:1792 */\n tag_243:\n /* \"#utility.yul\":1707:1718 */\n 0x00\n /* \"#utility.yul\":1741:1747 */\n dup3\n /* \"#utility.yul\":1736:1739 */\n dup3\n /* \"#utility.yul\":1729:1748 */\n mstore\n /* \"#utility.yul\":1781:1785 */\n 0x20\n /* \"#utility.yul\":1776:1779 */\n dup3\n /* \"#utility.yul\":1772:1786 */\n add\n /* \"#utility.yul\":1757:1786 */\n swap1\n pop\n /* \"#utility.yul\":1623:1792 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1798:2105 */\n tag_244:\n /* \"#utility.yul\":1866:1867 */\n 0x00\n /* \"#utility.yul\":1876:1989 */\n tag_297:\n /* \"#utility.yul\":1890:1896 */\n dup4\n /* \"#utility.yul\":1887:1888 */\n dup2\n /* \"#utility.yul\":1884:1897 */\n lt\n /* \"#utility.yul\":1876:1989 */\n iszero\n tag_299\n jumpi\n /* \"#utility.yul\":1975:1976 */\n dup1\n /* \"#utility.yul\":1970:1973 */\n dup3\n /* \"#utility.yul\":1966:1977 */\n add\n /* \"#utility.yul\":1960:1978 */\n mload\n /* \"#utility.yul\":1956:1957 */\n dup2\n /* \"#utility.yul\":1951:1954 */\n dup5\n /* \"#utility.yul\":1947:1958 */\n add\n /* \"#utility.yul\":1940:1979 */\n mstore\n /* \"#utility.yul\":1912:1914 */\n 0x20\n /* \"#utility.yul\":1909:1910 */\n dup2\n /* \"#utility.yul\":1905:1915 */\n add\n /* \"#utility.yul\":1900:1915 */\n swap1\n pop\n /* \"#utility.yul\":1876:1989 */\n jump(tag_297)\n tag_299:\n /* \"#utility.yul\":2007:2013 */\n dup4\n /* \"#utility.yul\":2004:2005 */\n dup2\n /* \"#utility.yul\":2001:2014 */\n gt\n /* \"#utility.yul\":1998:2099 */\n iszero\n tag_300\n jumpi\n /* \"#utility.yul\":2087:2088 */\n 0x00\n /* \"#utility.yul\":2078:2084 */\n dup5\n /* \"#utility.yul\":2073:2076 */\n dup5\n /* \"#utility.yul\":2069:2085 */\n add\n /* \"#utility.yul\":2062:2089 */\n mstore\n /* \"#utility.yul\":1998:2099 */\n tag_300:\n /* \"#utility.yul\":1847:2105 */\n pop\n /* \"#utility.yul\":1798:2105 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2111:2213 */\n tag_245:\n /* \"#utility.yul\":2152:2158 */\n 0x00\n /* \"#utility.yul\":2203:2205 */\n 0x1f\n /* \"#utility.yul\":2199:2206 */\n not\n /* \"#utility.yul\":2194:2196 */\n 0x1f\n /* \"#utility.yul\":2187:2192 */\n dup4\n /* \"#utility.yul\":2183:2197 */\n add\n /* \"#utility.yul\":2179:2207 */\n and\n /* \"#utility.yul\":2169:2207 */\n swap1\n pop\n /* \"#utility.yul\":2111:2213 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2219:2583 */\n tag_246:\n /* \"#utility.yul\":2307:2310 */\n 0x00\n /* \"#utility.yul\":2335:2374 */\n tag_303\n /* \"#utility.yul\":2368:2373 */\n dup3\n /* \"#utility.yul\":2335:2374 */\n tag_242\n jump\t// in\n tag_303:\n /* \"#utility.yul\":2390:2461 */\n tag_304\n /* \"#utility.yul\":2454:2460 */\n dup2\n /* \"#utility.yul\":2449:2452 */\n dup6\n /* \"#utility.yul\":2390:2461 */\n tag_243\n jump\t// in\n tag_304:\n /* \"#utility.yul\":2383:2461 */\n swap4\n pop\n /* \"#utility.yul\":2470:2522 */\n tag_305\n /* \"#utility.yul\":2515:2521 */\n dup2\n /* \"#utility.yul\":2510:2513 */\n dup6\n /* \"#utility.yul\":2503:2507 */\n 0x20\n /* \"#utility.yul\":2496:2501 */\n dup7\n /* \"#utility.yul\":2492:2508 */\n add\n /* \"#utility.yul\":2470:2522 */\n tag_244\n jump\t// in\n tag_305:\n /* \"#utility.yul\":2547:2576 */\n tag_306\n /* \"#utility.yul\":2569:2575 */\n dup2\n /* \"#utility.yul\":2547:2576 */\n tag_245\n jump\t// in\n tag_306:\n /* \"#utility.yul\":2542:2545 */\n dup5\n /* \"#utility.yul\":2538:2577 */\n add\n /* \"#utility.yul\":2531:2577 */\n swap2\n pop\n /* \"#utility.yul\":2311:2583 */\n pop\n /* \"#utility.yul\":2219:2583 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2589:2902 */\n tag_29:\n /* \"#utility.yul\":2702:2706 */\n 0x00\n /* \"#utility.yul\":2740:2742 */\n 0x20\n /* \"#utility.yul\":2729:2738 */\n dup3\n /* \"#utility.yul\":2725:2743 */\n add\n /* \"#utility.yul\":2717:2743 */\n swap1\n pop\n /* \"#utility.yul\":2789:2798 */\n dup2\n /* \"#utility.yul\":2783:2787 */\n dup2\n /* \"#utility.yul\":2779:2799 */\n sub\n /* \"#utility.yul\":2775:2776 */\n 0x00\n /* \"#utility.yul\":2764:2773 */\n dup4\n /* \"#utility.yul\":2760:2777 */\n add\n /* \"#utility.yul\":2753:2800 */\n mstore\n /* \"#utility.yul\":2817:2895 */\n tag_308\n /* \"#utility.yul\":2890:2894 */\n dup2\n /* \"#utility.yul\":2881:2887 */\n dup5\n /* \"#utility.yul\":2817:2895 */\n tag_246\n jump\t// in\n tag_308:\n /* \"#utility.yul\":2809:2895 */\n swap1\n pop\n /* \"#utility.yul\":2589:2902 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2908:2985 */\n tag_247:\n /* \"#utility.yul\":2945:2952 */\n 0x00\n /* \"#utility.yul\":2974:2979 */\n dup2\n /* \"#utility.yul\":2963:2979 */\n swap1\n pop\n /* \"#utility.yul\":2908:2985 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2991:3113 */\n tag_248:\n /* \"#utility.yul\":3064:3088 */\n tag_311\n /* \"#utility.yul\":3082:3087 */\n dup2\n /* \"#utility.yul\":3064:3088 */\n tag_247\n jump\t// in\n tag_311:\n /* \"#utility.yul\":3057:3062 */\n dup2\n /* \"#utility.yul\":3054:3089 */\n eq\n /* \"#utility.yul\":3044:3107 */\n tag_312\n jumpi\n /* \"#utility.yul\":3103:3104 */\n 0x00\n /* \"#utility.yul\":3100:3101 */\n dup1\n /* \"#utility.yul\":3093:3105 */\n revert\n /* \"#utility.yul\":3044:3107 */\n tag_312:\n /* \"#utility.yul\":2991:3113 */\n pop\n jump\t// out\n /* \"#utility.yul\":3119:3258 */\n tag_249:\n /* \"#utility.yul\":3165:3170 */\n 0x00\n /* \"#utility.yul\":3203:3209 */\n dup2\n /* \"#utility.yul\":3190:3210 */\n calldataload\n /* \"#utility.yul\":3181:3210 */\n swap1\n pop\n /* \"#utility.yul\":3219:3252 */\n tag_314\n /* \"#utility.yul\":3246:3251 */\n dup2\n /* \"#utility.yul\":3219:3252 */\n tag_248\n jump\t// in\n tag_314:\n /* \"#utility.yul\":3119:3258 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3264:3593 */\n tag_32:\n /* \"#utility.yul\":3323:3329 */\n 0x00\n /* \"#utility.yul\":3372:3374 */\n 0x20\n /* \"#utility.yul\":3360:3369 */\n dup3\n /* \"#utility.yul\":3351:3358 */\n dup5\n /* \"#utility.yul\":3347:3370 */\n sub\n /* \"#utility.yul\":3343:3375 */\n slt\n /* \"#utility.yul\":3340:3459 */\n iszero\n tag_316\n jumpi\n /* \"#utility.yul\":3378:3457 */\n tag_317\n tag_235\n jump\t// in\n tag_317:\n /* \"#utility.yul\":3340:3459 */\n tag_316:\n /* \"#utility.yul\":3498:3499 */\n 0x00\n /* \"#utility.yul\":3523:3576 */\n tag_318\n /* \"#utility.yul\":3568:3575 */\n dup5\n /* \"#utility.yul\":3559:3565 */\n dup3\n /* \"#utility.yul\":3548:3557 */\n dup6\n /* \"#utility.yul\":3544:3566 */\n add\n /* \"#utility.yul\":3523:3576 */\n tag_249\n jump\t// in\n tag_318:\n /* \"#utility.yul\":3513:3576 */\n swap2\n pop\n /* \"#utility.yul\":3469:3586 */\n pop\n /* \"#utility.yul\":3264:3593 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3599:3725 */\n tag_250:\n /* \"#utility.yul\":3636:3643 */\n 0x00\n /* \"#utility.yul\":3676:3718 */\n 0xffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":3669:3674 */\n dup3\n /* \"#utility.yul\":3665:3719 */\n and\n /* \"#utility.yul\":3654:3719 */\n swap1\n pop\n /* \"#utility.yul\":3599:3725 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3731:3827 */\n tag_251:\n /* \"#utility.yul\":3768:3775 */\n 0x00\n /* \"#utility.yul\":3797:3821 */\n tag_321\n /* \"#utility.yul\":3815:3820 */\n dup3\n /* \"#utility.yul\":3797:3821 */\n tag_250\n jump\t// in\n tag_321:\n /* \"#utility.yul\":3786:3821 */\n swap1\n pop\n /* \"#utility.yul\":3731:3827 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3833:3951 */\n tag_252:\n /* \"#utility.yul\":3920:3944 */\n tag_323\n /* \"#utility.yul\":3938:3943 */\n dup2\n /* \"#utility.yul\":3920:3944 */\n tag_251\n jump\t// in\n tag_323:\n /* \"#utility.yul\":3915:3918 */\n dup3\n /* \"#utility.yul\":3908:3945 */\n mstore\n /* \"#utility.yul\":3833:3951 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3957:4179 */\n tag_35:\n /* \"#utility.yul\":4050:4054 */\n 0x00\n /* \"#utility.yul\":4088:4090 */\n 0x20\n /* \"#utility.yul\":4077:4086 */\n dup3\n /* \"#utility.yul\":4073:4091 */\n add\n /* \"#utility.yul\":4065:4091 */\n swap1\n pop\n /* \"#utility.yul\":4101:4172 */\n tag_325\n /* \"#utility.yul\":4169:4170 */\n 0x00\n /* \"#utility.yul\":4158:4167 */\n dup4\n /* \"#utility.yul\":4154:4171 */\n add\n /* \"#utility.yul\":4145:4151 */\n dup5\n /* \"#utility.yul\":4101:4172 */\n tag_252\n jump\t// in\n tag_325:\n /* \"#utility.yul\":3957:4179 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4185:4307 */\n tag_253:\n /* \"#utility.yul\":4258:4282 */\n tag_327\n /* \"#utility.yul\":4276:4281 */\n dup2\n /* \"#utility.yul\":4258:4282 */\n tag_251\n jump\t// in\n tag_327:\n /* \"#utility.yul\":4251:4256 */\n dup2\n /* \"#utility.yul\":4248:4283 */\n eq\n /* \"#utility.yul\":4238:4301 */\n tag_328\n jumpi\n /* \"#utility.yul\":4297:4298 */\n 0x00\n /* \"#utility.yul\":4294:4295 */\n dup1\n /* \"#utility.yul\":4287:4299 */\n revert\n /* \"#utility.yul\":4238:4301 */\n tag_328:\n /* \"#utility.yul\":4185:4307 */\n pop\n jump\t// out\n /* \"#utility.yul\":4313:4452 */\n tag_254:\n /* \"#utility.yul\":4359:4364 */\n 0x00\n /* \"#utility.yul\":4397:4403 */\n dup2\n /* \"#utility.yul\":4384:4404 */\n calldataload\n /* \"#utility.yul\":4375:4404 */\n swap1\n pop\n /* \"#utility.yul\":4413:4446 */\n tag_330\n /* \"#utility.yul\":4440:4445 */\n dup2\n /* \"#utility.yul\":4413:4446 */\n tag_253\n jump\t// in\n tag_330:\n /* \"#utility.yul\":4313:4452 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4458:4932 */\n tag_38:\n /* \"#utility.yul\":4526:4532 */\n 0x00\n /* \"#utility.yul\":4534:4540 */\n dup1\n /* \"#utility.yul\":4583:4585 */\n 0x40\n /* \"#utility.yul\":4571:4580 */\n dup4\n /* \"#utility.yul\":4562:4569 */\n dup6\n /* \"#utility.yul\":4558:4581 */\n sub\n /* \"#utility.yul\":4554:4586 */\n slt\n /* \"#utility.yul\":4551:4670 */\n iszero\n tag_332\n jumpi\n /* \"#utility.yul\":4589:4668 */\n tag_333\n tag_235\n jump\t// in\n tag_333:\n /* \"#utility.yul\":4551:4670 */\n tag_332:\n /* \"#utility.yul\":4709:4710 */\n 0x00\n /* \"#utility.yul\":4734:4787 */\n tag_334\n /* \"#utility.yul\":4779:4786 */\n dup6\n /* \"#utility.yul\":4770:4776 */\n dup3\n /* \"#utility.yul\":4759:4768 */\n dup7\n /* \"#utility.yul\":4755:4777 */\n add\n /* \"#utility.yul\":4734:4787 */\n tag_254\n jump\t// in\n tag_334:\n /* \"#utility.yul\":4724:4787 */\n swap3\n pop\n /* \"#utility.yul\":4680:4797 */\n pop\n /* \"#utility.yul\":4836:4838 */\n 0x20\n /* \"#utility.yul\":4862:4915 */\n tag_335\n /* \"#utility.yul\":4907:4914 */\n dup6\n /* \"#utility.yul\":4898:4904 */\n dup3\n /* \"#utility.yul\":4887:4896 */\n dup7\n /* \"#utility.yul\":4883:4905 */\n add\n /* \"#utility.yul\":4862:4915 */\n tag_249\n jump\t// in\n tag_335:\n /* \"#utility.yul\":4852:4915 */\n swap2\n pop\n /* \"#utility.yul\":4807:4925 */\n pop\n /* \"#utility.yul\":4458:4932 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4938:5056 */\n tag_255:\n /* \"#utility.yul\":5025:5049 */\n tag_337\n /* \"#utility.yul\":5043:5048 */\n dup2\n /* \"#utility.yul\":5025:5049 */\n tag_247\n jump\t// in\n tag_337:\n /* \"#utility.yul\":5020:5023 */\n dup3\n /* \"#utility.yul\":5013:5050 */\n mstore\n /* \"#utility.yul\":4938:5056 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5062:5284 */\n tag_43:\n /* \"#utility.yul\":5155:5159 */\n 0x00\n /* \"#utility.yul\":5193:5195 */\n 0x20\n /* \"#utility.yul\":5182:5191 */\n dup3\n /* \"#utility.yul\":5178:5196 */\n add\n /* \"#utility.yul\":5170:5196 */\n swap1\n pop\n /* \"#utility.yul\":5206:5277 */\n tag_339\n /* \"#utility.yul\":5274:5275 */\n 0x00\n /* \"#utility.yul\":5263:5272 */\n dup4\n /* \"#utility.yul\":5259:5276 */\n add\n /* \"#utility.yul\":5250:5256 */\n dup5\n /* \"#utility.yul\":5206:5277 */\n tag_255\n jump\t// in\n tag_339:\n /* \"#utility.yul\":5062:5284 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5290:5909 */\n tag_46:\n /* \"#utility.yul\":5367:5373 */\n 0x00\n /* \"#utility.yul\":5375:5381 */\n dup1\n /* \"#utility.yul\":5383:5389 */\n 0x00\n /* \"#utility.yul\":5432:5434 */\n 0x60\n /* \"#utility.yul\":5420:5429 */\n dup5\n /* \"#utility.yul\":5411:5418 */\n dup7\n /* \"#utility.yul\":5407:5430 */\n sub\n /* \"#utility.yul\":5403:5435 */\n slt\n /* \"#utility.yul\":5400:5519 */\n iszero\n tag_341\n jumpi\n /* \"#utility.yul\":5438:5517 */\n tag_342\n tag_235\n jump\t// in\n tag_342:\n /* \"#utility.yul\":5400:5519 */\n tag_341:\n /* \"#utility.yul\":5558:5559 */\n 0x00\n /* \"#utility.yul\":5583:5636 */\n tag_343\n /* \"#utility.yul\":5628:5635 */\n dup7\n /* \"#utility.yul\":5619:5625 */\n dup3\n /* \"#utility.yul\":5608:5617 */\n dup8\n /* \"#utility.yul\":5604:5626 */\n add\n /* \"#utility.yul\":5583:5636 */\n tag_254\n jump\t// in\n tag_343:\n /* \"#utility.yul\":5573:5636 */\n swap4\n pop\n /* \"#utility.yul\":5529:5646 */\n pop\n /* \"#utility.yul\":5685:5687 */\n 0x20\n /* \"#utility.yul\":5711:5764 */\n tag_344\n /* \"#utility.yul\":5756:5763 */\n dup7\n /* \"#utility.yul\":5747:5753 */\n dup3\n /* \"#utility.yul\":5736:5745 */\n dup8\n /* \"#utility.yul\":5732:5754 */\n add\n /* \"#utility.yul\":5711:5764 */\n tag_254\n jump\t// in\n tag_344:\n /* \"#utility.yul\":5701:5764 */\n swap3\n pop\n /* \"#utility.yul\":5656:5774 */\n pop\n /* \"#utility.yul\":5813:5815 */\n 0x40\n /* \"#utility.yul\":5839:5892 */\n tag_345\n /* \"#utility.yul\":5884:5891 */\n dup7\n /* \"#utility.yul\":5875:5881 */\n dup3\n /* \"#utility.yul\":5864:5873 */\n dup8\n /* \"#utility.yul\":5860:5882 */\n add\n /* \"#utility.yul\":5839:5892 */\n tag_249\n jump\t// in\n tag_345:\n /* \"#utility.yul\":5829:5892 */\n swap2\n pop\n /* \"#utility.yul\":5784:5902 */\n pop\n /* \"#utility.yul\":5290:5909 */\n swap3\n pop\n swap3\n pop\n swap3\n jump\t// out\n /* \"#utility.yul\":5915:6244 */\n tag_57:\n /* \"#utility.yul\":5974:5980 */\n 0x00\n /* \"#utility.yul\":6023:6025 */\n 0x20\n /* \"#utility.yul\":6011:6020 */\n dup3\n /* \"#utility.yul\":6002:6009 */\n dup5\n /* \"#utility.yul\":5998:6021 */\n sub\n /* \"#utility.yul\":5994:6026 */\n slt\n /* \"#utility.yul\":5991:6110 */\n iszero\n tag_347\n jumpi\n /* \"#utility.yul\":6029:6108 */\n tag_348\n tag_235\n jump\t// in\n tag_348:\n /* \"#utility.yul\":5991:6110 */\n tag_347:\n /* \"#utility.yul\":6149:6150 */\n 0x00\n /* \"#utility.yul\":6174:6227 */\n tag_349\n /* \"#utility.yul\":6219:6226 */\n dup5\n /* \"#utility.yul\":6210:6216 */\n dup3\n /* \"#utility.yul\":6199:6208 */\n dup6\n /* \"#utility.yul\":6195:6217 */\n add\n /* \"#utility.yul\":6174:6227 */\n tag_254\n jump\t// in\n tag_349:\n /* \"#utility.yul\":6164:6227 */\n swap2\n pop\n /* \"#utility.yul\":6120:6237 */\n pop\n /* \"#utility.yul\":5915:6244 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6250:6366 */\n tag_256:\n /* \"#utility.yul\":6320:6341 */\n tag_351\n /* \"#utility.yul\":6335:6340 */\n dup2\n /* \"#utility.yul\":6320:6341 */\n tag_240\n jump\t// in\n tag_351:\n /* \"#utility.yul\":6313:6318 */\n dup2\n /* \"#utility.yul\":6310:6342 */\n eq\n /* \"#utility.yul\":6300:6360 */\n tag_352\n jumpi\n /* \"#utility.yul\":6356:6357 */\n 0x00\n /* \"#utility.yul\":6353:6354 */\n dup1\n /* \"#utility.yul\":6346:6358 */\n revert\n /* \"#utility.yul\":6300:6360 */\n tag_352:\n /* \"#utility.yul\":6250:6366 */\n pop\n jump\t// out\n /* \"#utility.yul\":6372:6505 */\n tag_257:\n /* \"#utility.yul\":6415:6420 */\n 0x00\n /* \"#utility.yul\":6453:6459 */\n dup2\n /* \"#utility.yul\":6440:6460 */\n calldataload\n /* \"#utility.yul\":6431:6460 */\n swap1\n pop\n /* \"#utility.yul\":6469:6499 */\n tag_354\n /* \"#utility.yul\":6493:6498 */\n dup2\n /* \"#utility.yul\":6469:6499 */\n tag_256\n jump\t// in\n tag_354:\n /* \"#utility.yul\":6372:6505 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6511:6979 */\n tag_65:\n /* \"#utility.yul\":6576:6582 */\n 0x00\n /* \"#utility.yul\":6584:6590 */\n dup1\n /* \"#utility.yul\":6633:6635 */\n 0x40\n /* \"#utility.yul\":6621:6630 */\n dup4\n /* \"#utility.yul\":6612:6619 */\n dup6\n /* \"#utility.yul\":6608:6631 */\n sub\n /* \"#utility.yul\":6604:6636 */\n slt\n /* \"#utility.yul\":6601:6720 */\n iszero\n tag_356\n jumpi\n /* \"#utility.yul\":6639:6718 */\n tag_357\n tag_235\n jump\t// in\n tag_357:\n /* \"#utility.yul\":6601:6720 */\n tag_356:\n /* \"#utility.yul\":6759:6760 */\n 0x00\n /* \"#utility.yul\":6784:6837 */\n tag_358\n /* \"#utility.yul\":6829:6836 */\n dup6\n /* \"#utility.yul\":6820:6826 */\n dup3\n /* \"#utility.yul\":6809:6818 */\n dup7\n /* \"#utility.yul\":6805:6827 */\n add\n /* \"#utility.yul\":6784:6837 */\n tag_254\n jump\t// in\n tag_358:\n /* \"#utility.yul\":6774:6837 */\n swap3\n pop\n /* \"#utility.yul\":6730:6847 */\n pop\n /* \"#utility.yul\":6886:6888 */\n 0x20\n /* \"#utility.yul\":6912:6962 */\n tag_359\n /* \"#utility.yul\":6954:6961 */\n dup6\n /* \"#utility.yul\":6945:6951 */\n dup3\n /* \"#utility.yul\":6934:6943 */\n dup7\n /* \"#utility.yul\":6930:6952 */\n add\n /* \"#utility.yul\":6912:6962 */\n tag_257\n jump\t// in\n tag_359:\n /* \"#utility.yul\":6902:6962 */\n swap2\n pop\n /* \"#utility.yul\":6857:6972 */\n pop\n /* \"#utility.yul\":6511:6979 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6985:7102 */\n tag_258:\n /* \"#utility.yul\":7094:7095 */\n 0x00\n /* \"#utility.yul\":7091:7092 */\n dup1\n /* \"#utility.yul\":7084:7096 */\n revert\n /* \"#utility.yul\":7108:7225 */\n tag_259:\n /* \"#utility.yul\":7217:7218 */\n 0x00\n /* \"#utility.yul\":7214:7215 */\n dup1\n /* \"#utility.yul\":7207:7219 */\n revert\n /* \"#utility.yul\":7231:7411 */\n tag_218:\n /* \"#utility.yul\":7279:7356 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":7276:7277 */\n 0x00\n /* \"#utility.yul\":7269:7357 */\n mstore\n /* \"#utility.yul\":7376:7380 */\n 0x41\n /* \"#utility.yul\":7373:7374 */\n 0x04\n /* \"#utility.yul\":7366:7381 */\n mstore\n /* \"#utility.yul\":7400:7404 */\n 0x24\n /* \"#utility.yul\":7397:7398 */\n 0x00\n /* \"#utility.yul\":7390:7405 */\n revert\n /* \"#utility.yul\":7417:7698 */\n tag_260:\n /* \"#utility.yul\":7500:7527 */\n tag_364\n /* \"#utility.yul\":7522:7526 */\n dup3\n /* \"#utility.yul\":7500:7527 */\n tag_245\n jump\t// in\n tag_364:\n /* \"#utility.yul\":7492:7498 */\n dup2\n /* \"#utility.yul\":7488:7528 */\n add\n /* \"#utility.yul\":7630:7636 */\n dup2\n /* \"#utility.yul\":7618:7628 */\n dup2\n /* \"#utility.yul\":7615:7637 */\n lt\n /* \"#utility.yul\":7594:7612 */\n 0xffffffffffffffff\n /* \"#utility.yul\":7582:7592 */\n dup3\n /* \"#utility.yul\":7579:7613 */\n gt\n /* \"#utility.yul\":7576:7638 */\n or\n /* \"#utility.yul\":7573:7661 */\n iszero\n tag_365\n jumpi\n /* \"#utility.yul\":7641:7659 */\n tag_366\n tag_218\n jump\t// in\n tag_366:\n /* \"#utility.yul\":7573:7661 */\n tag_365:\n /* \"#utility.yul\":7681:7691 */\n dup1\n /* \"#utility.yul\":7677:7679 */\n 0x40\n /* \"#utility.yul\":7670:7692 */\n mstore\n /* \"#utility.yul\":7460:7698 */\n pop\n /* \"#utility.yul\":7417:7698 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7704:7833 */\n tag_261:\n /* \"#utility.yul\":7738:7744 */\n 0x00\n /* \"#utility.yul\":7765:7785 */\n tag_368\n tag_234\n jump\t// in\n tag_368:\n /* \"#utility.yul\":7755:7785 */\n swap1\n pop\n /* \"#utility.yul\":7794:7827 */\n tag_369\n /* \"#utility.yul\":7822:7826 */\n dup3\n /* \"#utility.yul\":7814:7820 */\n dup3\n /* \"#utility.yul\":7794:7827 */\n tag_260\n jump\t// in\n tag_369:\n /* \"#utility.yul\":7704:7833 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7839:8146 */\n tag_262:\n /* \"#utility.yul\":7900:7904 */\n 0x00\n /* \"#utility.yul\":7990:8008 */\n 0xffffffffffffffff\n /* \"#utility.yul\":7982:7988 */\n dup3\n /* \"#utility.yul\":7979:8009 */\n gt\n /* \"#utility.yul\":7976:8032 */\n iszero\n tag_371\n jumpi\n /* \"#utility.yul\":8012:8030 */\n tag_372\n tag_218\n jump\t// in\n tag_372:\n /* \"#utility.yul\":7976:8032 */\n tag_371:\n /* \"#utility.yul\":8050:8079 */\n tag_373\n /* \"#utility.yul\":8072:8078 */\n dup3\n /* \"#utility.yul\":8050:8079 */\n tag_245\n jump\t// in\n tag_373:\n /* \"#utility.yul\":8042:8079 */\n swap1\n pop\n /* \"#utility.yul\":8134:8138 */\n 0x20\n /* \"#utility.yul\":8128:8132 */\n dup2\n /* \"#utility.yul\":8124:8139 */\n add\n /* \"#utility.yul\":8116:8139 */\n swap1\n pop\n /* \"#utility.yul\":7839:8146 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":8152:8306 */\n tag_263:\n /* \"#utility.yul\":8236:8242 */\n dup3\n /* \"#utility.yul\":8231:8234 */\n dup2\n /* \"#utility.yul\":8226:8229 */\n dup4\n /* \"#utility.yul\":8213:8243 */\n calldatacopy\n /* \"#utility.yul\":8298:8299 */\n 0x00\n /* \"#utility.yul\":8289:8295 */\n dup4\n /* \"#utility.yul\":8284:8287 */\n dup4\n /* \"#utility.yul\":8280:8296 */\n add\n /* \"#utility.yul\":8273:8300 */\n mstore\n /* \"#utility.yul\":8152:8306 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":8312:8722 */\n tag_264:\n /* \"#utility.yul\":8389:8394 */\n 0x00\n /* \"#utility.yul\":8414:8479 */\n tag_376\n /* \"#utility.yul\":8430:8478 */\n tag_377\n /* \"#utility.yul\":8471:8477 */\n dup5\n /* \"#utility.yul\":8430:8478 */\n tag_262\n jump\t// in\n tag_377:\n /* \"#utility.yul\":8414:8479 */\n tag_261\n jump\t// in\n tag_376:\n /* \"#utility.yul\":8405:8479 */\n swap1\n pop\n /* \"#utility.yul\":8502:8508 */\n dup3\n /* \"#utility.yul\":8495:8500 */\n dup2\n /* \"#utility.yul\":8488:8509 */\n mstore\n /* \"#utility.yul\":8540:8544 */\n 0x20\n /* \"#utility.yul\":8533:8538 */\n dup2\n /* \"#utility.yul\":8529:8545 */\n add\n /* \"#utility.yul\":8578:8581 */\n dup5\n /* \"#utility.yul\":8569:8575 */\n dup5\n /* \"#utility.yul\":8564:8567 */\n dup5\n /* \"#utility.yul\":8560:8576 */\n add\n /* \"#utility.yul\":8557:8582 */\n gt\n /* \"#utility.yul\":8554:8666 */\n iszero\n tag_378\n jumpi\n /* \"#utility.yul\":8585:8664 */\n tag_379\n tag_259\n jump\t// in\n tag_379:\n /* \"#utility.yul\":8554:8666 */\n tag_378:\n /* \"#utility.yul\":8675:8716 */\n tag_380\n /* \"#utility.yul\":8709:8715 */\n dup5\n /* \"#utility.yul\":8704:8707 */\n dup3\n /* \"#utility.yul\":8699:8702 */\n dup6\n /* \"#utility.yul\":8675:8716 */\n tag_263\n jump\t// in\n tag_380:\n /* \"#utility.yul\":8395:8722 */\n pop\n /* \"#utility.yul\":8312:8722 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":8741:9079 */\n tag_265:\n /* \"#utility.yul\":8796:8801 */\n 0x00\n /* \"#utility.yul\":8845:8848 */\n dup3\n /* \"#utility.yul\":8838:8842 */\n 0x1f\n /* \"#utility.yul\":8830:8836 */\n dup4\n /* \"#utility.yul\":8826:8843 */\n add\n /* \"#utility.yul\":8822:8849 */\n slt\n /* \"#utility.yul\":8812:8934 */\n tag_382\n jumpi\n /* \"#utility.yul\":8853:8932 */\n tag_383\n tag_258\n jump\t// in\n tag_383:\n /* \"#utility.yul\":8812:8934 */\n tag_382:\n /* \"#utility.yul\":8970:8976 */\n dup2\n /* \"#utility.yul\":8957:8977 */\n calldataload\n /* \"#utility.yul\":8995:9073 */\n tag_384\n /* \"#utility.yul\":9069:9072 */\n dup5\n /* \"#utility.yul\":9061:9067 */\n dup3\n /* \"#utility.yul\":9054:9058 */\n 0x20\n /* \"#utility.yul\":9046:9052 */\n dup7\n /* \"#utility.yul\":9042:9059 */\n add\n /* \"#utility.yul\":8995:9073 */\n tag_264\n jump\t// in\n tag_384:\n /* \"#utility.yul\":8986:9073 */\n swap2\n pop\n /* \"#utility.yul\":8802:9079 */\n pop\n /* \"#utility.yul\":8741:9079 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":9085:10028 */\n tag_69:\n /* \"#utility.yul\":9180:9186 */\n 0x00\n /* \"#utility.yul\":9188:9194 */\n dup1\n /* \"#utility.yul\":9196:9202 */\n 0x00\n /* \"#utility.yul\":9204:9210 */\n dup1\n /* \"#utility.yul\":9253:9256 */\n 0x80\n /* \"#utility.yul\":9241:9250 */\n dup6\n /* \"#utility.yul\":9232:9239 */\n dup8\n /* \"#utility.yul\":9228:9251 */\n sub\n /* \"#utility.yul\":9224:9257 */\n slt\n /* \"#utility.yul\":9221:9341 */\n iszero\n tag_386\n jumpi\n /* \"#utility.yul\":9260:9339 */\n tag_387\n tag_235\n jump\t// in\n tag_387:\n /* \"#utility.yul\":9221:9341 */\n tag_386:\n /* \"#utility.yul\":9380:9381 */\n 0x00\n /* \"#utility.yul\":9405:9458 */\n tag_388\n /* \"#utility.yul\":9450:9457 */\n dup8\n /* \"#utility.yul\":9441:9447 */\n dup3\n /* \"#utility.yul\":9430:9439 */\n dup9\n /* \"#utility.yul\":9426:9448 */\n add\n /* \"#utility.yul\":9405:9458 */\n tag_254\n jump\t// in\n tag_388:\n /* \"#utility.yul\":9395:9458 */\n swap5\n pop\n /* \"#utility.yul\":9351:9468 */\n pop\n /* \"#utility.yul\":9507:9509 */\n 0x20\n /* \"#utility.yul\":9533:9586 */\n tag_389\n /* \"#utility.yul\":9578:9585 */\n dup8\n /* \"#utility.yul\":9569:9575 */\n dup3\n /* \"#utility.yul\":9558:9567 */\n dup9\n /* \"#utility.yul\":9554:9576 */\n add\n /* \"#utility.yul\":9533:9586 */\n tag_254\n jump\t// in\n tag_389:\n /* \"#utility.yul\":9523:9586 */\n swap4\n pop\n /* \"#utility.yul\":9478:9596 */\n pop\n /* \"#utility.yul\":9635:9637 */\n 0x40\n /* \"#utility.yul\":9661:9714 */\n tag_390\n /* \"#utility.yul\":9706:9713 */\n dup8\n /* \"#utility.yul\":9697:9703 */\n dup3\n /* \"#utility.yul\":9686:9695 */\n dup9\n /* \"#utility.yul\":9682:9704 */\n add\n /* \"#utility.yul\":9661:9714 */\n tag_249\n jump\t// in\n tag_390:\n /* \"#utility.yul\":9651:9714 */\n swap3\n pop\n /* \"#utility.yul\":9606:9724 */\n pop\n /* \"#utility.yul\":9791:9793 */\n 0x60\n /* \"#utility.yul\":9780:9789 */\n dup6\n /* \"#utility.yul\":9776:9794 */\n add\n /* \"#utility.yul\":9763:9795 */\n calldataload\n /* \"#utility.yul\":9822:9840 */\n 0xffffffffffffffff\n /* \"#utility.yul\":9814:9820 */\n dup2\n /* \"#utility.yul\":9811:9841 */\n gt\n /* \"#utility.yul\":9808:9925 */\n iszero\n tag_391\n jumpi\n /* \"#utility.yul\":9844:9923 */\n tag_392\n tag_236\n jump\t// in\n tag_392:\n /* \"#utility.yul\":9808:9925 */\n tag_391:\n /* \"#utility.yul\":9949:10011 */\n tag_393\n /* \"#utility.yul\":10003:10010 */\n dup8\n /* \"#utility.yul\":9994:10000 */\n dup3\n /* \"#utility.yul\":9983:9992 */\n dup9\n /* \"#utility.yul\":9979:10001 */\n add\n /* \"#utility.yul\":9949:10011 */\n tag_265\n jump\t// in\n tag_393:\n /* \"#utility.yul\":9939:10011 */\n swap2\n pop\n /* \"#utility.yul\":9734:10021 */\n pop\n /* \"#utility.yul\":9085:10028 */\n swap3\n swap6\n swap2\n swap5\n pop\n swap3\n pop\n jump\t// out\n /* \"#utility.yul\":10034:10508 */\n tag_77:\n /* \"#utility.yul\":10102:10108 */\n 0x00\n /* \"#utility.yul\":10110:10116 */\n dup1\n /* \"#utility.yul\":10159:10161 */\n 0x40\n /* \"#utility.yul\":10147:10156 */\n dup4\n /* \"#utility.yul\":10138:10145 */\n dup6\n /* \"#utility.yul\":10134:10157 */\n sub\n /* \"#utility.yul\":10130:10162 */\n slt\n /* \"#utility.yul\":10127:10246 */\n iszero\n tag_395\n jumpi\n /* \"#utility.yul\":10165:10244 */\n tag_396\n tag_235\n jump\t// in\n tag_396:\n /* \"#utility.yul\":10127:10246 */\n tag_395:\n /* \"#utility.yul\":10285:10286 */\n 0x00\n /* \"#utility.yul\":10310:10363 */\n tag_397\n /* \"#utility.yul\":10355:10362 */\n dup6\n /* \"#utility.yul\":10346:10352 */\n dup3\n /* \"#utility.yul\":10335:10344 */\n dup7\n /* \"#utility.yul\":10331:10353 */\n add\n /* \"#utility.yul\":10310:10363 */\n tag_254\n jump\t// in\n tag_397:\n /* \"#utility.yul\":10300:10363 */\n swap3\n pop\n /* \"#utility.yul\":10256:10373 */\n pop\n /* \"#utility.yul\":10412:10414 */\n 0x20\n /* \"#utility.yul\":10438:10491 */\n tag_398\n /* \"#utility.yul\":10483:10490 */\n dup6\n /* \"#utility.yul\":10474:10480 */\n dup3\n /* \"#utility.yul\":10463:10472 */\n dup7\n /* \"#utility.yul\":10459:10481 */\n add\n /* \"#utility.yul\":10438:10491 */\n tag_254\n jump\t// in\n tag_398:\n /* \"#utility.yul\":10428:10491 */\n swap2\n pop\n /* \"#utility.yul\":10383:10501 */\n pop\n /* \"#utility.yul\":10034:10508 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":10514:10694 */\n tag_266:\n /* \"#utility.yul\":10562:10639 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":10559:10560 */\n 0x00\n /* \"#utility.yul\":10552:10640 */\n mstore\n /* \"#utility.yul\":10659:10663 */\n 0x22\n /* \"#utility.yul\":10656:10657 */\n 0x04\n /* \"#utility.yul\":10649:10664 */\n mstore\n /* \"#utility.yul\":10683:10687 */\n 0x24\n /* \"#utility.yul\":10680:10681 */\n 0x00\n /* \"#utility.yul\":10673:10688 */\n revert\n /* \"#utility.yul\":10700:11020 */\n tag_87:\n /* \"#utility.yul\":10744:10750 */\n 0x00\n /* \"#utility.yul\":10781:10782 */\n 0x02\n /* \"#utility.yul\":10775:10779 */\n dup3\n /* \"#utility.yul\":10771:10783 */\n div\n /* \"#utility.yul\":10761:10783 */\n swap1\n pop\n /* \"#utility.yul\":10828:10829 */\n 0x01\n /* \"#utility.yul\":10822:10826 */\n dup3\n /* \"#utility.yul\":10818:10830 */\n and\n /* \"#utility.yul\":10849:10867 */\n dup1\n /* \"#utility.yul\":10839:10920 */\n tag_401\n jumpi\n /* \"#utility.yul\":10905:10909 */\n 0x7f\n /* \"#utility.yul\":10897:10903 */\n dup3\n /* \"#utility.yul\":10893:10910 */\n and\n /* \"#utility.yul\":10883:10910 */\n swap2\n pop\n /* \"#utility.yul\":10839:10920 */\n tag_401:\n /* \"#utility.yul\":10967:10969 */\n 0x20\n /* \"#utility.yul\":10959:10965 */\n dup3\n /* \"#utility.yul\":10956:10970 */\n lt\n /* \"#utility.yul\":10936:10954 */\n dup2\n /* \"#utility.yul\":10933:10971 */\n sub\n /* \"#utility.yul\":10930:11014 */\n tag_402\n jumpi\n /* \"#utility.yul\":10986:11004 */\n tag_403\n tag_266\n jump\t// in\n tag_403:\n /* \"#utility.yul\":10930:11014 */\n tag_402:\n /* \"#utility.yul\":10751:11020 */\n pop\n /* \"#utility.yul\":10700:11020 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":11026:11174 */\n tag_267:\n /* \"#utility.yul\":11128:11139 */\n 0x00\n /* \"#utility.yul\":11165:11168 */\n dup2\n /* \"#utility.yul\":11150:11168 */\n swap1\n pop\n /* \"#utility.yul\":11026:11174 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":11180:11557 */\n tag_268:\n /* \"#utility.yul\":11286:11289 */\n 0x00\n /* \"#utility.yul\":11314:11353 */\n tag_406\n /* \"#utility.yul\":11347:11352 */\n dup3\n /* \"#utility.yul\":11314:11353 */\n tag_242\n jump\t// in\n tag_406:\n /* \"#utility.yul\":11369:11458 */\n tag_407\n /* \"#utility.yul\":11451:11457 */\n dup2\n /* \"#utility.yul\":11446:11449 */\n dup6\n /* \"#utility.yul\":11369:11458 */\n tag_267\n jump\t// in\n tag_407:\n /* \"#utility.yul\":11362:11458 */\n swap4\n pop\n /* \"#utility.yul\":11467:11519 */\n tag_408\n /* \"#utility.yul\":11512:11518 */\n dup2\n /* \"#utility.yul\":11507:11510 */\n dup6\n /* \"#utility.yul\":11500:11504 */\n 0x20\n /* \"#utility.yul\":11493:11498 */\n dup7\n /* \"#utility.yul\":11489:11505 */\n add\n /* \"#utility.yul\":11467:11519 */\n tag_244\n jump\t// in\n tag_408:\n /* \"#utility.yul\":11544:11550 */\n dup1\n /* \"#utility.yul\":11539:11542 */\n dup5\n /* \"#utility.yul\":11535:11551 */\n add\n /* \"#utility.yul\":11528:11551 */\n swap2\n pop\n /* \"#utility.yul\":11290:11557 */\n pop\n /* \"#utility.yul\":11180:11557 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":11563:11998 */\n tag_150:\n /* \"#utility.yul\":11743:11746 */\n 0x00\n /* \"#utility.yul\":11765:11860 */\n tag_410\n /* \"#utility.yul\":11856:11859 */\n dup3\n /* \"#utility.yul\":11847:11853 */\n dup6\n /* \"#utility.yul\":11765:11860 */\n tag_268\n jump\t// in\n tag_410:\n /* \"#utility.yul\":11758:11860 */\n swap2\n pop\n /* \"#utility.yul\":11877:11972 */\n tag_411\n /* \"#utility.yul\":11968:11971 */\n dup3\n /* \"#utility.yul\":11959:11965 */\n dup5\n /* \"#utility.yul\":11877:11972 */\n tag_268\n jump\t// in\n tag_411:\n /* \"#utility.yul\":11870:11972 */\n swap2\n pop\n /* \"#utility.yul\":11989:11992 */\n dup2\n /* \"#utility.yul\":11982:11992 */\n swap1\n pop\n /* \"#utility.yul\":11563:11998 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":12004:12102 */\n tag_269:\n /* \"#utility.yul\":12055:12061 */\n 0x00\n /* \"#utility.yul\":12089:12094 */\n dup2\n /* \"#utility.yul\":12083:12095 */\n mload\n /* \"#utility.yul\":12073:12095 */\n swap1\n pop\n /* \"#utility.yul\":12004:12102 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":12108:12276 */\n tag_270:\n /* \"#utility.yul\":12191:12202 */\n 0x00\n /* \"#utility.yul\":12225:12231 */\n dup3\n /* \"#utility.yul\":12220:12223 */\n dup3\n /* \"#utility.yul\":12213:12232 */\n mstore\n /* \"#utility.yul\":12265:12269 */\n 0x20\n /* \"#utility.yul\":12260:12263 */\n dup3\n /* \"#utility.yul\":12256:12270 */\n add\n /* \"#utility.yul\":12241:12270 */\n swap1\n pop\n /* \"#utility.yul\":12108:12276 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":12282:12642 */\n tag_271:\n /* \"#utility.yul\":12368:12371 */\n 0x00\n /* \"#utility.yul\":12396:12434 */\n tag_415\n /* \"#utility.yul\":12428:12433 */\n dup3\n /* \"#utility.yul\":12396:12434 */\n tag_269\n jump\t// in\n tag_415:\n /* \"#utility.yul\":12450:12520 */\n tag_416\n /* \"#utility.yul\":12513:12519 */\n dup2\n /* \"#utility.yul\":12508:12511 */\n dup6\n /* \"#utility.yul\":12450:12520 */\n tag_270\n jump\t// in\n tag_416:\n /* \"#utility.yul\":12443:12520 */\n swap4\n pop\n /* \"#utility.yul\":12529:12581 */\n tag_417\n /* \"#utility.yul\":12574:12580 */\n dup2\n /* \"#utility.yul\":12569:12572 */\n dup6\n /* \"#utility.yul\":12562:12566 */\n 0x20\n /* \"#utility.yul\":12555:12560 */\n dup7\n /* \"#utility.yul\":12551:12567 */\n add\n /* \"#utility.yul\":12529:12581 */\n tag_244\n jump\t// in\n tag_417:\n /* \"#utility.yul\":12606:12635 */\n tag_418\n /* \"#utility.yul\":12628:12634 */\n dup2\n /* \"#utility.yul\":12606:12635 */\n tag_245\n jump\t// in\n tag_418:\n /* \"#utility.yul\":12601:12604 */\n dup5\n /* \"#utility.yul\":12597:12636 */\n add\n /* \"#utility.yul\":12590:12636 */\n swap2\n pop\n /* \"#utility.yul\":12372:12642 */\n pop\n /* \"#utility.yul\":12282:12642 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":12648:13288 */\n tag_194:\n /* \"#utility.yul\":12843:12847 */\n 0x00\n /* \"#utility.yul\":12881:12884 */\n 0x80\n /* \"#utility.yul\":12870:12879 */\n dup3\n /* \"#utility.yul\":12866:12885 */\n add\n /* \"#utility.yul\":12858:12885 */\n swap1\n pop\n /* \"#utility.yul\":12895:12966 */\n tag_420\n /* \"#utility.yul\":12963:12964 */\n 0x00\n /* \"#utility.yul\":12952:12961 */\n dup4\n /* \"#utility.yul\":12948:12965 */\n add\n /* \"#utility.yul\":12939:12945 */\n dup8\n /* \"#utility.yul\":12895:12966 */\n tag_252\n jump\t// in\n tag_420:\n /* \"#utility.yul\":12976:13048 */\n tag_421\n /* \"#utility.yul\":13044:13046 */\n 0x20\n /* \"#utility.yul\":13033:13042 */\n dup4\n /* \"#utility.yul\":13029:13047 */\n add\n /* \"#utility.yul\":13020:13026 */\n dup7\n /* \"#utility.yul\":12976:13048 */\n tag_252\n jump\t// in\n tag_421:\n /* \"#utility.yul\":13058:13130 */\n tag_422\n /* \"#utility.yul\":13126:13128 */\n 0x40\n /* \"#utility.yul\":13115:13124 */\n dup4\n /* \"#utility.yul\":13111:13129 */\n add\n /* \"#utility.yul\":13102:13108 */\n dup6\n /* \"#utility.yul\":13058:13130 */\n tag_255\n jump\t// in\n tag_422:\n /* \"#utility.yul\":13177:13186 */\n dup2\n /* \"#utility.yul\":13171:13175 */\n dup2\n /* \"#utility.yul\":13167:13187 */\n sub\n /* \"#utility.yul\":13162:13164 */\n 0x60\n /* \"#utility.yul\":13151:13160 */\n dup4\n /* \"#utility.yul\":13147:13165 */\n add\n /* \"#utility.yul\":13140:13188 */\n mstore\n /* \"#utility.yul\":13205:13281 */\n tag_423\n /* \"#utility.yul\":13276:13280 */\n dup2\n /* \"#utility.yul\":13267:13273 */\n dup5\n /* \"#utility.yul\":13205:13281 */\n tag_271\n jump\t// in\n tag_423:\n /* \"#utility.yul\":13197:13281 */\n swap1\n pop\n /* \"#utility.yul\":12648:13288 */\n swap6\n swap5\n pop\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":13294:13435 */\n tag_272:\n /* \"#utility.yul\":13350:13355 */\n 0x00\n /* \"#utility.yul\":13381:13387 */\n dup2\n /* \"#utility.yul\":13375:13388 */\n mload\n /* \"#utility.yul\":13366:13388 */\n swap1\n pop\n /* \"#utility.yul\":13397:13429 */\n tag_425\n /* \"#utility.yul\":13423:13428 */\n dup2\n /* \"#utility.yul\":13397:13429 */\n tag_238\n jump\t// in\n tag_425:\n /* \"#utility.yul\":13294:13435 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":13441:13790 */\n tag_197:\n /* \"#utility.yul\":13510:13516 */\n 0x00\n /* \"#utility.yul\":13559:13561 */\n 0x20\n /* \"#utility.yul\":13547:13556 */\n dup3\n /* \"#utility.yul\":13538:13545 */\n dup5\n /* \"#utility.yul\":13534:13557 */\n sub\n /* \"#utility.yul\":13530:13562 */\n slt\n /* \"#utility.yul\":13527:13646 */\n iszero\n tag_427\n jumpi\n /* \"#utility.yul\":13565:13644 */\n tag_428\n tag_235\n jump\t// in\n tag_428:\n /* \"#utility.yul\":13527:13646 */\n tag_427:\n /* \"#utility.yul\":13685:13686 */\n 0x00\n /* \"#utility.yul\":13710:13773 */\n tag_429\n /* \"#utility.yul\":13765:13772 */\n dup5\n /* \"#utility.yul\":13756:13762 */\n dup3\n /* \"#utility.yul\":13745:13754 */\n dup6\n /* \"#utility.yul\":13741:13763 */\n add\n /* \"#utility.yul\":13710:13773 */\n tag_272\n jump\t// in\n tag_429:\n /* \"#utility.yul\":13700:13773 */\n swap2\n pop\n /* \"#utility.yul\":13656:13783 */\n pop\n /* \"#utility.yul\":13441:13790 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":13796:13976 */\n tag_273:\n /* \"#utility.yul\":13844:13921 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":13841:13842 */\n 0x00\n /* \"#utility.yul\":13834:13922 */\n mstore\n /* \"#utility.yul\":13941:13945 */\n 0x11\n /* \"#utility.yul\":13938:13939 */\n 0x04\n /* \"#utility.yul\":13931:13946 */\n mstore\n /* \"#utility.yul\":13965:13969 */\n 0x24\n /* \"#utility.yul\":13962:13963 */\n 0x00\n /* \"#utility.yul\":13955:13970 */\n revert\n /* \"#utility.yul\":13982:14215 */\n tag_213:\n /* \"#utility.yul\":14021:14024 */\n 0x00\n /* \"#utility.yul\":14044:14068 */\n tag_432\n /* \"#utility.yul\":14062:14067 */\n dup3\n /* \"#utility.yul\":14044:14068 */\n tag_247\n jump\t// in\n tag_432:\n /* \"#utility.yul\":14035:14068 */\n swap2\n pop\n /* \"#utility.yul\":14090:14156 */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":14083:14088 */\n dup3\n /* \"#utility.yul\":14080:14157 */\n sub\n /* \"#utility.yul\":14077:14180 */\n tag_433\n jumpi\n /* \"#utility.yul\":14160:14178 */\n tag_434\n tag_273\n jump\t// in\n tag_434:\n /* \"#utility.yul\":14077:14180 */\n tag_433:\n /* \"#utility.yul\":14207:14208 */\n 0x01\n /* \"#utility.yul\":14200:14205 */\n dup3\n /* \"#utility.yul\":14196:14209 */\n add\n /* \"#utility.yul\":14189:14209 */\n swap1\n pop\n /* \"#utility.yul\":13982:14215 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":14221:14401 */\n tag_274:\n /* \"#utility.yul\":14269:14346 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":14266:14267 */\n 0x00\n /* \"#utility.yul\":14259:14347 */\n mstore\n /* \"#utility.yul\":14366:14370 */\n 0x12\n /* \"#utility.yul\":14363:14364 */\n 0x04\n /* \"#utility.yul\":14356:14371 */\n mstore\n /* \"#utility.yul\":14390:14394 */\n 0x24\n /* \"#utility.yul\":14387:14388 */\n 0x00\n /* \"#utility.yul\":14380:14395 */\n revert\n /* \"#utility.yul\":14407:14592 */\n tag_215:\n /* \"#utility.yul\":14447:14448 */\n 0x00\n /* \"#utility.yul\":14464:14484 */\n tag_437\n /* \"#utility.yul\":14482:14483 */\n dup3\n /* \"#utility.yul\":14464:14484 */\n tag_247\n jump\t// in\n tag_437:\n /* \"#utility.yul\":14459:14484 */\n swap2\n pop\n /* \"#utility.yul\":14498:14518 */\n tag_438\n /* \"#utility.yul\":14516:14517 */\n dup4\n /* \"#utility.yul\":14498:14518 */\n tag_247\n jump\t// in\n tag_438:\n /* \"#utility.yul\":14493:14518 */\n swap3\n pop\n /* \"#utility.yul\":14537:14538 */\n dup3\n /* \"#utility.yul\":14527:14562 */\n tag_439\n jumpi\n /* \"#utility.yul\":14542:14560 */\n tag_440\n tag_274\n jump\t// in\n tag_440:\n /* \"#utility.yul\":14527:14562 */\n tag_439:\n /* \"#utility.yul\":14584:14585 */\n dup3\n /* \"#utility.yul\":14581:14582 */\n dup3\n /* \"#utility.yul\":14577:14586 */\n div\n /* \"#utility.yul\":14572:14586 */\n swap1\n pop\n /* \"#utility.yul\":14407:14592 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":14598:14789 */\n tag_223:\n /* \"#utility.yul\":14638:14642 */\n 0x00\n /* \"#utility.yul\":14658:14678 */\n tag_442\n /* \"#utility.yul\":14676:14677 */\n dup3\n /* \"#utility.yul\":14658:14678 */\n tag_247\n jump\t// in\n tag_442:\n /* \"#utility.yul\":14653:14678 */\n swap2\n pop\n /* \"#utility.yul\":14692:14712 */\n tag_443\n /* \"#utility.yul\":14710:14711 */\n dup4\n /* \"#utility.yul\":14692:14712 */\n tag_247\n jump\t// in\n tag_443:\n /* \"#utility.yul\":14687:14712 */\n swap3\n pop\n /* \"#utility.yul\":14731:14732 */\n dup3\n /* \"#utility.yul\":14728:14729 */\n dup3\n /* \"#utility.yul\":14725:14733 */\n lt\n /* \"#utility.yul\":14722:14756 */\n iszero\n tag_444\n jumpi\n /* \"#utility.yul\":14736:14754 */\n tag_445\n tag_273\n jump\t// in\n tag_445:\n /* \"#utility.yul\":14722:14756 */\n tag_444:\n /* \"#utility.yul\":14781:14782 */\n dup3\n /* \"#utility.yul\":14778:14779 */\n dup3\n /* \"#utility.yul\":14774:14783 */\n sub\n /* \"#utility.yul\":14766:14783 */\n swap1\n pop\n /* \"#utility.yul\":14598:14789 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":14795:14971 */\n tag_225:\n /* \"#utility.yul\":14827:14828 */\n 0x00\n /* \"#utility.yul\":14844:14864 */\n tag_447\n /* \"#utility.yul\":14862:14863 */\n dup3\n /* \"#utility.yul\":14844:14864 */\n tag_247\n jump\t// in\n tag_447:\n /* \"#utility.yul\":14839:14864 */\n swap2\n pop\n /* \"#utility.yul\":14878:14898 */\n tag_448\n /* \"#utility.yul\":14896:14897 */\n dup4\n /* \"#utility.yul\":14878:14898 */\n tag_247\n jump\t// in\n tag_448:\n /* \"#utility.yul\":14873:14898 */\n swap3\n pop\n /* \"#utility.yul\":14917:14918 */\n dup3\n /* \"#utility.yul\":14907:14942 */\n tag_449\n jumpi\n /* \"#utility.yul\":14922:14940 */\n tag_450\n tag_274\n jump\t// in\n tag_450:\n /* \"#utility.yul\":14907:14942 */\n tag_449:\n /* \"#utility.yul\":14963:14964 */\n dup3\n /* \"#utility.yul\":14960:14961 */\n dup3\n /* \"#utility.yul\":14956:14965 */\n mod\n /* \"#utility.yul\":14951:14965 */\n swap1\n pop\n /* \"#utility.yul\":14795:14971 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":14977:15282 */\n tag_227:\n /* \"#utility.yul\":15017:15020 */\n 0x00\n /* \"#utility.yul\":15036:15056 */\n tag_452\n /* \"#utility.yul\":15054:15055 */\n dup3\n /* \"#utility.yul\":15036:15056 */\n tag_247\n jump\t// in\n tag_452:\n /* \"#utility.yul\":15031:15056 */\n swap2\n pop\n /* \"#utility.yul\":15070:15090 */\n tag_453\n /* \"#utility.yul\":15088:15089 */\n dup4\n /* \"#utility.yul\":15070:15090 */\n tag_247\n jump\t// in\n tag_453:\n /* \"#utility.yul\":15065:15090 */\n swap3\n pop\n /* \"#utility.yul\":15224:15225 */\n dup3\n /* \"#utility.yul\":15156:15222 */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":15152:15226 */\n sub\n /* \"#utility.yul\":15149:15150 */\n dup3\n /* \"#utility.yul\":15146:15227 */\n gt\n /* \"#utility.yul\":15143:15250 */\n iszero\n tag_454\n jumpi\n /* \"#utility.yul\":15230:15248 */\n tag_455\n tag_273\n jump\t// in\n tag_455:\n /* \"#utility.yul\":15143:15250 */\n tag_454:\n /* \"#utility.yul\":15274:15275 */\n dup3\n /* \"#utility.yul\":15271:15272 */\n dup3\n /* \"#utility.yul\":15267:15276 */\n add\n /* \"#utility.yul\":15260:15276 */\n swap1\n pop\n /* \"#utility.yul\":14977:15282 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":15288:15468 */\n tag_230:\n /* \"#utility.yul\":15336:15413 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":15333:15334 */\n 0x00\n /* \"#utility.yul\":15326:15414 */\n mstore\n /* \"#utility.yul\":15433:15437 */\n 0x32\n /* \"#utility.yul\":15430:15431 */\n 0x04\n /* \"#utility.yul\":15423:15438 */\n mstore\n /* \"#utility.yul\":15457:15461 */\n 0x24\n /* \"#utility.yul\":15454:15455 */\n 0x00\n /* \"#utility.yul\":15447:15462 */\n revert\n\n auxdata: 0xa2646970667358221220cd37112b23c6e71b71e13c577ae0b4899d7337eba41e403b3c418339bf6fc6d364736f6c634300080d0033\n}\n",
"bytecode": {
"functionDebugData": {
"@_1856": {
"entryPoint": null,
"id": 1856,
"parameterSlots": 2,
"returnSlots": 0
},
"@_startTokenId_1865": {
"entryPoint": 135,
"id": 1865,
"parameterSlots": 0,
"returnSlots": 1
},
"abi_decode_available_length_t_string_memory_ptr_fromMemory": {
"entryPoint": 603,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr_fromMemory": {
"entryPoint": 678,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory": {
"entryPoint": 729,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"allocate_memory": {
"entryPoint": 464,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 316,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 495,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_memory_to_memory": {
"entryPoint": 549,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 909,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 410,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 862,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 363,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 336,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 341,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 331,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 326,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 346,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:4093:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:1"
},
"nodeType": "YulFunctionCall",
"src": "67:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:1",
"type": ""
}
],
"src": "7:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:1"
},
"nodeType": "YulFunctionCall",
"src": "187:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:1"
},
"nodeType": "YulFunctionCall",
"src": "310:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "423:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "440:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "443:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "433:6:1"
},
"nodeType": "YulFunctionCall",
"src": "433:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "433:12:1"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "334:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "546:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "563:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "566:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "556:6:1"
},
"nodeType": "YulFunctionCall",
"src": "556:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "556:12:1"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "457:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "628:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "638:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "656:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "663:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "652:3:1"
},
"nodeType": "YulFunctionCall",
"src": "652:14:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "672:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "668:3:1"
},
"nodeType": "YulFunctionCall",
"src": "668:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "648:3:1"
},
"nodeType": "YulFunctionCall",
"src": "648:28:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "638:6:1"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "611:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "621:6:1",
"type": ""
}
],
"src": "580:102:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "716:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "733:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "736:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "726:6:1"
},
"nodeType": "YulFunctionCall",
"src": "726:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "726:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "830:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "833:4:1",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "823:6:1"
},
"nodeType": "YulFunctionCall",
"src": "823:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "823:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "854:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "857:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "847:6:1"
},
"nodeType": "YulFunctionCall",
"src": "847:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "847:15:1"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "688:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "917:238:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "927:58:1",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "949:6:1"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "979:4:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "957:21:1"
},
"nodeType": "YulFunctionCall",
"src": "957:27:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "945:3:1"
},
"nodeType": "YulFunctionCall",
"src": "945:40:1"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "931:10:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1096:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1098:16:1"
},
"nodeType": "YulFunctionCall",
"src": "1098:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "1098:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1039:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1051:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1036:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1036:34:1"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1075:10:1"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1087:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1072:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1072:22:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "1033:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1033:62:1"
},
"nodeType": "YulIf",
"src": "1030:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1134:2:1",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1138:10:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1127:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1127:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "1127:22:1"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "903:6:1",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "911:4:1",
"type": ""
}
],
"src": "874:281:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1202:88:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1212:30:1",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "1222:18:1"
},
"nodeType": "YulFunctionCall",
"src": "1222:20:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1212:6:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1271:6:1"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1279:4:1"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "1251:19:1"
},
"nodeType": "YulFunctionCall",
"src": "1251:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "1251:33:1"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1186:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1195:6:1",
"type": ""
}
],
"src": "1161:129:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1363:241:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1468:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1470:16:1"
},
"nodeType": "YulFunctionCall",
"src": "1470:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "1470:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1440:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1448:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1437:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1437:30:1"
},
"nodeType": "YulIf",
"src": "1434:56:1"
},
{
"nodeType": "YulAssignment",
"src": "1500:37:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1530:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "1508:21:1"
},
"nodeType": "YulFunctionCall",
"src": "1508:29:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1500:4:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1574:23:1",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1586:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1592:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1582:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1582:15:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1574:4:1"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1347:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1358:4:1",
"type": ""
}
],
"src": "1296:308:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1659:258:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1669:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1678:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "1673:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1738:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1763:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1768:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1759:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1759:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1782:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1787:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1778:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1778:11:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1772:5:1"
},
"nodeType": "YulFunctionCall",
"src": "1772:18:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1752:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1752:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "1752:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1699:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1702:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1696:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1696:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "1710:19:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1712:15:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1721:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1724:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1717:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1717:10:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1712:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "1692:3:1",
"statements": []
},
"src": "1688:113:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1835:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1885:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1890:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1881:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1881:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1899:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1874:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1874:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "1874:27:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1816:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1819:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1813:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1813:13:1"
},
"nodeType": "YulIf",
"src": "1810:101:1"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1641:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1646:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1651:6:1",
"type": ""
}
],
"src": "1610:307:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2018:326:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2028:75:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2095:6:1"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2053:41:1"
},
"nodeType": "YulFunctionCall",
"src": "2053:49:1"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "2037:15:1"
},
"nodeType": "YulFunctionCall",
"src": "2037:66:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2028:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2119:5:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2126:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2112:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2112:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "2112:21:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2142:27:1",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2157:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2164:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2153:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2153:16:1"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "2146:3:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2207:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "2209:77:1"
},
"nodeType": "YulFunctionCall",
"src": "2209:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "2209:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2188:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2193:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2184:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2184:16:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2202:3:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2181:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2181:25:1"
},
"nodeType": "YulIf",
"src": "2178:112:1"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2321:3:1"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2326:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2331:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "2299:21:1"
},
"nodeType": "YulFunctionCall",
"src": "2299:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "2299:39:1"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1991:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1996:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2004:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2012:5:1",
"type": ""
}
],
"src": "1923:421:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2437:282:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2486:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "2488:77:1"
},
"nodeType": "YulFunctionCall",
"src": "2488:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "2488:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2465:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2473:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2461:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2461:17:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2480:3:1"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2457:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2457:27:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2450:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2450:35:1"
},
"nodeType": "YulIf",
"src": "2447:122:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2578:27:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2598:6:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2592:5:1"
},
"nodeType": "YulFunctionCall",
"src": "2592:13:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2582:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2614:99:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2686:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2694:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2682:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2682:17:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2701:6:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2709:3:1"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "2623:58:1"
},
"nodeType": "YulFunctionCall",
"src": "2623:90:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2614:5:1"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2415:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2423:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2431:5:1",
"type": ""
}
],
"src": "2364:355:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2839:739:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2885:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2887:77:1"
},
"nodeType": "YulFunctionCall",
"src": "2887:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "2887:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2860:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2869:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2856:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2856:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2881:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2852:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2852:32:1"
},
"nodeType": "YulIf",
"src": "2849:119:1"
},
{
"nodeType": "YulBlock",
"src": "2978:291:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2993:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3017:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3028:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3013:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3013:17:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3007:5:1"
},
"nodeType": "YulFunctionCall",
"src": "3007:24:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2997:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3078:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "3080:77:1"
},
"nodeType": "YulFunctionCall",
"src": "3080:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "3080:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3050:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3058:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3047:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3047:30:1"
},
"nodeType": "YulIf",
"src": "3044:117:1"
},
{
"nodeType": "YulAssignment",
"src": "3175:84:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3231:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3242:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3227:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3227:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3251:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "3185:41:1"
},
"nodeType": "YulFunctionCall",
"src": "3185:74:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3175:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3279:292:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3294:39:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3318:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3329:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3314:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3314:18:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3308:5:1"
},
"nodeType": "YulFunctionCall",
"src": "3308:25:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3298:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3380:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "3382:77:1"
},
"nodeType": "YulFunctionCall",
"src": "3382:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "3382:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3352:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3360:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3349:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3349:30:1"
},
"nodeType": "YulIf",
"src": "3346:117:1"
},
{
"nodeType": "YulAssignment",
"src": "3477:84:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3533:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3544:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3529:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3529:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3553:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "3487:41:1"
},
"nodeType": "YulFunctionCall",
"src": "3487:74:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3477:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2801:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2812:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2824:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2832:6:1",
"type": ""
}
],
"src": "2725:853:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3612:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3629:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3632:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3622:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3622:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "3622:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3726:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3729:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3719:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3719:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "3719:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3750:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3753:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3743:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3743:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "3743:15:1"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "3584:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3821:269:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3831:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3845:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3851:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "3841:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3841:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3831:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "3862:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3892:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3898:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3888:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3888:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "3866:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3939:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3953:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3967:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3975:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3963:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3963:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3953:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "3919:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3912:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3912:26:1"
},
"nodeType": "YulIf",
"src": "3909:81:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4042:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "4056:16:1"
},
"nodeType": "YulFunctionCall",
"src": "4056:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "4056:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "4006:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4029:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4037:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4026:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4026:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "4003:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4003:38:1"
},
"nodeType": "YulIf",
"src": "4000:84:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "3805:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3814:6:1",
"type": ""
}
],
"src": "3770:320:1"
}
]
},
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function 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_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function abi_decode_available_length_t_string_memory_ptr_fromMemory(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_memory_to_memory(src, dst, length)\n }\n\n // string\n function abi_decode_t_string_memory_ptr_fromMemory(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := mload(offset)\n array := abi_decode_available_length_t_string_memory_ptr_fromMemory(add(offset, 0x20), length, end)\n }\n\n function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := mload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := mload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value1 := abi_decode_t_string_memory_ptr_fromMemory(add(headStart, offset), dataEnd)\n }\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}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b50604051620023f4380380620023f48339818101604052810190620000379190620002d9565b81600290805190602001906200004f9291906200008c565b508060039080519060200190620000689291906200008c565b50620000796200008760201b60201c565b6000819055505050620003c2565b600090565b8280546200009a906200038d565b90600052602060002090601f016020900481019282620000be57600085556200010a565b82601f10620000d957805160ff19168380011785556200010a565b828001600101855582156200010a579182015b8281111562000109578251825591602001919060010190620000ec565b5b5090506200011991906200011d565b5090565b5b80821115620001385760008160009055506001016200011e565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620001a5826200015a565b810181811067ffffffffffffffff82111715620001c757620001c66200016b565b5b80604052505050565b6000620001dc6200013c565b9050620001ea82826200019a565b919050565b600067ffffffffffffffff8211156200020d576200020c6200016b565b5b62000218826200015a565b9050602081019050919050565b60005b838110156200024557808201518184015260208101905062000228565b8381111562000255576000848401525b50505050565b6000620002726200026c84620001ef565b620001d0565b90508281526020810184848401111562000291576200029062000155565b5b6200029e84828562000225565b509392505050565b600082601f830112620002be57620002bd62000150565b5b8151620002d08482602086016200025b565b91505092915050565b60008060408385031215620002f357620002f262000146565b5b600083015167ffffffffffffffff8111156200031457620003136200014b565b5b6200032285828601620002a6565b925050602083015167ffffffffffffffff8111156200034657620003456200014b565b5b6200035485828601620002a6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003a657607f821691505b602082108103620003bc57620003bb6200035e565b5b50919050565b61202280620003d26000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c80636352211e1161008c578063a22cb46511610066578063a22cb4651461025d578063b88d4fde14610279578063c87b56dd14610295578063e985e9c5146102c5576100ea565b80636352211e146101df57806370a082311461020f57806395d89b411461023f576100ea565b8063095ea7b3116100c8578063095ea7b31461016d57806318160ddd1461018957806323b872dd146101a757806342842e0e146101c3576100ea565b806301ffc9a7146100ef57806306fdde031461011f578063081812fc1461013d575b600080fd5b61010960048036038101906101049190611731565b6102f5565b6040516101169190611779565b60405180910390f35b6101276103d7565b604051610134919061182d565b60405180910390f35b61015760048036038101906101529190611885565b610469565b60405161016491906118f3565b60405180910390f35b6101876004803603810190610182919061193a565b6104e5565b005b6101916105ef565b60405161019e9190611989565b60405180910390f35b6101c160048036038101906101bc91906119a4565b610606565b005b6101dd60048036038101906101d891906119a4565b610616565b005b6101f960048036038101906101f49190611885565b610636565b60405161020691906118f3565b60405180910390f35b610229600480360381019061022491906119f7565b61064c565b6040516102369190611989565b60405180910390f35b61024761071b565b604051610254919061182d565b60405180910390f35b61027760048036038101906102729190611a50565b6107ad565b005b610293600480360381019061028e9190611bc5565b610924565b005b6102af60048036038101906102aa9190611885565b6109a0565b6040516102bc919061182d565b60405180910390f35b6102df60048036038101906102da9190611c48565b610a3e565b6040516102ec9190611779565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806103c057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806103d057506103cf82610ad2565b5b9050919050565b6060600280546103e690611cb7565b80601f016020809104026020016040519081016040528092919081815260200182805461041290611cb7565b801561045f5780601f106104345761010080835404028352916020019161045f565b820191906000526020600020905b81548152906001019060200180831161044257829003601f168201915b5050505050905090565b600061047482610b3c565b6104aa576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006104f082610636565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610557576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610576610b8a565b73ffffffffffffffffffffffffffffffffffffffff16141580156105a857506105a6816105a1610b8a565b610a3e565b155b156105df576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6105ea838383610b92565b505050565b60006105f9610c44565b6001546000540303905090565b610611838383610c49565b505050565b61063183838360405180602001604052806000815250610924565b505050565b6000610641826110fd565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036106b3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b60606003805461072a90611cb7565b80601f016020809104026020016040519081016040528092919081815260200182805461075690611cb7565b80156107a35780601f10610778576101008083540402835291602001916107a3565b820191906000526020600020905b81548152906001019060200180831161078657829003601f168201915b5050505050905090565b6107b5610b8a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610819576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610826610b8a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166108d3610b8a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516109189190611779565b60405180910390a35050565b61092f848484610c49565b61094e8373ffffffffffffffffffffffffffffffffffffffff1661138c565b80156109635750610961848484846113af565b155b1561099a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606109ab82610b3c565b6109e1576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006109eb6114ff565b90506000815103610a0b5760405180602001604052806000815250610a36565b80610a1584611516565b604051602001610a26929190611d24565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081610b47610c44565b11158015610b56575060005482105b8015610b83575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000610c54826110fd565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610cbf576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16610ce0610b8a565b73ffffffffffffffffffffffffffffffffffffffff161480610d0f5750610d0e85610d09610b8a565b610a3e565b5b80610d545750610d1d610b8a565b73ffffffffffffffffffffffffffffffffffffffff16610d3c84610469565b73ffffffffffffffffffffffffffffffffffffffff16145b905080610d8d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610df3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e008585856001611676565b610e0c60008487610b92565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361108b57600054821461108a57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110f6858585600161167c565b5050505050565b611105611682565b600082905080611113610c44565b11158015611122575060005481105b15611355576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161135357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611237578092505050611387565b5b60011561135257818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461134d578092505050611387565b611238565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026113d5610b8a565b8786866040518563ffffffff1660e01b81526004016113f79493929190611d9d565b6020604051808303816000875af192505050801561143357506040513d601f19601f820116820180604052508101906114309190611dfe565b60015b6114ac573d8060008114611463576040519150601f19603f3d011682016040523d82523d6000602084013e611468565b606091505b5060008151036114a4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060405180602001604052806000815250905090565b60606000820361155d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611671565b600082905060005b6000821461158f57808061157890611e5a565b915050600a826115889190611ed1565b9150611565565b60008167ffffffffffffffff8111156115ab576115aa611a9a565b5b6040519080825280601f01601f1916602001820160405280156115dd5781602001600182028036833780820191505090505b5090505b6000851461166a576001826115f69190611f02565b9150600a856116059190611f36565b60306116119190611f67565b60f81b81838151811061162757611626611fbd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856116639190611ed1565b94506115e1565b8093505050505b919050565b50505050565b50505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61170e816116d9565b811461171957600080fd5b50565b60008135905061172b81611705565b92915050565b600060208284031215611747576117466116cf565b5b60006117558482850161171c565b91505092915050565b60008115159050919050565b6117738161175e565b82525050565b600060208201905061178e600083018461176a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156117ce5780820151818401526020810190506117b3565b838111156117dd576000848401525b50505050565b6000601f19601f8301169050919050565b60006117ff82611794565b611809818561179f565b93506118198185602086016117b0565b611822816117e3565b840191505092915050565b6000602082019050818103600083015261184781846117f4565b905092915050565b6000819050919050565b6118628161184f565b811461186d57600080fd5b50565b60008135905061187f81611859565b92915050565b60006020828403121561189b5761189a6116cf565b5b60006118a984828501611870565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006118dd826118b2565b9050919050565b6118ed816118d2565b82525050565b600060208201905061190860008301846118e4565b92915050565b611917816118d2565b811461192257600080fd5b50565b6000813590506119348161190e565b92915050565b60008060408385031215611951576119506116cf565b5b600061195f85828601611925565b925050602061197085828601611870565b9150509250929050565b6119838161184f565b82525050565b600060208201905061199e600083018461197a565b92915050565b6000806000606084860312156119bd576119bc6116cf565b5b60006119cb86828701611925565b93505060206119dc86828701611925565b92505060406119ed86828701611870565b9150509250925092565b600060208284031215611a0d57611a0c6116cf565b5b6000611a1b84828501611925565b91505092915050565b611a2d8161175e565b8114611a3857600080fd5b50565b600081359050611a4a81611a24565b92915050565b60008060408385031215611a6757611a666116cf565b5b6000611a7585828601611925565b9250506020611a8685828601611a3b565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611ad2826117e3565b810181811067ffffffffffffffff82111715611af157611af0611a9a565b5b80604052505050565b6000611b046116c5565b9050611b108282611ac9565b919050565b600067ffffffffffffffff821115611b3057611b2f611a9a565b5b611b39826117e3565b9050602081019050919050565b82818337600083830152505050565b6000611b68611b6384611b15565b611afa565b905082815260208101848484011115611b8457611b83611a95565b5b611b8f848285611b46565b509392505050565b600082601f830112611bac57611bab611a90565b5b8135611bbc848260208601611b55565b91505092915050565b60008060008060808587031215611bdf57611bde6116cf565b5b6000611bed87828801611925565b9450506020611bfe87828801611925565b9350506040611c0f87828801611870565b925050606085013567ffffffffffffffff811115611c3057611c2f6116d4565b5b611c3c87828801611b97565b91505092959194509250565b60008060408385031215611c5f57611c5e6116cf565b5b6000611c6d85828601611925565b9250506020611c7e85828601611925565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611ccf57607f821691505b602082108103611ce257611ce1611c88565b5b50919050565b600081905092915050565b6000611cfe82611794565b611d088185611ce8565b9350611d188185602086016117b0565b80840191505092915050565b6000611d308285611cf3565b9150611d3c8284611cf3565b91508190509392505050565b600081519050919050565b600082825260208201905092915050565b6000611d6f82611d48565b611d798185611d53565b9350611d898185602086016117b0565b611d92816117e3565b840191505092915050565b6000608082019050611db260008301876118e4565b611dbf60208301866118e4565b611dcc604083018561197a565b8181036060830152611dde8184611d64565b905095945050505050565b600081519050611df881611705565b92915050565b600060208284031215611e1457611e136116cf565b5b6000611e2284828501611de9565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611e658261184f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611e9757611e96611e2b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611edc8261184f565b9150611ee78361184f565b925082611ef757611ef6611ea2565b5b828204905092915050565b6000611f0d8261184f565b9150611f188361184f565b925082821015611f2b57611f2a611e2b565b5b828203905092915050565b6000611f418261184f565b9150611f4c8361184f565b925082611f5c57611f5b611ea2565b5b828206905092915050565b6000611f728261184f565b9150611f7d8361184f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611fb257611fb1611e2b565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220cd37112b23c6e71b71e13c577ae0b4899d7337eba41e403b3c418339bf6fc6d364736f6c634300080d0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x23F4 CODESIZE SUB DUP1 PUSH3 0x23F4 DUP4 CODECOPY DUP2 DUP2 ADD PUSH1 0x40 MSTORE DUP2 ADD SWAP1 PUSH3 0x37 SWAP2 SWAP1 PUSH3 0x2D9 JUMP JUMPDEST DUP2 PUSH1 0x2 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x4F SWAP3 SWAP2 SWAP1 PUSH3 0x8C JUMP JUMPDEST POP DUP1 PUSH1 0x3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x68 SWAP3 SWAP2 SWAP1 PUSH3 0x8C JUMP JUMPDEST POP PUSH3 0x79 PUSH3 0x87 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 SSTORE POP POP POP PUSH3 0x3C2 JUMP JUMPDEST PUSH1 0x0 SWAP1 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x9A SWAP1 PUSH3 0x38D JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0xBE JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x10A JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0xD9 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x10A JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x10A JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x109 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0xEC JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x119 SWAP2 SWAP1 PUSH3 0x11D JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x138 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x11E JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH3 0x1A5 DUP3 PUSH3 0x15A JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH3 0x1C7 JUMPI PUSH3 0x1C6 PUSH3 0x16B JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1DC PUSH3 0x13C JUMP JUMPDEST SWAP1 POP PUSH3 0x1EA DUP3 DUP3 PUSH3 0x19A JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH3 0x20D JUMPI PUSH3 0x20C PUSH3 0x16B JUMP JUMPDEST JUMPDEST PUSH3 0x218 DUP3 PUSH3 0x15A JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0x245 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x228 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH3 0x255 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x272 PUSH3 0x26C DUP5 PUSH3 0x1EF JUMP JUMPDEST PUSH3 0x1D0 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH3 0x291 JUMPI PUSH3 0x290 PUSH3 0x155 JUMP JUMPDEST JUMPDEST PUSH3 0x29E DUP5 DUP3 DUP6 PUSH3 0x225 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x2BE JUMPI PUSH3 0x2BD PUSH3 0x150 JUMP JUMPDEST JUMPDEST DUP2 MLOAD PUSH3 0x2D0 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH3 0x25B JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x2F3 JUMPI PUSH3 0x2F2 PUSH3 0x146 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x314 JUMPI PUSH3 0x313 PUSH3 0x14B JUMP JUMPDEST JUMPDEST PUSH3 0x322 DUP6 DUP3 DUP7 ADD PUSH3 0x2A6 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x346 JUMPI PUSH3 0x345 PUSH3 0x14B JUMP JUMPDEST JUMPDEST PUSH3 0x354 DUP6 DUP3 DUP7 ADD PUSH3 0x2A6 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x3A6 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH3 0x3BC JUMPI PUSH3 0x3BB PUSH3 0x35E JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2022 DUP1 PUSH3 0x3D2 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xEA JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6352211E GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x25D JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x279 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x295 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x2C5 JUMPI PUSH2 0xEA JUMP JUMPDEST DUP1 PUSH4 0x6352211E EQ PUSH2 0x1DF JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x20F JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x23F JUMPI PUSH2 0xEA JUMP JUMPDEST DUP1 PUSH4 0x95EA7B3 GT PUSH2 0xC8 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x16D JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x189 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x1A7 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x1C3 JUMPI PUSH2 0xEA JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xEF JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x11F JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x13D JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x109 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x104 SWAP2 SWAP1 PUSH2 0x1731 JUMP JUMPDEST PUSH2 0x2F5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x116 SWAP2 SWAP1 PUSH2 0x1779 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x127 PUSH2 0x3D7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x134 SWAP2 SWAP1 PUSH2 0x182D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x157 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x152 SWAP2 SWAP1 PUSH2 0x1885 JUMP JUMPDEST PUSH2 0x469 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x164 SWAP2 SWAP1 PUSH2 0x18F3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x187 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x182 SWAP2 SWAP1 PUSH2 0x193A JUMP JUMPDEST PUSH2 0x4E5 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x191 PUSH2 0x5EF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x19E SWAP2 SWAP1 PUSH2 0x1989 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1C1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1BC SWAP2 SWAP1 PUSH2 0x19A4 JUMP JUMPDEST PUSH2 0x606 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1DD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1D8 SWAP2 SWAP1 PUSH2 0x19A4 JUMP JUMPDEST PUSH2 0x616 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1F9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1F4 SWAP2 SWAP1 PUSH2 0x1885 JUMP JUMPDEST PUSH2 0x636 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x206 SWAP2 SWAP1 PUSH2 0x18F3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x229 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x224 SWAP2 SWAP1 PUSH2 0x19F7 JUMP JUMPDEST PUSH2 0x64C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x236 SWAP2 SWAP1 PUSH2 0x1989 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x247 PUSH2 0x71B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x254 SWAP2 SWAP1 PUSH2 0x182D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x277 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x272 SWAP2 SWAP1 PUSH2 0x1A50 JUMP JUMPDEST PUSH2 0x7AD JUMP JUMPDEST STOP JUMPDEST PUSH2 0x293 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x28E SWAP2 SWAP1 PUSH2 0x1BC5 JUMP JUMPDEST PUSH2 0x924 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2AF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2AA SWAP2 SWAP1 PUSH2 0x1885 JUMP JUMPDEST PUSH2 0x9A0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2BC SWAP2 SWAP1 PUSH2 0x182D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2DF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2DA SWAP2 SWAP1 PUSH2 0x1C48 JUMP JUMPDEST PUSH2 0xA3E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2EC SWAP2 SWAP1 PUSH2 0x1779 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 PUSH32 0x80AC58CD00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x3C0 JUMPI POP PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH2 0x3D0 JUMPI POP PUSH2 0x3CF DUP3 PUSH2 0xAD2 JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x2 DUP1 SLOAD PUSH2 0x3E6 SWAP1 PUSH2 0x1CB7 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 0x412 SWAP1 PUSH2 0x1CB7 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x45F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x434 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x45F JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x442 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x474 DUP3 PUSH2 0xB3C JUMP JUMPDEST PUSH2 0x4AA JUMPI PUSH1 0x40 MLOAD PUSH32 0xCF4700E400000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x6 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4F0 DUP3 PUSH2 0x636 JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x557 JUMPI PUSH1 0x40 MLOAD PUSH32 0x943F7B8C00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x576 PUSH2 0xB8A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO DUP1 ISZERO PUSH2 0x5A8 JUMPI POP PUSH2 0x5A6 DUP2 PUSH2 0x5A1 PUSH2 0xB8A JUMP JUMPDEST PUSH2 0xA3E JUMP JUMPDEST ISZERO JUMPDEST ISZERO PUSH2 0x5DF JUMPI PUSH1 0x40 MLOAD PUSH32 0xCFB3B94200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x5EA DUP4 DUP4 DUP4 PUSH2 0xB92 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5F9 PUSH2 0xC44 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x0 SLOAD SUB SUB SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x611 DUP4 DUP4 DUP4 PUSH2 0xC49 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x631 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x924 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x641 DUP3 PUSH2 0x10FD JUMP JUMPDEST PUSH1 0x0 ADD MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x6B3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8F4EB60400000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x5 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH8 0xFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x72A SWAP1 PUSH2 0x1CB7 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 0x756 SWAP1 PUSH2 0x1CB7 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x7A3 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x778 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x7A3 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x786 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x7B5 PUSH2 0xB8A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x819 JUMPI PUSH1 0x40 MLOAD PUSH32 0xB06307DB00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x7 PUSH1 0x0 PUSH2 0x826 PUSH2 0xB8A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8D3 PUSH2 0xB8A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 DUP4 PUSH1 0x40 MLOAD PUSH2 0x918 SWAP2 SWAP1 PUSH2 0x1779 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0x92F DUP5 DUP5 DUP5 PUSH2 0xC49 JUMP JUMPDEST PUSH2 0x94E DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x138C JUMP JUMPDEST DUP1 ISZERO PUSH2 0x963 JUMPI POP PUSH2 0x961 DUP5 DUP5 DUP5 DUP5 PUSH2 0x13AF JUMP JUMPDEST ISZERO JUMPDEST ISZERO PUSH2 0x99A JUMPI PUSH1 0x40 MLOAD PUSH32 0xD1A57ED600000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x9AB DUP3 PUSH2 0xB3C JUMP JUMPDEST PUSH2 0x9E1 JUMPI PUSH1 0x40 MLOAD PUSH32 0xA14C4B5000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x9EB PUSH2 0x14FF JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD SUB PUSH2 0xA0B JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0xA36 JUMP JUMPDEST DUP1 PUSH2 0xA15 DUP5 PUSH2 0x1516 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xA26 SWAP3 SWAP2 SWAP1 PUSH2 0x1D24 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x7 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0xB47 PUSH2 0xC44 JUMP JUMPDEST GT ISZERO DUP1 ISZERO PUSH2 0xB56 JUMPI POP PUSH1 0x0 SLOAD DUP3 LT JUMPDEST DUP1 ISZERO PUSH2 0xB83 JUMPI POP PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x1C SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST DUP3 PUSH1 0x6 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP JUMP JUMPDEST PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC54 DUP3 PUSH2 0x10FD JUMP JUMPDEST SWAP1 POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH1 0x0 ADD MLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xCBF JUMPI PUSH1 0x40 MLOAD PUSH32 0xA114810000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xCE0 PUSH2 0xB8A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0xD0F JUMPI POP PUSH2 0xD0E DUP6 PUSH2 0xD09 PUSH2 0xB8A JUMP JUMPDEST PUSH2 0xA3E JUMP JUMPDEST JUMPDEST DUP1 PUSH2 0xD54 JUMPI POP PUSH2 0xD1D PUSH2 0xB8A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xD3C DUP5 PUSH2 0x469 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST SWAP1 POP DUP1 PUSH2 0xD8D JUMPI PUSH1 0x40 MLOAD PUSH32 0x59C896BE00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xDF3 JUMPI PUSH1 0x40 MLOAD PUSH32 0xEA553B3400000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xE00 DUP6 DUP6 DUP6 PUSH1 0x1 PUSH2 0x1676 JUMP JUMPDEST PUSH2 0xE0C PUSH1 0x0 DUP5 DUP8 PUSH2 0xB92 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x5 PUSH1 0x0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 DUP3 DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND SUB SWAP3 POP PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH8 0xFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH8 0xFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 PUSH1 0x5 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 DUP3 DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND ADD SWAP3 POP PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH8 0xFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH8 0xFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x0 PUSH1 0x4 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 POP DUP5 DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP TIMESTAMP DUP2 PUSH1 0x0 ADD PUSH1 0x14 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH8 0xFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH8 0xFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x0 PUSH1 0x1 DUP6 ADD SWAP1 POP PUSH1 0x0 PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH1 0x0 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x108B JUMPI PUSH1 0x0 SLOAD DUP3 EQ PUSH2 0x108A JUMPI DUP8 DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP5 PUSH1 0x20 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x14 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH8 0xFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH8 0xFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP JUMPDEST JUMPDEST POP POP POP DUP3 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH2 0x10F6 DUP6 DUP6 DUP6 PUSH1 0x1 PUSH2 0x167C JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH2 0x1105 PUSH2 0x1682 JUMP JUMPDEST PUSH1 0x0 DUP3 SWAP1 POP DUP1 PUSH2 0x1113 PUSH2 0xC44 JUMP JUMPDEST GT ISZERO DUP1 ISZERO PUSH2 0x1122 JUMPI POP PUSH1 0x0 SLOAD DUP2 LT JUMPDEST ISZERO PUSH2 0x1355 JUMPI PUSH1 0x0 PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0x14 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH8 0xFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0x1C SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE POP POP SWAP1 POP DUP1 PUSH1 0x40 ADD MLOAD PUSH2 0x1353 JUMPI PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH1 0x0 ADD MLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1237 JUMPI DUP1 SWAP3 POP POP POP PUSH2 0x1387 JUMP JUMPDEST JUMPDEST PUSH1 0x1 ISZERO PUSH2 0x1352 JUMPI DUP2 DUP1 PUSH1 0x1 SWAP1 SUB SWAP3 POP POP PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0x14 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH8 0xFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0x1C SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE POP POP SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH1 0x0 ADD MLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x134D JUMPI DUP1 SWAP3 POP POP POP PUSH2 0x1387 JUMP JUMPDEST PUSH2 0x1238 JUMP JUMPDEST JUMPDEST POP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xDF2D9B4200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 PUSH2 0x13D5 PUSH2 0xB8A JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x13F7 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1D9D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1433 JUMPI POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1430 SWAP2 SWAP1 PUSH2 0x1DFE JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x14AC JUMPI RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x1463 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x1468 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH1 0x0 DUP2 MLOAD SUB PUSH2 0x14A4 JUMPI PUSH1 0x40 MLOAD PUSH32 0xD1A57ED600000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 MLOAD DUP2 PUSH1 0x20 ADD REVERT JUMPDEST PUSH4 0x150B7A02 PUSH1 0xE0 SHL PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP2 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP2 POP POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 SUB PUSH2 0x155D JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x3000000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP1 POP PUSH2 0x1671 JUMP JUMPDEST PUSH1 0x0 DUP3 SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x0 DUP3 EQ PUSH2 0x158F JUMPI DUP1 DUP1 PUSH2 0x1578 SWAP1 PUSH2 0x1E5A JUMP JUMPDEST SWAP2 POP POP PUSH1 0xA DUP3 PUSH2 0x1588 SWAP2 SWAP1 PUSH2 0x1ED1 JUMP JUMPDEST SWAP2 POP PUSH2 0x1565 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x15AB JUMPI PUSH2 0x15AA PUSH2 0x1A9A JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x15DD JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x1 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP JUMPDEST PUSH1 0x0 DUP6 EQ PUSH2 0x166A JUMPI PUSH1 0x1 DUP3 PUSH2 0x15F6 SWAP2 SWAP1 PUSH2 0x1F02 JUMP JUMPDEST SWAP2 POP PUSH1 0xA DUP6 PUSH2 0x1605 SWAP2 SWAP1 PUSH2 0x1F36 JUMP JUMPDEST PUSH1 0x30 PUSH2 0x1611 SWAP2 SWAP1 PUSH2 0x1F67 JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x1627 JUMPI PUSH2 0x1626 PUSH2 0x1FBD JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0xA DUP6 PUSH2 0x1663 SWAP2 SWAP1 PUSH2 0x1ED1 JUMP JUMPDEST SWAP5 POP PUSH2 0x15E1 JUMP JUMPDEST DUP1 SWAP4 POP POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 ISZERO ISZERO DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x170E DUP2 PUSH2 0x16D9 JUMP JUMPDEST DUP2 EQ PUSH2 0x1719 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x172B DUP2 PUSH2 0x1705 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1747 JUMPI PUSH2 0x1746 PUSH2 0x16CF JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1755 DUP5 DUP3 DUP6 ADD PUSH2 0x171C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1773 DUP2 PUSH2 0x175E JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x178E PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x176A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x17CE JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x17B3 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x17DD JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17FF DUP3 PUSH2 0x1794 JUMP JUMPDEST PUSH2 0x1809 DUP2 DUP6 PUSH2 0x179F JUMP JUMPDEST SWAP4 POP PUSH2 0x1819 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x17B0 JUMP JUMPDEST PUSH2 0x1822 DUP2 PUSH2 0x17E3 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1847 DUP2 DUP5 PUSH2 0x17F4 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1862 DUP2 PUSH2 0x184F JUMP JUMPDEST DUP2 EQ PUSH2 0x186D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x187F DUP2 PUSH2 0x1859 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x189B JUMPI PUSH2 0x189A PUSH2 0x16CF JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x18A9 DUP5 DUP3 DUP6 ADD PUSH2 0x1870 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x18DD DUP3 PUSH2 0x18B2 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x18ED DUP2 PUSH2 0x18D2 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1908 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x18E4 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1917 DUP2 PUSH2 0x18D2 JUMP JUMPDEST DUP2 EQ PUSH2 0x1922 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1934 DUP2 PUSH2 0x190E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1951 JUMPI PUSH2 0x1950 PUSH2 0x16CF JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x195F DUP6 DUP3 DUP7 ADD PUSH2 0x1925 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1970 DUP6 DUP3 DUP7 ADD PUSH2 0x1870 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x1983 DUP2 PUSH2 0x184F JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x199E PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x197A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x19BD JUMPI PUSH2 0x19BC PUSH2 0x16CF JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x19CB DUP7 DUP3 DUP8 ADD PUSH2 0x1925 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x19DC DUP7 DUP3 DUP8 ADD PUSH2 0x1925 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x19ED DUP7 DUP3 DUP8 ADD PUSH2 0x1870 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1A0D JUMPI PUSH2 0x1A0C PUSH2 0x16CF JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1A1B DUP5 DUP3 DUP6 ADD PUSH2 0x1925 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1A2D DUP2 PUSH2 0x175E JUMP JUMPDEST DUP2 EQ PUSH2 0x1A38 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1A4A DUP2 PUSH2 0x1A24 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1A67 JUMPI PUSH2 0x1A66 PUSH2 0x16CF JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1A75 DUP6 DUP3 DUP7 ADD PUSH2 0x1925 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1A86 DUP6 DUP3 DUP7 ADD PUSH2 0x1A3B JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x1AD2 DUP3 PUSH2 0x17E3 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x1AF1 JUMPI PUSH2 0x1AF0 PUSH2 0x1A9A JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1B04 PUSH2 0x16C5 JUMP JUMPDEST SWAP1 POP PUSH2 0x1B10 DUP3 DUP3 PUSH2 0x1AC9 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1B30 JUMPI PUSH2 0x1B2F PUSH2 0x1A9A JUMP JUMPDEST JUMPDEST PUSH2 0x1B39 DUP3 PUSH2 0x17E3 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1B68 PUSH2 0x1B63 DUP5 PUSH2 0x1B15 JUMP JUMPDEST PUSH2 0x1AFA JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x1B84 JUMPI PUSH2 0x1B83 PUSH2 0x1A95 JUMP JUMPDEST JUMPDEST PUSH2 0x1B8F DUP5 DUP3 DUP6 PUSH2 0x1B46 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1BAC JUMPI PUSH2 0x1BAB PUSH2 0x1A90 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1BBC DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x1B55 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1BDF JUMPI PUSH2 0x1BDE PUSH2 0x16CF JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1BED DUP8 DUP3 DUP9 ADD PUSH2 0x1925 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x1BFE DUP8 DUP3 DUP9 ADD PUSH2 0x1925 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x1C0F DUP8 DUP3 DUP9 ADD PUSH2 0x1870 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1C30 JUMPI PUSH2 0x1C2F PUSH2 0x16D4 JUMP JUMPDEST JUMPDEST PUSH2 0x1C3C DUP8 DUP3 DUP9 ADD PUSH2 0x1B97 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1C5F JUMPI PUSH2 0x1C5E PUSH2 0x16CF JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1C6D DUP6 DUP3 DUP7 ADD PUSH2 0x1925 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1C7E DUP6 DUP3 DUP7 ADD PUSH2 0x1925 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x1CCF JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x1CE2 JUMPI PUSH2 0x1CE1 PUSH2 0x1C88 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1CFE DUP3 PUSH2 0x1794 JUMP JUMPDEST PUSH2 0x1D08 DUP2 DUP6 PUSH2 0x1CE8 JUMP JUMPDEST SWAP4 POP PUSH2 0x1D18 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x17B0 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D30 DUP3 DUP6 PUSH2 0x1CF3 JUMP JUMPDEST SWAP2 POP PUSH2 0x1D3C DUP3 DUP5 PUSH2 0x1CF3 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D6F DUP3 PUSH2 0x1D48 JUMP JUMPDEST PUSH2 0x1D79 DUP2 DUP6 PUSH2 0x1D53 JUMP JUMPDEST SWAP4 POP PUSH2 0x1D89 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x17B0 JUMP JUMPDEST PUSH2 0x1D92 DUP2 PUSH2 0x17E3 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x1DB2 PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x18E4 JUMP JUMPDEST PUSH2 0x1DBF PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x18E4 JUMP JUMPDEST PUSH2 0x1DCC PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x197A JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x1DDE DUP2 DUP5 PUSH2 0x1D64 JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x1DF8 DUP2 PUSH2 0x1705 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1E14 JUMPI PUSH2 0x1E13 PUSH2 0x16CF JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1E22 DUP5 DUP3 DUP6 ADD PUSH2 0x1DE9 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1E65 DUP3 PUSH2 0x184F JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 SUB PUSH2 0x1E97 JUMPI PUSH2 0x1E96 PUSH2 0x1E2B JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1EDC DUP3 PUSH2 0x184F JUMP JUMPDEST SWAP2 POP PUSH2 0x1EE7 DUP4 PUSH2 0x184F JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x1EF7 JUMPI PUSH2 0x1EF6 PUSH2 0x1EA2 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1F0D DUP3 PUSH2 0x184F JUMP JUMPDEST SWAP2 POP PUSH2 0x1F18 DUP4 PUSH2 0x184F JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x1F2B JUMPI PUSH2 0x1F2A PUSH2 0x1E2B JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1F41 DUP3 PUSH2 0x184F JUMP JUMPDEST SWAP2 POP PUSH2 0x1F4C DUP4 PUSH2 0x184F JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x1F5C JUMPI PUSH2 0x1F5B PUSH2 0x1EA2 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MOD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1F72 DUP3 PUSH2 0x184F JUMP JUMPDEST SWAP2 POP PUSH2 0x1F7D DUP4 PUSH2 0x184F JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x1FB2 JUMPI PUSH2 0x1FB1 PUSH2 0x1E2B JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xCD CALLDATACOPY GT 0x2B 0x23 0xC6 0xE7 SHL PUSH18 0xE13C577AE0B4899D7337EBA41E403B3C4183 CODECOPY 0xBF PUSH16 0xC6D364736F6C634300080D0033000000 ",
"sourceMap": "40688:20331:0:-:0;;;42581:154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42655:5;42647;:13;;;;;;;;;;;;:::i;:::-;;42680:7;42670;:17;;;;;;;;;;;;:::i;:::-;;42713:15;:13;;;:15;;:::i;:::-;42697:13;:31;;;;42581:154;;40688:20331;;42827:90;42883:7;42827:90;:::o;40688:20331::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:117;443:1;440;433:12;457:117;566:1;563;556:12;580:102;621:6;672:2;668:7;663:2;656:5;652:14;648:28;638:38;;580:102;;;:::o;688:180::-;736:77;733:1;726:88;833:4;830:1;823:15;857:4;854:1;847:15;874:281;957:27;979:4;957:27;:::i;:::-;949:6;945:40;1087:6;1075:10;1072:22;1051:18;1039:10;1036:34;1033:62;1030:88;;;1098:18;;:::i;:::-;1030:88;1138:10;1134:2;1127:22;917:238;874:281;;:::o;1161:129::-;1195:6;1222:20;;:::i;:::-;1212:30;;1251:33;1279:4;1271:6;1251:33;:::i;:::-;1161:129;;;:::o;1296:308::-;1358:4;1448:18;1440:6;1437:30;1434:56;;;1470:18;;:::i;:::-;1434:56;1508:29;1530:6;1508:29;:::i;:::-;1500:37;;1592:4;1586;1582:15;1574:23;;1296:308;;;:::o;1610:307::-;1678:1;1688:113;1702:6;1699:1;1696:13;1688:113;;;1787:1;1782:3;1778:11;1772:18;1768:1;1763:3;1759:11;1752:39;1724:2;1721:1;1717:10;1712:15;;1688:113;;;1819:6;1816:1;1813:13;1810:101;;;1899:1;1890:6;1885:3;1881:16;1874:27;1810:101;1659:258;1610:307;;;:::o;1923:421::-;2012:5;2037:66;2053:49;2095:6;2053:49;:::i;:::-;2037:66;:::i;:::-;2028:75;;2126:6;2119:5;2112:21;2164:4;2157:5;2153:16;2202:3;2193:6;2188:3;2184:16;2181:25;2178:112;;;2209:79;;:::i;:::-;2178:112;2299:39;2331:6;2326:3;2321;2299:39;:::i;:::-;2018:326;1923:421;;;;;:::o;2364:355::-;2431:5;2480:3;2473:4;2465:6;2461:17;2457:27;2447:122;;2488:79;;:::i;:::-;2447:122;2598:6;2592:13;2623:90;2709:3;2701:6;2694:4;2686:6;2682:17;2623:90;:::i;:::-;2614:99;;2437:282;2364:355;;;;:::o;2725:853::-;2824:6;2832;2881:2;2869:9;2860:7;2856:23;2852:32;2849:119;;;2887:79;;:::i;:::-;2849:119;3028:1;3017:9;3013:17;3007:24;3058:18;3050:6;3047:30;3044:117;;;3080:79;;:::i;:::-;3044:117;3185:74;3251:7;3242:6;3231:9;3227:22;3185:74;:::i;:::-;3175:84;;2978:291;3329:2;3318:9;3314:18;3308:25;3360:18;3352:6;3349:30;3346:117;;;3382:79;;:::i;:::-;3346:117;3487:74;3553:7;3544:6;3533:9;3529:22;3487:74;:::i;:::-;3477:84;;3279:292;2725:853;;;;;:::o;3584:180::-;3632:77;3629:1;3622:88;3729:4;3726:1;3719:15;3753:4;3750:1;3743:15;3770:320;3814:6;3851:1;3845:4;3841:12;3831:22;;3898:1;3892:4;3888:12;3919:18;3909:81;;3975:4;3967:6;3963:17;3953:27;;3909:81;4037:2;4029:6;4026:14;4006:18;4003:38;4000:84;;4056:18;;:::i;:::-;4000:84;3821:269;3770:320;;;:::o;40688:20331:0:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_afterTokenTransfers_3061": {
"entryPoint": 5756,
"id": 3061,
"parameterSlots": 4,
"returnSlots": 0
},
"@_approve_2980": {
"entryPoint": 2962,
"id": 2980,
"parameterSlots": 3,
"returnSlots": 0
},
"@_baseURI_2177": {
"entryPoint": 5375,
"id": 2177,
"parameterSlots": 0,
"returnSlots": 1
},
"@_beforeTokenTransfers_3048": {
"entryPoint": 5750,
"id": 3048,
"parameterSlots": 4,
"returnSlots": 0
},
"@_checkContractOnERC721Received_3035": {
"entryPoint": 5039,
"id": 3035,
"parameterSlots": 4,
"returnSlots": 1
},
"@_exists_2394": {
"entryPoint": 2876,
"id": 2394,
"parameterSlots": 1,
"returnSlots": 1
},
"@_msgSender_1739": {
"entryPoint": 2954,
"id": 1739,
"parameterSlots": 0,
"returnSlots": 1
},
"@_ownershipOf_2090": {
"entryPoint": 4349,
"id": 2090,
"parameterSlots": 1,
"returnSlots": 1
},
"@_startTokenId_1865": {
"entryPoint": 3140,
"id": 1865,
"parameterSlots": 0,
"returnSlots": 1
},
"@_transfer_2763": {
"entryPoint": 3145,
"id": 2763,
"parameterSlots": 3,
"returnSlots": 0
},
"@approve_2223": {
"entryPoint": 1253,
"id": 2223,
"parameterSlots": 2,
"returnSlots": 0
},
"@balanceOf_1952": {
"entryPoint": 1612,
"id": 1952,
"parameterSlots": 1,
"returnSlots": 1
},
"@getApproved_2245": {
"entryPoint": 1129,
"id": 2245,
"parameterSlots": 1,
"returnSlots": 1
},
"@isApprovedForAll_2297": {
"entryPoint": 2622,
"id": 2297,
"parameterSlots": 2,
"returnSlots": 1
},
"@isContract_17": {
"entryPoint": 5004,
"id": 17,
"parameterSlots": 1,
"returnSlots": 1
},
"@name_2115": {
"entryPoint": 983,
"id": 2115,
"parameterSlots": 0,
"returnSlots": 1
},
"@ownerOf_2105": {
"entryPoint": 1590,
"id": 2105,
"parameterSlots": 1,
"returnSlots": 1
},
"@safeTransferFrom_2334": {
"entryPoint": 1558,
"id": 2334,
"parameterSlots": 3,
"returnSlots": 0
},
"@safeTransferFrom_2370": {
"entryPoint": 2340,
"id": 2370,
"parameterSlots": 4,
"returnSlots": 0
},
"@setApprovalForAll_2279": {
"entryPoint": 1965,
"id": 2279,
"parameterSlots": 2,
"returnSlots": 0
},
"@supportsInterface_1924": {
"entryPoint": 757,
"id": 1924,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_343": {
"entryPoint": 2770,
"id": 343,
"parameterSlots": 1,
"returnSlots": 1
},
"@symbol_2125": {
"entryPoint": 1819,
"id": 2125,
"parameterSlots": 0,
"returnSlots": 1
},
"@toString_1571": {
"entryPoint": 5398,
"id": 1571,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenURI_2168": {
"entryPoint": 2464,
"id": 2168,
"parameterSlots": 1,
"returnSlots": 1
},
"@totalSupply_1880": {
"entryPoint": 1519,
"id": 1880,
"parameterSlots": 0,
"returnSlots": 1
},
"@transferFrom_2315": {
"entryPoint": 1542,
"id": 2315,
"parameterSlots": 3,
"returnSlots": 0
},
"abi_decode_available_length_t_bytes_memory_ptr": {
"entryPoint": 6997,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 6437,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bool": {
"entryPoint": 6715,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes4": {
"entryPoint": 5916,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes4_fromMemory": {
"entryPoint": 7657,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes_memory_ptr": {
"entryPoint": 7063,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 6256,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 6647,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 7240,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 6564,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr": {
"entryPoint": 7109,
"id": null,
"parameterSlots": 2,
"returnSlots": 4
},
"abi_decode_tuple_t_addresst_bool": {
"entryPoint": 6736,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 6458,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_bytes4": {
"entryPoint": 5937,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes4_fromMemory": {
"entryPoint": 7678,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 6277,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 6372,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 5994,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack": {
"entryPoint": 7524,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6132,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 7411,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 6522,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 7460,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 6387,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed": {
"entryPoint": 7581,
"id": null,
"parameterSlots": 5,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 6009,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6189,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 6537,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 6906,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 5829,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_bytes_memory_ptr": {
"entryPoint": 6933,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_bytes_memory_ptr": {
"entryPoint": 7496,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 6036,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack": {
"entryPoint": 7507,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 6047,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 7400,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 8039,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_div_t_uint256": {
"entryPoint": 7889,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 7938,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 6354,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 5982,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bytes4": {
"entryPoint": 5849,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 6322,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 6223,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_calldata_to_memory": {
"entryPoint": 6982,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory": {
"entryPoint": 6064,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 7351,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 6857,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"increment_t_uint256": {
"entryPoint": 7770,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mod_t_uint256": {
"entryPoint": 7990,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 7723,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x12": {
"entryPoint": 7842,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 7304,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 8125,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 6810,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 6800,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 6805,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 5844,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 5839,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 6115,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"validator_revert_t_address": {
"entryPoint": 6414,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bool": {
"entryPoint": 6692,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bytes4": {
"entryPoint": 5893,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 6233,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:15471:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:1"
},
"nodeType": "YulFunctionCall",
"src": "67:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:1",
"type": ""
}
],
"src": "7:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:1"
},
"nodeType": "YulFunctionCall",
"src": "187:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:1"
},
"nodeType": "YulFunctionCall",
"src": "310:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "378:105:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "388:89:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "403:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "410:66:1",
"type": "",
"value": "0xffffffff00000000000000000000000000000000000000000000000000000000"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "399:3:1"
},
"nodeType": "YulFunctionCall",
"src": "399:78:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "388:7:1"
}
]
}
]
},
"name": "cleanup_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "360:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "370:7:1",
"type": ""
}
],
"src": "334:149:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "531:78:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "587:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "596:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "599:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "589:6:1"
},
"nodeType": "YulFunctionCall",
"src": "589:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "589:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "554:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "578:5:1"
}
],
"functionName": {
"name": "cleanup_t_bytes4",
"nodeType": "YulIdentifier",
"src": "561:16:1"
},
"nodeType": "YulFunctionCall",
"src": "561:23:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "551:2:1"
},
"nodeType": "YulFunctionCall",
"src": "551:34:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "544:6:1"
},
"nodeType": "YulFunctionCall",
"src": "544:42:1"
},
"nodeType": "YulIf",
"src": "541:62:1"
}
]
},
"name": "validator_revert_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "524:5:1",
"type": ""
}
],
"src": "489:120:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "666:86:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "676:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "698:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "685:12:1"
},
"nodeType": "YulFunctionCall",
"src": "685:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "676:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "740:5:1"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "714:25:1"
},
"nodeType": "YulFunctionCall",
"src": "714:32:1"
},
"nodeType": "YulExpressionStatement",
"src": "714:32:1"
}
]
},
"name": "abi_decode_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "644:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "652:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "660:5:1",
"type": ""
}
],
"src": "615:137:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "823:262:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "869:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "871:77:1"
},
"nodeType": "YulFunctionCall",
"src": "871:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "871:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "844:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "853:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "840:3:1"
},
"nodeType": "YulFunctionCall",
"src": "840:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "865:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "836:3:1"
},
"nodeType": "YulFunctionCall",
"src": "836:32:1"
},
"nodeType": "YulIf",
"src": "833:119:1"
},
{
"nodeType": "YulBlock",
"src": "962:116:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "977:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "991:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "981:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1006:62:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1040:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1051:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1036:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1036:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1060:7:1"
}
],
"functionName": {
"name": "abi_decode_t_bytes4",
"nodeType": "YulIdentifier",
"src": "1016:19:1"
},
"nodeType": "YulFunctionCall",
"src": "1016:52:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1006:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "793:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "804:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "816:6:1",
"type": ""
}
],
"src": "758:327:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1133:48:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1143:32:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1168:5:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1161:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1161:13:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1154:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1154:21:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1143:7:1"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1115:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1125:7:1",
"type": ""
}
],
"src": "1091:90:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1246:50:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1263:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1283:5:1"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "1268:14:1"
},
"nodeType": "YulFunctionCall",
"src": "1268:21:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1256:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1256:34:1"
},
"nodeType": "YulExpressionStatement",
"src": "1256:34:1"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1234:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1241:3:1",
"type": ""
}
],
"src": "1187:109:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1394:118:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1404:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1416:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1427:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1412:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1412:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1404:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1478:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1491:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1502:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1487:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1487:17:1"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "1440:37:1"
},
"nodeType": "YulFunctionCall",
"src": "1440:65:1"
},
"nodeType": "YulExpressionStatement",
"src": "1440:65:1"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1366:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1378:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1389:4:1",
"type": ""
}
],
"src": "1302:210:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1577:40:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1588:22:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1604:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1598:5:1"
},
"nodeType": "YulFunctionCall",
"src": "1598:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1588:6:1"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1560:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1570:6:1",
"type": ""
}
],
"src": "1518:99:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1719:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1736:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1741:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1729:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1729:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "1729:19:1"
},
{
"nodeType": "YulAssignment",
"src": "1757:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1776:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1781:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1772:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1772:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "1757:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1691:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1696:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "1707:11:1",
"type": ""
}
],
"src": "1623:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1847:258:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1857:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1866:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "1861:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1926:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1951:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1956:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1947:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1947:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1970:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1975:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1966:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1966:11:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1960:5:1"
},
"nodeType": "YulFunctionCall",
"src": "1960:18:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1940:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1940:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "1940:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1887:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1890:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1884:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1884:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "1898:19:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1900:15:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1909:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1912:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1905:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1905:10:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1900:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "1880:3:1",
"statements": []
},
"src": "1876:113:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2023:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2073:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2078:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2069:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2069:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2087:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2062:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2062:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "2062:27:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2004:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2007:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2001:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2001:13:1"
},
"nodeType": "YulIf",
"src": "1998:101:1"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1829:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1834:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1839:6:1",
"type": ""
}
],
"src": "1798:307:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2159:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2169:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2187:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2194:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2183:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2183:14:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2203:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "2199:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2199:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2179:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2179:28:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "2169:6:1"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2142:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "2152:6:1",
"type": ""
}
],
"src": "2111:102:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2311:272:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2321:53:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2368:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2335:32:1"
},
"nodeType": "YulFunctionCall",
"src": "2335:39:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2325:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2383:78:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2449:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2454:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2390:58:1"
},
"nodeType": "YulFunctionCall",
"src": "2390:71:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2383:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2496:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2503:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2492:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2492:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2510:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2515:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "2470:21:1"
},
"nodeType": "YulFunctionCall",
"src": "2470:52:1"
},
"nodeType": "YulExpressionStatement",
"src": "2470:52:1"
},
{
"nodeType": "YulAssignment",
"src": "2531:46:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2542:3:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2569:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2547:21:1"
},
"nodeType": "YulFunctionCall",
"src": "2547:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2538:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2538:39:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2531:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2292:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2299:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2307:3:1",
"type": ""
}
],
"src": "2219:364:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2707:195:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2717:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2729:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2740:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2725:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2725:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2717:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2764:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2775:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2760:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2760:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2783:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2789:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2779:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2779:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2753:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2753:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "2753:47:1"
},
{
"nodeType": "YulAssignment",
"src": "2809:86:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2881:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2890:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2817:63:1"
},
"nodeType": "YulFunctionCall",
"src": "2817:78:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2809:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2679:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2691:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2702:4:1",
"type": ""
}
],
"src": "2589:313:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2953:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2963:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "2974:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2963:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2935:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2945:7:1",
"type": ""
}
],
"src": "2908:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3034:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3091:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3100:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3103:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3093:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3093:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "3093:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3057:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3082:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3064:17:1"
},
"nodeType": "YulFunctionCall",
"src": "3064:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "3054:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3054:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3047:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3047:43:1"
},
"nodeType": "YulIf",
"src": "3044:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3027:5:1",
"type": ""
}
],
"src": "2991:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3171:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3181:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3203:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3190:12:1"
},
"nodeType": "YulFunctionCall",
"src": "3190:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3181:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3246:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "3219:26:1"
},
"nodeType": "YulFunctionCall",
"src": "3219:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "3219:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3149:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3157:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3165:5:1",
"type": ""
}
],
"src": "3119:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3330:263:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3376:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3378:77:1"
},
"nodeType": "YulFunctionCall",
"src": "3378:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "3378:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3351:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3360:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3347:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3347:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3372:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3343:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3343:32:1"
},
"nodeType": "YulIf",
"src": "3340:119:1"
},
{
"nodeType": "YulBlock",
"src": "3469:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3484:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3498:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3488:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3513:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3548:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3559:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3544:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3544:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3568:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "3523:20:1"
},
"nodeType": "YulFunctionCall",
"src": "3523:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3513:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3300:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3311:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3323:6:1",
"type": ""
}
],
"src": "3264:329:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3644:81:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3654:65:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3669:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3676:42:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3665:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3665:54:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3654:7:1"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3626:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3636:7:1",
"type": ""
}
],
"src": "3599:126:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3776:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3786:35:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3815:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "3797:17:1"
},
"nodeType": "YulFunctionCall",
"src": "3797:24:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3786:7:1"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3758:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3768:7:1",
"type": ""
}
],
"src": "3731:96:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3898:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3915:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3938:5:1"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "3920:17:1"
},
"nodeType": "YulFunctionCall",
"src": "3920:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3908:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3908:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "3908:37:1"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3886:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3893:3:1",
"type": ""
}
],
"src": "3833:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4055:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4065:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4077:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4088:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4073:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4073:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4065:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4145:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4158:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4169:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4154:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4154:17:1"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "4101:43:1"
},
"nodeType": "YulFunctionCall",
"src": "4101:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "4101:71:1"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4027:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4039:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4050:4:1",
"type": ""
}
],
"src": "3957:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4228:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4285:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4294:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4297:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4287:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4287:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "4287:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4251:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4276:5:1"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "4258:17:1"
},
"nodeType": "YulFunctionCall",
"src": "4258:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "4248:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4248:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4241:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4241:43:1"
},
"nodeType": "YulIf",
"src": "4238:63:1"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4221:5:1",
"type": ""
}
],
"src": "4185:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4365:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4375:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4397:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "4384:12:1"
},
"nodeType": "YulFunctionCall",
"src": "4384:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4375:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4440:5:1"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "4413:26:1"
},
"nodeType": "YulFunctionCall",
"src": "4413:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "4413:33:1"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4343:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4351:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4359:5:1",
"type": ""
}
],
"src": "4313:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4541:391:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4587:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "4589:77:1"
},
"nodeType": "YulFunctionCall",
"src": "4589:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "4589:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4562:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4571:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4558:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4558:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4583:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4554:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4554:32:1"
},
"nodeType": "YulIf",
"src": "4551:119:1"
},
{
"nodeType": "YulBlock",
"src": "4680:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4695:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4709:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4699:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4724:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4759:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4770:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4755:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4755:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4779:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4734:20:1"
},
"nodeType": "YulFunctionCall",
"src": "4734:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4724:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4807:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4822:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4836:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4826:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4852:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4887:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4898:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4883:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4883:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4907:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4862:20:1"
},
"nodeType": "YulFunctionCall",
"src": "4862:53:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4852:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4503:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4514:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4526:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4534:6:1",
"type": ""
}
],
"src": "4458:474:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5003:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5020:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5043:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5025:17:1"
},
"nodeType": "YulFunctionCall",
"src": "5025:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5013:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5013:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "5013:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4991:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4998:3:1",
"type": ""
}
],
"src": "4938:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5160:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5170:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5182:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5193:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5178:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5178:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5170:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5250:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5263:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5274:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5259:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5259:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "5206:43:1"
},
"nodeType": "YulFunctionCall",
"src": "5206:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "5206:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5132:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5144:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5155:4:1",
"type": ""
}
],
"src": "5062:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5390:519:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5436:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5438:77:1"
},
"nodeType": "YulFunctionCall",
"src": "5438:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "5438:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5411:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5420:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5407:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5407:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5432:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5403:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5403:32:1"
},
"nodeType": "YulIf",
"src": "5400:119:1"
},
{
"nodeType": "YulBlock",
"src": "5529:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5544:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5558:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5548:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5573:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5608:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5619:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5604:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5604:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5628:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5583:20:1"
},
"nodeType": "YulFunctionCall",
"src": "5583:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5573:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5656:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5671:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5685:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5675:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5701:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5736:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5747:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5732:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5732:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5756:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5711:20:1"
},
"nodeType": "YulFunctionCall",
"src": "5711:53:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5701:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5784:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5799:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5813:2:1",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5803:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5829:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5864:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5875:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5860:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5860:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5884:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "5839:20:1"
},
"nodeType": "YulFunctionCall",
"src": "5839:53:1"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "5829:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5344:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5355:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5367:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5375:6:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "5383:6:1",
"type": ""
}
],
"src": "5290:619:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5981:263:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6027:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "6029:77:1"
},
"nodeType": "YulFunctionCall",
"src": "6029:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "6029:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6002:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6011:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5998:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5998:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6023:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5994:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5994:32:1"
},
"nodeType": "YulIf",
"src": "5991:119:1"
},
{
"nodeType": "YulBlock",
"src": "6120:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6135:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6149:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6139:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6164:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6199:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6210:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6195:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6195:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6219:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "6174:20:1"
},
"nodeType": "YulFunctionCall",
"src": "6174:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6164:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5951:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5962:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5974:6:1",
"type": ""
}
],
"src": "5915:329:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6290:76:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6344:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6353:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6356:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6346:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6346:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "6346:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6313:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6335:5:1"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "6320:14:1"
},
"nodeType": "YulFunctionCall",
"src": "6320:21:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "6310:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6310:32:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "6303:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6303:40:1"
},
"nodeType": "YulIf",
"src": "6300:60:1"
}
]
},
"name": "validator_revert_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6283:5:1",
"type": ""
}
],
"src": "6250:116:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6421:84:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6431:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6453:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "6440:12:1"
},
"nodeType": "YulFunctionCall",
"src": "6440:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6431:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6493:5:1"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "6469:23:1"
},
"nodeType": "YulFunctionCall",
"src": "6469:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "6469:30:1"
}
]
},
"name": "abi_decode_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6399:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6407:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6415:5:1",
"type": ""
}
],
"src": "6372:133:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6591:388:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6637:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "6639:77:1"
},
"nodeType": "YulFunctionCall",
"src": "6639:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "6639:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6612:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6621:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6608:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6608:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6633:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6604:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6604:32:1"
},
"nodeType": "YulIf",
"src": "6601:119:1"
},
{
"nodeType": "YulBlock",
"src": "6730:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6745:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6759:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6749:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6774:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6809:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6820:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6805:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6805:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6829:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "6784:20:1"
},
"nodeType": "YulFunctionCall",
"src": "6784:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6774:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "6857:115:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6872:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6886:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6876:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6902:60:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6934:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6945:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6930:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6930:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6954:7:1"
}
],
"functionName": {
"name": "abi_decode_t_bool",
"nodeType": "YulIdentifier",
"src": "6912:17:1"
},
"nodeType": "YulFunctionCall",
"src": "6912:50:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "6902:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6553:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "6564:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6576:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "6584:6:1",
"type": ""
}
],
"src": "6511:468:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7074:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7091:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7094:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7084:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7084:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "7084:12:1"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "6985:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7197:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7214:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7217:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7207:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7207:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "7207:12:1"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "7108:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7259:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7276:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7279:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7269:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7269:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "7269:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7373:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7376:4:1",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7366:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7366:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "7366:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7397:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7400:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7390:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7390:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "7390:15:1"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "7231:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7460:238:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7470:58:1",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7492:6:1"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "7522:4:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "7500:21:1"
},
"nodeType": "YulFunctionCall",
"src": "7500:27:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7488:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7488:40:1"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "7474:10:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7639:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "7641:16:1"
},
"nodeType": "YulFunctionCall",
"src": "7641:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "7641:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "7582:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7594:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7579:2:1"
},
"nodeType": "YulFunctionCall",
"src": "7579:34:1"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "7618:10:1"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7630:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "7615:2:1"
},
"nodeType": "YulFunctionCall",
"src": "7615:22:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "7576:2:1"
},
"nodeType": "YulFunctionCall",
"src": "7576:62:1"
},
"nodeType": "YulIf",
"src": "7573:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7677:2:1",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "7681:10:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7670:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7670:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "7670:22:1"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "7446:6:1",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "7454:4:1",
"type": ""
}
],
"src": "7417:281:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7745:88:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7755:30:1",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "7765:18:1"
},
"nodeType": "YulFunctionCall",
"src": "7765:20:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7755:6:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7814:6:1"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "7822:4:1"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "7794:19:1"
},
"nodeType": "YulFunctionCall",
"src": "7794:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "7794:33:1"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "7729:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "7738:6:1",
"type": ""
}
],
"src": "7704:129:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7905:241:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8010:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "8012:16:1"
},
"nodeType": "YulFunctionCall",
"src": "8012:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "8012:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7982:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7990:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7979:2:1"
},
"nodeType": "YulFunctionCall",
"src": "7979:30:1"
},
"nodeType": "YulIf",
"src": "7976:56:1"
},
{
"nodeType": "YulAssignment",
"src": "8042:37:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8072:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "8050:21:1"
},
"nodeType": "YulFunctionCall",
"src": "8050:29:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "8042:4:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "8116:23:1",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "8128:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8134:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8124:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8124:15:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "8116:4:1"
}
]
}
]
},
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "7889:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "7900:4:1",
"type": ""
}
],
"src": "7839:307:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8203:103:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "8226:3:1"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "8231:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8236:6:1"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "8213:12:1"
},
"nodeType": "YulFunctionCall",
"src": "8213:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "8213:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "8284:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8289:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8280:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8280:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8298:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8273:6:1"
},
"nodeType": "YulFunctionCall",
"src": "8273:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "8273:27:1"
}
]
},
"name": "copy_calldata_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "8185:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "8190:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8195:6:1",
"type": ""
}
],
"src": "8152:154:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8395:327:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8405:74:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8471:6:1"
}
],
"functionName": {
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "8430:40:1"
},
"nodeType": "YulFunctionCall",
"src": "8430:48:1"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "8414:15:1"
},
"nodeType": "YulFunctionCall",
"src": "8414:65:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "8405:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "8495:5:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8502:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8488:6:1"
},
"nodeType": "YulFunctionCall",
"src": "8488:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "8488:21:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "8518:27:1",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "8533:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8540:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8529:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8529:16:1"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "8522:3:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "8583:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "8585:77:1"
},
"nodeType": "YulFunctionCall",
"src": "8585:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "8585:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "8564:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8569:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8560:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8560:16:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8578:3:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "8557:2:1"
},
"nodeType": "YulFunctionCall",
"src": "8557:25:1"
},
"nodeType": "YulIf",
"src": "8554:112:1"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "8699:3:1"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "8704:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8709:6:1"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "8675:23:1"
},
"nodeType": "YulFunctionCall",
"src": "8675:41:1"
},
"nodeType": "YulExpressionStatement",
"src": "8675:41:1"
}
]
},
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "8368:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8373:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8381:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "8389:5:1",
"type": ""
}
],
"src": "8312:410:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8802:277:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8851:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "8853:77:1"
},
"nodeType": "YulFunctionCall",
"src": "8853:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "8853:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8830:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8838:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8826:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8826:17:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8845:3:1"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "8822:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8822:27:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "8815:6:1"
},
"nodeType": "YulFunctionCall",
"src": "8815:35:1"
},
"nodeType": "YulIf",
"src": "8812:122:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "8943:34:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8970:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "8957:12:1"
},
"nodeType": "YulFunctionCall",
"src": "8957:20:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8947:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8986:87:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9046:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9054:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9042:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9042:17:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9061:6:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9069:3:1"
}
],
"functionName": {
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "8995:46:1"
},
"nodeType": "YulFunctionCall",
"src": "8995:78:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "8986:5:1"
}
]
}
]
},
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8780:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8788:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "8796:5:1",
"type": ""
}
],
"src": "8741:338:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9211:817:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "9258:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "9260:77:1"
},
"nodeType": "YulFunctionCall",
"src": "9260:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "9260:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9232:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9241:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9228:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9228:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9253:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "9224:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9224:33:1"
},
"nodeType": "YulIf",
"src": "9221:120:1"
},
{
"nodeType": "YulBlock",
"src": "9351:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9366:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9380:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9370:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9395:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9430:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9441:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9426:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9426:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9450:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "9405:20:1"
},
"nodeType": "YulFunctionCall",
"src": "9405:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "9395:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "9478:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9493:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9507:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9497:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9523:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9558:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9569:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9554:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9554:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9578:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "9533:20:1"
},
"nodeType": "YulFunctionCall",
"src": "9533:53:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "9523:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "9606:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9621:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9635:2:1",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9625:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9651:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9686:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9697:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9682:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9682:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9706:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "9661:20:1"
},
"nodeType": "YulFunctionCall",
"src": "9661:53:1"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "9651:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "9734:287:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9749:46:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9780:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9791:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9776:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9776:18:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "9763:12:1"
},
"nodeType": "YulFunctionCall",
"src": "9763:32:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9753:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "9842:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "9844:77:1"
},
"nodeType": "YulFunctionCall",
"src": "9844:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "9844:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9814:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9822:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "9811:2:1"
},
"nodeType": "YulFunctionCall",
"src": "9811:30:1"
},
"nodeType": "YulIf",
"src": "9808:117:1"
},
{
"nodeType": "YulAssignment",
"src": "9939:72:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9983:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9994:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9979:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9979:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "10003:7:1"
}
],
"functionName": {
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "9949:29:1"
},
"nodeType": "YulFunctionCall",
"src": "9949:62:1"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "9939:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9157:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "9168:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "9180:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "9188:6:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "9196:6:1",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "9204:6:1",
"type": ""
}
],
"src": "9085:943:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10117:391:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "10163:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "10165:77:1"
},
"nodeType": "YulFunctionCall",
"src": "10165:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "10165:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "10138:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10147:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10134:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10134:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10159:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "10130:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10130:32:1"
},
"nodeType": "YulIf",
"src": "10127:119:1"
},
{
"nodeType": "YulBlock",
"src": "10256:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10271:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "10285:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "10275:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "10300:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10335:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "10346:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10331:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10331:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "10355:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "10310:20:1"
},
"nodeType": "YulFunctionCall",
"src": "10310:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "10300:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "10383:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10398:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "10412:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "10402:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "10428:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10463:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "10474:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10459:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10459:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "10483:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "10438:20:1"
},
"nodeType": "YulFunctionCall",
"src": "10438:53:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "10428:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10079:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "10090:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "10102:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "10110:6:1",
"type": ""
}
],
"src": "10034:474:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10542:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10559:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10562:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10552:6:1"
},
"nodeType": "YulFunctionCall",
"src": "10552:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "10552:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10656:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10659:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10649:6:1"
},
"nodeType": "YulFunctionCall",
"src": "10649:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "10649:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10680:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10683:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "10673:6:1"
},
"nodeType": "YulFunctionCall",
"src": "10673:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "10673:15:1"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "10514:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10751:269:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10761:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "10775:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10781:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "10771:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10771:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10761:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "10792:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "10822:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10828:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "10818:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10818:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "10796:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10869:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10883:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10897:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10905:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "10893:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10893:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10883:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "10849:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "10842:6:1"
},
"nodeType": "YulFunctionCall",
"src": "10842:26:1"
},
"nodeType": "YulIf",
"src": "10839:81:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10972:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "10986:16:1"
},
"nodeType": "YulFunctionCall",
"src": "10986:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "10986:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "10936:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10959:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10967:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "10956:2:1"
},
"nodeType": "YulFunctionCall",
"src": "10956:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "10933:2:1"
},
"nodeType": "YulFunctionCall",
"src": "10933:38:1"
},
"nodeType": "YulIf",
"src": "10930:84:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "10735:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "10744:6:1",
"type": ""
}
],
"src": "10700:320:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11140:34:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11150:18:1",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11165:3:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "11150:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11112:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "11117:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "11128:11:1",
"type": ""
}
],
"src": "11026:148:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11290:267:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "11300:53:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11347:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "11314:32:1"
},
"nodeType": "YulFunctionCall",
"src": "11314:39:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "11304:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "11362:96:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11446:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11451:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "11369:76:1"
},
"nodeType": "YulFunctionCall",
"src": "11369:89:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11362:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11493:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11500:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11489:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11489:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11507:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11512:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "11467:21:1"
},
"nodeType": "YulFunctionCall",
"src": "11467:52:1"
},
"nodeType": "YulExpressionStatement",
"src": "11467:52:1"
},
{
"nodeType": "YulAssignment",
"src": "11528:23:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11539:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11544:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11535:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11535:16:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11528:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "11271:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11278:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11286:3:1",
"type": ""
}
],
"src": "11180:377:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11747:251:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11758:102:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "11847:6:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11856:3:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "11765:81:1"
},
"nodeType": "YulFunctionCall",
"src": "11765:95:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11758:3:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "11870:102:1",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "11959:6:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11968:3:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "11877:81:1"
},
"nodeType": "YulFunctionCall",
"src": "11877:95:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11870:3:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "11982:10:1",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11989:3:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11982:3:1"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11718:3:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "11724:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "11732:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11743:3:1",
"type": ""
}
],
"src": "11563:435:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12062:40:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12073:22:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "12089:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "12083:5:1"
},
"nodeType": "YulFunctionCall",
"src": "12083:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12073:6:1"
}
]
}
]
},
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "12045:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "12055:6:1",
"type": ""
}
],
"src": "12004:98:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12203:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12220:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12225:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12213:6:1"
},
"nodeType": "YulFunctionCall",
"src": "12213:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "12213:19:1"
},
{
"nodeType": "YulAssignment",
"src": "12241:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12260:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12265:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12256:3:1"
},
"nodeType": "YulFunctionCall",
"src": "12256:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "12241:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12175:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "12180:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "12191:11:1",
"type": ""
}
],
"src": "12108:168:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12372:270:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "12382:52:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "12428:5:1"
}
],
"functionName": {
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "12396:31:1"
},
"nodeType": "YulFunctionCall",
"src": "12396:38:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "12386:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "12443:77:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12508:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12513:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12450:57:1"
},
"nodeType": "YulFunctionCall",
"src": "12450:70:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12443:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "12555:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12562:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12551:3:1"
},
"nodeType": "YulFunctionCall",
"src": "12551:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12569:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12574:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "12529:21:1"
},
"nodeType": "YulFunctionCall",
"src": "12529:52:1"
},
"nodeType": "YulExpressionStatement",
"src": "12529:52:1"
},
{
"nodeType": "YulAssignment",
"src": "12590:46:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12601:3:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12628:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "12606:21:1"
},
"nodeType": "YulFunctionCall",
"src": "12606:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12597:3:1"
},
"nodeType": "YulFunctionCall",
"src": "12597:39:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12590:3:1"
}
]
}
]
},
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "12353:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12360:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12368:3:1",
"type": ""
}
],
"src": "12282:360:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12848:440:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12858:27:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12870:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12881:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12866:3:1"
},
"nodeType": "YulFunctionCall",
"src": "12866:19:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12858:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "12939:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12952:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12963:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12948:3:1"
},
"nodeType": "YulFunctionCall",
"src": "12948:17:1"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "12895:43:1"
},
"nodeType": "YulFunctionCall",
"src": "12895:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "12895:71:1"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "13020:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13033:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13044:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13029:3:1"
},
"nodeType": "YulFunctionCall",
"src": "13029:18:1"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "12976:43:1"
},
"nodeType": "YulFunctionCall",
"src": "12976:72:1"
},
"nodeType": "YulExpressionStatement",
"src": "12976:72:1"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "13102:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13115:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13126:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13111:3:1"
},
"nodeType": "YulFunctionCall",
"src": "13111:18:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "13058:43:1"
},
"nodeType": "YulFunctionCall",
"src": "13058:72:1"
},
"nodeType": "YulExpressionStatement",
"src": "13058:72:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13151:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13162:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13147:3:1"
},
"nodeType": "YulFunctionCall",
"src": "13147:18:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13171:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13177:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13167:3:1"
},
"nodeType": "YulFunctionCall",
"src": "13167:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13140:6:1"
},
"nodeType": "YulFunctionCall",
"src": "13140:48:1"
},
"nodeType": "YulExpressionStatement",
"src": "13140:48:1"
},
{
"nodeType": "YulAssignment",
"src": "13197:84:1",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "13267:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13276:4:1"
}
],
"functionName": {
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13205:61:1"
},
"nodeType": "YulFunctionCall",
"src": "13205:76:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13197:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12796:9:1",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "12808:6:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "12816:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "12824:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "12832:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12843:4:1",
"type": ""
}
],
"src": "12648:640:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13356:79:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13366:22:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "13381:6:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "13375:5:1"
},
"nodeType": "YulFunctionCall",
"src": "13375:13:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "13366:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "13423:5:1"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "13397:25:1"
},
"nodeType": "YulFunctionCall",
"src": "13397:32:1"
},
"nodeType": "YulExpressionStatement",
"src": "13397:32:1"
}
]
},
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "13334:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13342:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "13350:5:1",
"type": ""
}
],
"src": "13294:141:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13517:273:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "13563:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "13565:77:1"
},
"nodeType": "YulFunctionCall",
"src": "13565:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "13565:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "13538:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13547:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13534:3:1"
},
"nodeType": "YulFunctionCall",
"src": "13534:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13559:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "13530:3:1"
},
"nodeType": "YulFunctionCall",
"src": "13530:32:1"
},
"nodeType": "YulIf",
"src": "13527:119:1"
},
{
"nodeType": "YulBlock",
"src": "13656:127:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "13671:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "13685:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "13675:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "13700:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13745:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "13756:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13741:3:1"
},
"nodeType": "YulFunctionCall",
"src": "13741:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "13765:7:1"
}
],
"functionName": {
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulIdentifier",
"src": "13710:30:1"
},
"nodeType": "YulFunctionCall",
"src": "13710:63:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "13700:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13487:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "13498:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "13510:6:1",
"type": ""
}
],
"src": "13441:349:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13824:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13841:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13844:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13834:6:1"
},
"nodeType": "YulFunctionCall",
"src": "13834:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "13834:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13938:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13941:4:1",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13931:6:1"
},
"nodeType": "YulFunctionCall",
"src": "13931:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "13931:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13962:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13965:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "13955:6:1"
},
"nodeType": "YulFunctionCall",
"src": "13955:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "13955:15:1"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "13796:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14025:190:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14035:33:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "14062:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "14044:17:1"
},
"nodeType": "YulFunctionCall",
"src": "14044:24:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "14035:5:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "14158:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "14160:16:1"
},
"nodeType": "YulFunctionCall",
"src": "14160:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "14160:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "14083:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14090:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "14080:2:1"
},
"nodeType": "YulFunctionCall",
"src": "14080:77:1"
},
"nodeType": "YulIf",
"src": "14077:103:1"
},
{
"nodeType": "YulAssignment",
"src": "14189:20:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "14200:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14207:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14196:3:1"
},
"nodeType": "YulFunctionCall",
"src": "14196:13:1"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "14189:3:1"
}
]
}
]
},
"name": "increment_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "14011:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "14021:3:1",
"type": ""
}
],
"src": "13982:233:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14249:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14266:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14269:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14259:6:1"
},
"nodeType": "YulFunctionCall",
"src": "14259:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "14259:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14363:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14366:4:1",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14356:6:1"
},
"nodeType": "YulFunctionCall",
"src": "14356:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "14356:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14387:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14390:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "14380:6:1"
},
"nodeType": "YulFunctionCall",
"src": "14380:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "14380:15:1"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "14221:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14449:143:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14459:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "14482:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "14464:17:1"
},
"nodeType": "YulFunctionCall",
"src": "14464:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "14459:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "14493:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "14516:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "14498:17:1"
},
"nodeType": "YulFunctionCall",
"src": "14498:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "14493:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "14540:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "14542:16:1"
},
"nodeType": "YulFunctionCall",
"src": "14542:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "14542:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "14537:1:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "14530:6:1"
},
"nodeType": "YulFunctionCall",
"src": "14530:9:1"
},
"nodeType": "YulIf",
"src": "14527:35:1"
},
{
"nodeType": "YulAssignment",
"src": "14572:14:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "14581:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "14584:1:1"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "14577:3:1"
},
"nodeType": "YulFunctionCall",
"src": "14577:9:1"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "14572:1:1"
}
]
}
]
},
"name": "checked_div_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "14438:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "14441:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "14447:1:1",
"type": ""
}
],
"src": "14407:185:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14643:146:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14653:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "14676:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "14658:17:1"
},
"nodeType": "YulFunctionCall",
"src": "14658:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "14653:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "14687:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "14710:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "14692:17:1"
},
"nodeType": "YulFunctionCall",
"src": "14692:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "14687:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "14734:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "14736:16:1"
},
"nodeType": "YulFunctionCall",
"src": "14736:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "14736:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "14728:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "14731:1:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "14725:2:1"
},
"nodeType": "YulFunctionCall",
"src": "14725:8:1"
},
"nodeType": "YulIf",
"src": "14722:34:1"
},
{
"nodeType": "YulAssignment",
"src": "14766:17:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "14778:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "14781:1:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "14774:3:1"
},
"nodeType": "YulFunctionCall",
"src": "14774:9:1"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "14766:4:1"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "14629:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "14632:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "14638:4:1",
"type": ""
}
],
"src": "14598:191:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14829:142:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14839:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "14862:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "14844:17:1"
},
"nodeType": "YulFunctionCall",
"src": "14844:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "14839:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "14873:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "14896:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "14878:17:1"
},
"nodeType": "YulFunctionCall",
"src": "14878:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "14873:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "14920:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "14922:16:1"
},
"nodeType": "YulFunctionCall",
"src": "14922:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "14922:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "14917:1:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "14910:6:1"
},
"nodeType": "YulFunctionCall",
"src": "14910:9:1"
},
"nodeType": "YulIf",
"src": "14907:35:1"
},
{
"nodeType": "YulAssignment",
"src": "14951:14:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "14960:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "14963:1:1"
}
],
"functionName": {
"name": "mod",
"nodeType": "YulIdentifier",
"src": "14956:3:1"
},
"nodeType": "YulFunctionCall",
"src": "14956:9:1"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "14951:1:1"
}
]
}
]
},
"name": "mod_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "14818:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "14821:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "14827:1:1",
"type": ""
}
],
"src": "14795:176:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15021:261:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15031:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "15054:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "15036:17:1"
},
"nodeType": "YulFunctionCall",
"src": "15036:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "15031:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "15065:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "15088:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "15070:17:1"
},
"nodeType": "YulFunctionCall",
"src": "15070:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "15065:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "15228:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "15230:16:1"
},
"nodeType": "YulFunctionCall",
"src": "15230:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "15230:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "15149:1:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15156:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "15224:1:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "15152:3:1"
},
"nodeType": "YulFunctionCall",
"src": "15152:74:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "15146:2:1"
},
"nodeType": "YulFunctionCall",
"src": "15146:81:1"
},
"nodeType": "YulIf",
"src": "15143:107:1"
},
{
"nodeType": "YulAssignment",
"src": "15260:16:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "15271:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "15274:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15267:3:1"
},
"nodeType": "YulFunctionCall",
"src": "15267:9:1"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "15260:3:1"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "15008:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "15011:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "15017:3:1",
"type": ""
}
],
"src": "14977:305:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15316:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15333:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15336:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15326:6:1"
},
"nodeType": "YulFunctionCall",
"src": "15326:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "15326:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15430:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15433:4:1",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15423:6:1"
},
"nodeType": "YulFunctionCall",
"src": "15423:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "15423:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15454:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15457:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "15447:6:1"
},
"nodeType": "YulFunctionCall",
"src": "15447:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "15447:15:1"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "15288:180:1"
}
]
},
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_bytes4(value) -> cleaned {\n cleaned := and(value, 0xffffffff00000000000000000000000000000000000000000000000000000000)\n }\n\n function validator_revert_t_bytes4(value) {\n if iszero(eq(value, cleanup_t_bytes4(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_bytes4(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bytes4(value)\n }\n\n function abi_decode_tuple_t_bytes4(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_bytes4(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\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 cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\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 abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function validator_revert_t_bool(value) {\n if iszero(eq(value, cleanup_t_bool(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_bool(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bool(value)\n }\n\n function abi_decode_tuple_t_addresst_bool(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_bool(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 panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function array_allocation_size_t_bytes_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function copy_calldata_to_memory(src, dst, length) {\n calldatacopy(dst, src, length)\n // clear end\n mstore(add(dst, length), 0)\n }\n\n function abi_decode_available_length_t_bytes_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_bytes_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_calldata_to_memory(src, dst, length)\n }\n\n // bytes\n function abi_decode_t_bytes_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_bytes_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3 {\n if slt(sub(dataEnd, headStart), 128) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 96))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value3 := abi_decode_t_bytes_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\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_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(add(value, 0x20), pos, length)\n end := add(pos, length)\n }\n\n function abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos , value1, value0) -> end {\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value0, pos)\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value1, pos)\n\n end := pos\n }\n\n function array_length_t_bytes_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_bytes_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed(headStart , value3, value2, value1, value0) -> tail {\n tail := add(headStart, 128)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_address_to_t_address_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n mstore(add(headStart, 96), sub(tail, headStart))\n tail := abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack(value3, tail)\n\n }\n\n function abi_decode_t_bytes4_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_bytes4(value)\n }\n\n function abi_decode_tuple_t_bytes4_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes4_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function increment_t_uint256(value) -> ret {\n value := cleanup_t_uint256(value)\n if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n ret := add(value, 1)\n }\n\n function panic_error_0x12() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x12)\n revert(0, 0x24)\n }\n\n function checked_div_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n\n r := div(x, y)\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n if lt(x, y) { panic_error_0x11() }\n\n diff := sub(x, y)\n }\n\n function mod_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n r := mod(x, y)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function panic_error_0x32() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x32)\n revert(0, 0x24)\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100ea5760003560e01c80636352211e1161008c578063a22cb46511610066578063a22cb4651461025d578063b88d4fde14610279578063c87b56dd14610295578063e985e9c5146102c5576100ea565b80636352211e146101df57806370a082311461020f57806395d89b411461023f576100ea565b8063095ea7b3116100c8578063095ea7b31461016d57806318160ddd1461018957806323b872dd146101a757806342842e0e146101c3576100ea565b806301ffc9a7146100ef57806306fdde031461011f578063081812fc1461013d575b600080fd5b61010960048036038101906101049190611731565b6102f5565b6040516101169190611779565b60405180910390f35b6101276103d7565b604051610134919061182d565b60405180910390f35b61015760048036038101906101529190611885565b610469565b60405161016491906118f3565b60405180910390f35b6101876004803603810190610182919061193a565b6104e5565b005b6101916105ef565b60405161019e9190611989565b60405180910390f35b6101c160048036038101906101bc91906119a4565b610606565b005b6101dd60048036038101906101d891906119a4565b610616565b005b6101f960048036038101906101f49190611885565b610636565b60405161020691906118f3565b60405180910390f35b610229600480360381019061022491906119f7565b61064c565b6040516102369190611989565b60405180910390f35b61024761071b565b604051610254919061182d565b60405180910390f35b61027760048036038101906102729190611a50565b6107ad565b005b610293600480360381019061028e9190611bc5565b610924565b005b6102af60048036038101906102aa9190611885565b6109a0565b6040516102bc919061182d565b60405180910390f35b6102df60048036038101906102da9190611c48565b610a3e565b6040516102ec9190611779565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806103c057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806103d057506103cf82610ad2565b5b9050919050565b6060600280546103e690611cb7565b80601f016020809104026020016040519081016040528092919081815260200182805461041290611cb7565b801561045f5780601f106104345761010080835404028352916020019161045f565b820191906000526020600020905b81548152906001019060200180831161044257829003601f168201915b5050505050905090565b600061047482610b3c565b6104aa576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006104f082610636565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610557576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610576610b8a565b73ffffffffffffffffffffffffffffffffffffffff16141580156105a857506105a6816105a1610b8a565b610a3e565b155b156105df576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6105ea838383610b92565b505050565b60006105f9610c44565b6001546000540303905090565b610611838383610c49565b505050565b61063183838360405180602001604052806000815250610924565b505050565b6000610641826110fd565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036106b3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b60606003805461072a90611cb7565b80601f016020809104026020016040519081016040528092919081815260200182805461075690611cb7565b80156107a35780601f10610778576101008083540402835291602001916107a3565b820191906000526020600020905b81548152906001019060200180831161078657829003601f168201915b5050505050905090565b6107b5610b8a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610819576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610826610b8a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166108d3610b8a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516109189190611779565b60405180910390a35050565b61092f848484610c49565b61094e8373ffffffffffffffffffffffffffffffffffffffff1661138c565b80156109635750610961848484846113af565b155b1561099a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606109ab82610b3c565b6109e1576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006109eb6114ff565b90506000815103610a0b5760405180602001604052806000815250610a36565b80610a1584611516565b604051602001610a26929190611d24565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081610b47610c44565b11158015610b56575060005482105b8015610b83575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000610c54826110fd565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610cbf576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16610ce0610b8a565b73ffffffffffffffffffffffffffffffffffffffff161480610d0f5750610d0e85610d09610b8a565b610a3e565b5b80610d545750610d1d610b8a565b73ffffffffffffffffffffffffffffffffffffffff16610d3c84610469565b73ffffffffffffffffffffffffffffffffffffffff16145b905080610d8d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610df3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e008585856001611676565b610e0c60008487610b92565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361108b57600054821461108a57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110f6858585600161167c565b5050505050565b611105611682565b600082905080611113610c44565b11158015611122575060005481105b15611355576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161135357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611237578092505050611387565b5b60011561135257818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461134d578092505050611387565b611238565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026113d5610b8a565b8786866040518563ffffffff1660e01b81526004016113f79493929190611d9d565b6020604051808303816000875af192505050801561143357506040513d601f19601f820116820180604052508101906114309190611dfe565b60015b6114ac573d8060008114611463576040519150601f19603f3d011682016040523d82523d6000602084013e611468565b606091505b5060008151036114a4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060405180602001604052806000815250905090565b60606000820361155d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611671565b600082905060005b6000821461158f57808061157890611e5a565b915050600a826115889190611ed1565b9150611565565b60008167ffffffffffffffff8111156115ab576115aa611a9a565b5b6040519080825280601f01601f1916602001820160405280156115dd5781602001600182028036833780820191505090505b5090505b6000851461166a576001826115f69190611f02565b9150600a856116059190611f36565b60306116119190611f67565b60f81b81838151811061162757611626611fbd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856116639190611ed1565b94506115e1565b8093505050505b919050565b50505050565b50505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61170e816116d9565b811461171957600080fd5b50565b60008135905061172b81611705565b92915050565b600060208284031215611747576117466116cf565b5b60006117558482850161171c565b91505092915050565b60008115159050919050565b6117738161175e565b82525050565b600060208201905061178e600083018461176a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156117ce5780820151818401526020810190506117b3565b838111156117dd576000848401525b50505050565b6000601f19601f8301169050919050565b60006117ff82611794565b611809818561179f565b93506118198185602086016117b0565b611822816117e3565b840191505092915050565b6000602082019050818103600083015261184781846117f4565b905092915050565b6000819050919050565b6118628161184f565b811461186d57600080fd5b50565b60008135905061187f81611859565b92915050565b60006020828403121561189b5761189a6116cf565b5b60006118a984828501611870565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006118dd826118b2565b9050919050565b6118ed816118d2565b82525050565b600060208201905061190860008301846118e4565b92915050565b611917816118d2565b811461192257600080fd5b50565b6000813590506119348161190e565b92915050565b60008060408385031215611951576119506116cf565b5b600061195f85828601611925565b925050602061197085828601611870565b9150509250929050565b6119838161184f565b82525050565b600060208201905061199e600083018461197a565b92915050565b6000806000606084860312156119bd576119bc6116cf565b5b60006119cb86828701611925565b93505060206119dc86828701611925565b92505060406119ed86828701611870565b9150509250925092565b600060208284031215611a0d57611a0c6116cf565b5b6000611a1b84828501611925565b91505092915050565b611a2d8161175e565b8114611a3857600080fd5b50565b600081359050611a4a81611a24565b92915050565b60008060408385031215611a6757611a666116cf565b5b6000611a7585828601611925565b9250506020611a8685828601611a3b565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611ad2826117e3565b810181811067ffffffffffffffff82111715611af157611af0611a9a565b5b80604052505050565b6000611b046116c5565b9050611b108282611ac9565b919050565b600067ffffffffffffffff821115611b3057611b2f611a9a565b5b611b39826117e3565b9050602081019050919050565b82818337600083830152505050565b6000611b68611b6384611b15565b611afa565b905082815260208101848484011115611b8457611b83611a95565b5b611b8f848285611b46565b509392505050565b600082601f830112611bac57611bab611a90565b5b8135611bbc848260208601611b55565b91505092915050565b60008060008060808587031215611bdf57611bde6116cf565b5b6000611bed87828801611925565b9450506020611bfe87828801611925565b9350506040611c0f87828801611870565b925050606085013567ffffffffffffffff811115611c3057611c2f6116d4565b5b611c3c87828801611b97565b91505092959194509250565b60008060408385031215611c5f57611c5e6116cf565b5b6000611c6d85828601611925565b9250506020611c7e85828601611925565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611ccf57607f821691505b602082108103611ce257611ce1611c88565b5b50919050565b600081905092915050565b6000611cfe82611794565b611d088185611ce8565b9350611d188185602086016117b0565b80840191505092915050565b6000611d308285611cf3565b9150611d3c8284611cf3565b91508190509392505050565b600081519050919050565b600082825260208201905092915050565b6000611d6f82611d48565b611d798185611d53565b9350611d898185602086016117b0565b611d92816117e3565b840191505092915050565b6000608082019050611db260008301876118e4565b611dbf60208301866118e4565b611dcc604083018561197a565b8181036060830152611dde8184611d64565b905095945050505050565b600081519050611df881611705565b92915050565b600060208284031215611e1457611e136116cf565b5b6000611e2284828501611de9565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611e658261184f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611e9757611e96611e2b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611edc8261184f565b9150611ee78361184f565b925082611ef757611ef6611ea2565b5b828204905092915050565b6000611f0d8261184f565b9150611f188361184f565b925082821015611f2b57611f2a611e2b565b5b828203905092915050565b6000611f418261184f565b9150611f4c8361184f565b925082611f5c57611f5b611ea2565b5b828206905092915050565b6000611f728261184f565b9150611f7d8361184f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611fb257611fb1611e2b565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220cd37112b23c6e71b71e13c577ae0b4899d7337eba41e403b3c418339bf6fc6d364736f6c634300080d0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xEA JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6352211E GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x25D JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x279 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x295 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x2C5 JUMPI PUSH2 0xEA JUMP JUMPDEST DUP1 PUSH4 0x6352211E EQ PUSH2 0x1DF JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x20F JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x23F JUMPI PUSH2 0xEA JUMP JUMPDEST DUP1 PUSH4 0x95EA7B3 GT PUSH2 0xC8 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x16D JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x189 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x1A7 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x1C3 JUMPI PUSH2 0xEA JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xEF JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x11F JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x13D JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x109 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x104 SWAP2 SWAP1 PUSH2 0x1731 JUMP JUMPDEST PUSH2 0x2F5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x116 SWAP2 SWAP1 PUSH2 0x1779 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x127 PUSH2 0x3D7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x134 SWAP2 SWAP1 PUSH2 0x182D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x157 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x152 SWAP2 SWAP1 PUSH2 0x1885 JUMP JUMPDEST PUSH2 0x469 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x164 SWAP2 SWAP1 PUSH2 0x18F3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x187 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x182 SWAP2 SWAP1 PUSH2 0x193A JUMP JUMPDEST PUSH2 0x4E5 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x191 PUSH2 0x5EF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x19E SWAP2 SWAP1 PUSH2 0x1989 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1C1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1BC SWAP2 SWAP1 PUSH2 0x19A4 JUMP JUMPDEST PUSH2 0x606 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1DD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1D8 SWAP2 SWAP1 PUSH2 0x19A4 JUMP JUMPDEST PUSH2 0x616 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1F9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1F4 SWAP2 SWAP1 PUSH2 0x1885 JUMP JUMPDEST PUSH2 0x636 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x206 SWAP2 SWAP1 PUSH2 0x18F3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x229 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x224 SWAP2 SWAP1 PUSH2 0x19F7 JUMP JUMPDEST PUSH2 0x64C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x236 SWAP2 SWAP1 PUSH2 0x1989 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x247 PUSH2 0x71B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x254 SWAP2 SWAP1 PUSH2 0x182D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x277 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x272 SWAP2 SWAP1 PUSH2 0x1A50 JUMP JUMPDEST PUSH2 0x7AD JUMP JUMPDEST STOP JUMPDEST PUSH2 0x293 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x28E SWAP2 SWAP1 PUSH2 0x1BC5 JUMP JUMPDEST PUSH2 0x924 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2AF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2AA SWAP2 SWAP1 PUSH2 0x1885 JUMP JUMPDEST PUSH2 0x9A0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2BC SWAP2 SWAP1 PUSH2 0x182D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2DF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2DA SWAP2 SWAP1 PUSH2 0x1C48 JUMP JUMPDEST PUSH2 0xA3E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2EC SWAP2 SWAP1 PUSH2 0x1779 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 PUSH32 0x80AC58CD00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x3C0 JUMPI POP PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH2 0x3D0 JUMPI POP PUSH2 0x3CF DUP3 PUSH2 0xAD2 JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x2 DUP1 SLOAD PUSH2 0x3E6 SWAP1 PUSH2 0x1CB7 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 0x412 SWAP1 PUSH2 0x1CB7 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x45F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x434 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x45F JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x442 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x474 DUP3 PUSH2 0xB3C JUMP JUMPDEST PUSH2 0x4AA JUMPI PUSH1 0x40 MLOAD PUSH32 0xCF4700E400000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x6 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4F0 DUP3 PUSH2 0x636 JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x557 JUMPI PUSH1 0x40 MLOAD PUSH32 0x943F7B8C00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x576 PUSH2 0xB8A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO DUP1 ISZERO PUSH2 0x5A8 JUMPI POP PUSH2 0x5A6 DUP2 PUSH2 0x5A1 PUSH2 0xB8A JUMP JUMPDEST PUSH2 0xA3E JUMP JUMPDEST ISZERO JUMPDEST ISZERO PUSH2 0x5DF JUMPI PUSH1 0x40 MLOAD PUSH32 0xCFB3B94200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x5EA DUP4 DUP4 DUP4 PUSH2 0xB92 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5F9 PUSH2 0xC44 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x0 SLOAD SUB SUB SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x611 DUP4 DUP4 DUP4 PUSH2 0xC49 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x631 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x924 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x641 DUP3 PUSH2 0x10FD JUMP JUMPDEST PUSH1 0x0 ADD MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x6B3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8F4EB60400000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x5 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH8 0xFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x72A SWAP1 PUSH2 0x1CB7 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 0x756 SWAP1 PUSH2 0x1CB7 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x7A3 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x778 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x7A3 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x786 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x7B5 PUSH2 0xB8A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x819 JUMPI PUSH1 0x40 MLOAD PUSH32 0xB06307DB00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x7 PUSH1 0x0 PUSH2 0x826 PUSH2 0xB8A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8D3 PUSH2 0xB8A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 DUP4 PUSH1 0x40 MLOAD PUSH2 0x918 SWAP2 SWAP1 PUSH2 0x1779 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0x92F DUP5 DUP5 DUP5 PUSH2 0xC49 JUMP JUMPDEST PUSH2 0x94E DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x138C JUMP JUMPDEST DUP1 ISZERO PUSH2 0x963 JUMPI POP PUSH2 0x961 DUP5 DUP5 DUP5 DUP5 PUSH2 0x13AF JUMP JUMPDEST ISZERO JUMPDEST ISZERO PUSH2 0x99A JUMPI PUSH1 0x40 MLOAD PUSH32 0xD1A57ED600000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x9AB DUP3 PUSH2 0xB3C JUMP JUMPDEST PUSH2 0x9E1 JUMPI PUSH1 0x40 MLOAD PUSH32 0xA14C4B5000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x9EB PUSH2 0x14FF JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD SUB PUSH2 0xA0B JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0xA36 JUMP JUMPDEST DUP1 PUSH2 0xA15 DUP5 PUSH2 0x1516 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xA26 SWAP3 SWAP2 SWAP1 PUSH2 0x1D24 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x7 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0xB47 PUSH2 0xC44 JUMP JUMPDEST GT ISZERO DUP1 ISZERO PUSH2 0xB56 JUMPI POP PUSH1 0x0 SLOAD DUP3 LT JUMPDEST DUP1 ISZERO PUSH2 0xB83 JUMPI POP PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x1C SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST DUP3 PUSH1 0x6 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP JUMP JUMPDEST PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC54 DUP3 PUSH2 0x10FD JUMP JUMPDEST SWAP1 POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH1 0x0 ADD MLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xCBF JUMPI PUSH1 0x40 MLOAD PUSH32 0xA114810000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xCE0 PUSH2 0xB8A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0xD0F JUMPI POP PUSH2 0xD0E DUP6 PUSH2 0xD09 PUSH2 0xB8A JUMP JUMPDEST PUSH2 0xA3E JUMP JUMPDEST JUMPDEST DUP1 PUSH2 0xD54 JUMPI POP PUSH2 0xD1D PUSH2 0xB8A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xD3C DUP5 PUSH2 0x469 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST SWAP1 POP DUP1 PUSH2 0xD8D JUMPI PUSH1 0x40 MLOAD PUSH32 0x59C896BE00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xDF3 JUMPI PUSH1 0x40 MLOAD PUSH32 0xEA553B3400000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xE00 DUP6 DUP6 DUP6 PUSH1 0x1 PUSH2 0x1676 JUMP JUMPDEST PUSH2 0xE0C PUSH1 0x0 DUP5 DUP8 PUSH2 0xB92 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x5 PUSH1 0x0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 DUP3 DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND SUB SWAP3 POP PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH8 0xFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH8 0xFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 PUSH1 0x5 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 DUP3 DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND ADD SWAP3 POP PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH8 0xFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH8 0xFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x0 PUSH1 0x4 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 POP DUP5 DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP TIMESTAMP DUP2 PUSH1 0x0 ADD PUSH1 0x14 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH8 0xFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH8 0xFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x0 PUSH1 0x1 DUP6 ADD SWAP1 POP PUSH1 0x0 PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH1 0x0 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x108B JUMPI PUSH1 0x0 SLOAD DUP3 EQ PUSH2 0x108A JUMPI DUP8 DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP5 PUSH1 0x20 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x14 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH8 0xFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH8 0xFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP JUMPDEST JUMPDEST POP POP POP DUP3 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH2 0x10F6 DUP6 DUP6 DUP6 PUSH1 0x1 PUSH2 0x167C JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH2 0x1105 PUSH2 0x1682 JUMP JUMPDEST PUSH1 0x0 DUP3 SWAP1 POP DUP1 PUSH2 0x1113 PUSH2 0xC44 JUMP JUMPDEST GT ISZERO DUP1 ISZERO PUSH2 0x1122 JUMPI POP PUSH1 0x0 SLOAD DUP2 LT JUMPDEST ISZERO PUSH2 0x1355 JUMPI PUSH1 0x0 PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0x14 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH8 0xFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0x1C SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE POP POP SWAP1 POP DUP1 PUSH1 0x40 ADD MLOAD PUSH2 0x1353 JUMPI PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH1 0x0 ADD MLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1237 JUMPI DUP1 SWAP3 POP POP POP PUSH2 0x1387 JUMP JUMPDEST JUMPDEST PUSH1 0x1 ISZERO PUSH2 0x1352 JUMPI DUP2 DUP1 PUSH1 0x1 SWAP1 SUB SWAP3 POP POP PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0x14 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH8 0xFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP3 ADD PUSH1 0x1C SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE POP POP SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH1 0x0 ADD MLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x134D JUMPI DUP1 SWAP3 POP POP POP PUSH2 0x1387 JUMP JUMPDEST PUSH2 0x1238 JUMP JUMPDEST JUMPDEST POP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xDF2D9B4200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 PUSH2 0x13D5 PUSH2 0xB8A JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x13F7 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1D9D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1433 JUMPI POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1430 SWAP2 SWAP1 PUSH2 0x1DFE JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x14AC JUMPI RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x1463 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x1468 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH1 0x0 DUP2 MLOAD SUB PUSH2 0x14A4 JUMPI PUSH1 0x40 MLOAD PUSH32 0xD1A57ED600000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 MLOAD DUP2 PUSH1 0x20 ADD REVERT JUMPDEST PUSH4 0x150B7A02 PUSH1 0xE0 SHL PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP2 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP2 POP POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 SUB PUSH2 0x155D JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x3000000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP1 POP PUSH2 0x1671 JUMP JUMPDEST PUSH1 0x0 DUP3 SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x0 DUP3 EQ PUSH2 0x158F JUMPI DUP1 DUP1 PUSH2 0x1578 SWAP1 PUSH2 0x1E5A JUMP JUMPDEST SWAP2 POP POP PUSH1 0xA DUP3 PUSH2 0x1588 SWAP2 SWAP1 PUSH2 0x1ED1 JUMP JUMPDEST SWAP2 POP PUSH2 0x1565 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x15AB JUMPI PUSH2 0x15AA PUSH2 0x1A9A JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x15DD JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x1 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP JUMPDEST PUSH1 0x0 DUP6 EQ PUSH2 0x166A JUMPI PUSH1 0x1 DUP3 PUSH2 0x15F6 SWAP2 SWAP1 PUSH2 0x1F02 JUMP JUMPDEST SWAP2 POP PUSH1 0xA DUP6 PUSH2 0x1605 SWAP2 SWAP1 PUSH2 0x1F36 JUMP JUMPDEST PUSH1 0x30 PUSH2 0x1611 SWAP2 SWAP1 PUSH2 0x1F67 JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x1627 JUMPI PUSH2 0x1626 PUSH2 0x1FBD JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0xA DUP6 PUSH2 0x1663 SWAP2 SWAP1 PUSH2 0x1ED1 JUMP JUMPDEST SWAP5 POP PUSH2 0x15E1 JUMP JUMPDEST DUP1 SWAP4 POP POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 ISZERO ISZERO DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x170E DUP2 PUSH2 0x16D9 JUMP JUMPDEST DUP2 EQ PUSH2 0x1719 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x172B DUP2 PUSH2 0x1705 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1747 JUMPI PUSH2 0x1746 PUSH2 0x16CF JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1755 DUP5 DUP3 DUP6 ADD PUSH2 0x171C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1773 DUP2 PUSH2 0x175E JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x178E PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x176A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x17CE JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x17B3 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x17DD JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17FF DUP3 PUSH2 0x1794 JUMP JUMPDEST PUSH2 0x1809 DUP2 DUP6 PUSH2 0x179F JUMP JUMPDEST SWAP4 POP PUSH2 0x1819 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x17B0 JUMP JUMPDEST PUSH2 0x1822 DUP2 PUSH2 0x17E3 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1847 DUP2 DUP5 PUSH2 0x17F4 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1862 DUP2 PUSH2 0x184F JUMP JUMPDEST DUP2 EQ PUSH2 0x186D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x187F DUP2 PUSH2 0x1859 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x189B JUMPI PUSH2 0x189A PUSH2 0x16CF JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x18A9 DUP5 DUP3 DUP6 ADD PUSH2 0x1870 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x18DD DUP3 PUSH2 0x18B2 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x18ED DUP2 PUSH2 0x18D2 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1908 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x18E4 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1917 DUP2 PUSH2 0x18D2 JUMP JUMPDEST DUP2 EQ PUSH2 0x1922 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1934 DUP2 PUSH2 0x190E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1951 JUMPI PUSH2 0x1950 PUSH2 0x16CF JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x195F DUP6 DUP3 DUP7 ADD PUSH2 0x1925 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1970 DUP6 DUP3 DUP7 ADD PUSH2 0x1870 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x1983 DUP2 PUSH2 0x184F JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x199E PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x197A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x19BD JUMPI PUSH2 0x19BC PUSH2 0x16CF JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x19CB DUP7 DUP3 DUP8 ADD PUSH2 0x1925 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x19DC DUP7 DUP3 DUP8 ADD PUSH2 0x1925 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x19ED DUP7 DUP3 DUP8 ADD PUSH2 0x1870 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1A0D JUMPI PUSH2 0x1A0C PUSH2 0x16CF JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1A1B DUP5 DUP3 DUP6 ADD PUSH2 0x1925 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1A2D DUP2 PUSH2 0x175E JUMP JUMPDEST DUP2 EQ PUSH2 0x1A38 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1A4A DUP2 PUSH2 0x1A24 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1A67 JUMPI PUSH2 0x1A66 PUSH2 0x16CF JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1A75 DUP6 DUP3 DUP7 ADD PUSH2 0x1925 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1A86 DUP6 DUP3 DUP7 ADD PUSH2 0x1A3B JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x1AD2 DUP3 PUSH2 0x17E3 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x1AF1 JUMPI PUSH2 0x1AF0 PUSH2 0x1A9A JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1B04 PUSH2 0x16C5 JUMP JUMPDEST SWAP1 POP PUSH2 0x1B10 DUP3 DUP3 PUSH2 0x1AC9 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1B30 JUMPI PUSH2 0x1B2F PUSH2 0x1A9A JUMP JUMPDEST JUMPDEST PUSH2 0x1B39 DUP3 PUSH2 0x17E3 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1B68 PUSH2 0x1B63 DUP5 PUSH2 0x1B15 JUMP JUMPDEST PUSH2 0x1AFA JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x1B84 JUMPI PUSH2 0x1B83 PUSH2 0x1A95 JUMP JUMPDEST JUMPDEST PUSH2 0x1B8F DUP5 DUP3 DUP6 PUSH2 0x1B46 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1BAC JUMPI PUSH2 0x1BAB PUSH2 0x1A90 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1BBC DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x1B55 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1BDF JUMPI PUSH2 0x1BDE PUSH2 0x16CF JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1BED DUP8 DUP3 DUP9 ADD PUSH2 0x1925 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x1BFE DUP8 DUP3 DUP9 ADD PUSH2 0x1925 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x1C0F DUP8 DUP3 DUP9 ADD PUSH2 0x1870 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1C30 JUMPI PUSH2 0x1C2F PUSH2 0x16D4 JUMP JUMPDEST JUMPDEST PUSH2 0x1C3C DUP8 DUP3 DUP9 ADD PUSH2 0x1B97 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1C5F JUMPI PUSH2 0x1C5E PUSH2 0x16CF JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1C6D DUP6 DUP3 DUP7 ADD PUSH2 0x1925 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1C7E DUP6 DUP3 DUP7 ADD PUSH2 0x1925 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x1CCF JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x1CE2 JUMPI PUSH2 0x1CE1 PUSH2 0x1C88 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1CFE DUP3 PUSH2 0x1794 JUMP JUMPDEST PUSH2 0x1D08 DUP2 DUP6 PUSH2 0x1CE8 JUMP JUMPDEST SWAP4 POP PUSH2 0x1D18 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x17B0 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D30 DUP3 DUP6 PUSH2 0x1CF3 JUMP JUMPDEST SWAP2 POP PUSH2 0x1D3C DUP3 DUP5 PUSH2 0x1CF3 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D6F DUP3 PUSH2 0x1D48 JUMP JUMPDEST PUSH2 0x1D79 DUP2 DUP6 PUSH2 0x1D53 JUMP JUMPDEST SWAP4 POP PUSH2 0x1D89 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x17B0 JUMP JUMPDEST PUSH2 0x1D92 DUP2 PUSH2 0x17E3 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x1DB2 PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x18E4 JUMP JUMPDEST PUSH2 0x1DBF PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x18E4 JUMP JUMPDEST PUSH2 0x1DCC PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x197A JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x1DDE DUP2 DUP5 PUSH2 0x1D64 JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x1DF8 DUP2 PUSH2 0x1705 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1E14 JUMPI PUSH2 0x1E13 PUSH2 0x16CF JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1E22 DUP5 DUP3 DUP6 ADD PUSH2 0x1DE9 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1E65 DUP3 PUSH2 0x184F JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 SUB PUSH2 0x1E97 JUMPI PUSH2 0x1E96 PUSH2 0x1E2B JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1EDC DUP3 PUSH2 0x184F JUMP JUMPDEST SWAP2 POP PUSH2 0x1EE7 DUP4 PUSH2 0x184F JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x1EF7 JUMPI PUSH2 0x1EF6 PUSH2 0x1EA2 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1F0D DUP3 PUSH2 0x184F JUMP JUMPDEST SWAP2 POP PUSH2 0x1F18 DUP4 PUSH2 0x184F JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x1F2B JUMPI PUSH2 0x1F2A PUSH2 0x1E2B JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1F41 DUP3 PUSH2 0x184F JUMP JUMPDEST SWAP2 POP PUSH2 0x1F4C DUP4 PUSH2 0x184F JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x1F5C JUMPI PUSH2 0x1F5B PUSH2 0x1EA2 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MOD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1F72 DUP3 PUSH2 0x184F JUMP JUMPDEST SWAP2 POP PUSH2 0x1F7D DUP4 PUSH2 0x184F JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x1FB2 JUMPI PUSH2 0x1FB1 PUSH2 0x1E2B JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xCD CALLDATACOPY GT 0x2B 0x23 0xC6 0xE7 SHL PUSH18 0xE13C577AE0B4899D7337EBA41E403B3C4183 CODECOPY 0xBF PUSH16 0xC6D364736F6C634300080D0033000000 ",
"sourceMap": "40688:20331:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43775:300;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46803:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48259:200;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47836:362;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43046:297;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49098:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49328:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46618:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44134:203;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46965:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48526:282;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49573:359;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47133:313;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48874:162;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43775:300;43877:4;43927:25;43912:40;;;:11;:40;;;;:104;;;;43983:33;43968:48;;;:11;:48;;;;43912:104;:156;;;;44032:36;44056:11;44032:23;:36::i;:::-;43912:156;43893:175;;43775:300;;;:::o;46803:98::-;46857:13;46889:5;46882:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46803:98;:::o;48259:200::-;48327:7;48351:16;48359:7;48351;:16::i;:::-;48346:64;;48376:34;;;;;;;;;;;;;;48346:64;48428:15;:24;48444:7;48428:24;;;;;;;;;;;;;;;;;;;;;48421:31;;48259:200;;;:::o;47836:362::-;47908:13;47924:24;47940:7;47924:15;:24::i;:::-;47908:40;;47968:5;47962:11;;:2;:11;;;47958:48;;47982:24;;;;;;;;;;;;;;47958:48;48037:5;48021:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;48047:37;48064:5;48071:12;:10;:12::i;:::-;48047:16;:37::i;:::-;48046:38;48021:63;48017:136;;;48107:35;;;;;;;;;;;;;;48017:136;48163:28;48172:2;48176:7;48185:5;48163:8;:28::i;:::-;47898:300;47836:362;;:::o;43046:297::-;43090:7;43311:15;:13;:15::i;:::-;43296:12;;43280:13;;:28;:46;43273:53;;43046:297;:::o;49098:164::-;49227:28;49237:4;49243:2;49247:7;49227:9;:28::i;:::-;49098:164;;;:::o;49328:179::-;49461:39;49478:4;49484:2;49488:7;49461:39;;;;;;;;;;;;:16;:39::i;:::-;49328:179;;;:::o;46618:123::-;46682:7;46708:21;46721:7;46708:12;:21::i;:::-;:26;;;46701:33;;46618:123;;;:::o;44134:203::-;44198:7;44238:1;44221:19;;:5;:19;;;44217:60;;44249:28;;;;;;;;;;;;;;44217:60;44302:12;:19;44315:5;44302:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;44294:36;;44287:43;;44134:203;;;:::o;46965:102::-;47021:13;47053:7;47046:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46965:102;:::o;48526:282::-;48636:12;:10;:12::i;:::-;48624:24;;:8;:24;;;48620:54;;48657:17;;;;;;;;;;;;;;48620:54;48730:8;48685:18;:32;48704:12;:10;:12::i;:::-;48685:32;;;;;;;;;;;;;;;:42;48718:8;48685:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;48782:8;48753:48;;48768:12;:10;:12::i;:::-;48753:48;;;48792:8;48753:48;;;;;;:::i;:::-;;;;;;;;48526:282;;:::o;49573:359::-;49734:28;49744:4;49750:2;49754:7;49734:9;:28::i;:::-;49776:15;:2;:13;;;:15::i;:::-;:76;;;;;49796:56;49827:4;49833:2;49837:7;49846:5;49796:30;:56::i;:::-;49795:57;49776:76;49772:154;;;49875:40;;;;;;;;;;;;;;49772:154;49573:359;;;;:::o;47133:313::-;47206:13;47236:16;47244:7;47236;:16::i;:::-;47231:59;;47261:29;;;;;;;;;;;;;;47231:59;47301:21;47325:10;:8;:10::i;:::-;47301:34;;47377:1;47358:7;47352:21;:26;:87;;;;;;;;;;;;;;;;;47405:7;47414:18;:7;:16;:18::i;:::-;47388:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47352:87;47345:94;;;47133:313;;;:::o;48874:162::-;48971:4;48994:18;:25;49013:5;48994:25;;;;;;;;;;;;;;;:35;49020:8;48994:35;;;;;;;;;;;;;;;;;;;;;;;;;48987:42;;48874:162;;;;:::o;11008:155::-;11093:4;11131:25;11116:40;;;:11;:40;;;;11109:47;;11008:155;;;:::o;50178:172::-;50235:4;50277:7;50258:15;:13;:15::i;:::-;:26;;:53;;;;;50298:13;;50288:7;:23;50258:53;:85;;;;;50316:11;:20;50328:7;50316:20;;;;;;;;;;;:27;;;;;;;;;;;;50315:28;50258:85;50251:92;;50178:172;;;:::o;39437:96::-;39490:7;39516:10;39509:17;;39437:96;:::o;58118:189::-;58255:2;58228:15;:24;58244:7;58228:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;58292:7;58288:2;58272:28;;58281:5;58272:28;;;;;;;;;;;;58118:189;;;:::o;42827:90::-;42883:7;42827:90;:::o;53188:2082::-;53298:35;53336:21;53349:7;53336:12;:21::i;:::-;53298:59;;53394:4;53372:26;;:13;:18;;;:26;;;53368:67;;53407:28;;;;;;;;;;;;;;53368:67;53446:22;53488:4;53472:20;;:12;:10;:12::i;:::-;:20;;;:72;;;;53508:36;53525:4;53531:12;:10;:12::i;:::-;53508:16;:36::i;:::-;53472:72;:124;;;;53584:12;:10;:12::i;:::-;53560:36;;:20;53572:7;53560:11;:20::i;:::-;:36;;;53472:124;53446:151;;53613:17;53608:66;;53639:35;;;;;;;;;;;;;;53608:66;53702:1;53688:16;;:2;:16;;;53684:52;;53713:23;;;;;;;;;;;;;;53684:52;53747:43;53769:4;53775:2;53779:7;53788:1;53747:21;:43::i;:::-;53852:35;53869:1;53873:7;53882:4;53852:8;:35::i;:::-;54207:1;54177:12;:18;54190:4;54177:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54250:1;54222:12;:16;54235:2;54222:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54266:31;54300:11;:20;54312:7;54300:20;;;;;;;;;;;54266:54;;54350:2;54334:8;:13;;;:18;;;;;;;;;;;;;;;;;;54399:15;54366:8;:23;;;:49;;;;;;;;;;;;;;;;;;54663:19;54695:1;54685:7;:11;54663:33;;54710:31;54744:11;:24;54756:11;54744:24;;;;;;;;;;;54710:58;;54811:1;54786:27;;:8;:13;;;;;;;;;;;;:27;;;54782:377;;54993:13;;54978:11;:28;54974:171;;55046:4;55030:8;:13;;;:20;;;;;;;;;;;;;;;;;;55098:13;:28;;;55072:8;:23;;;:54;;;;;;;;;;;;;;;;;;54974:171;54782:377;54153:1016;;;55203:7;55199:2;55184:27;;55193:4;55184:27;;;;;;;;;;;;55221:42;55242:4;55248:2;55252:7;55261:1;55221:20;:42::i;:::-;53288:1982;;53188:2082;;;:::o;45477:1084::-;45539:21;;:::i;:::-;45572:12;45587:7;45572:22;;45652:4;45633:15;:13;:15::i;:::-;:23;;:47;;;;;45667:13;;45660:4;:20;45633:47;45629:868;;;45700:31;45734:11;:17;45746:4;45734:17;;;;;;;;;;;45700:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45774:9;:16;;;45769:714;;45844:1;45818:28;;:9;:14;;;:28;;;45814:99;;45881:9;45874:16;;;;;;45814:99;46210:255;46217:4;46210:255;;;46249:6;;;;;;;;46293:11;:17;46305:4;46293:17;;;;;;;;;;;46281:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46366:1;46340:28;;:9;:14;;;:28;;;46336:107;;46407:9;46400:16;;;;;;46336:107;46210:255;;;45769:714;45682:815;45629:868;46523:31;;;;;;;;;;;;;;45477:1084;;;;:::o;1197:320::-;1257:4;1509:1;1487:7;:19;;;:23;1480:30;;1197:320;;;:::o;58788:650::-;58946:4;58982:2;58966:36;;;59003:12;:10;:12::i;:::-;59017:4;59023:7;59032:5;58966:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;58962:470;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59214:1;59197:6;:13;:18;59193:229;;59242:40;;;;;;;;;;;;;;59193:229;59382:6;59376:13;59367:6;59363:2;59359:15;59352:38;58962:470;59094:45;;;59084:55;;;:6;:55;;;;59077:62;;;58788:650;;;;;;:::o;47687:92::-;47738:13;47763:9;;;;;;;;;;;;;;47687:92;:::o;34378:703::-;34434:13;34660:1;34651:5;:10;34647:51;;34677:10;;;;;;;;;;;;;;;;;;;;;34647:51;34707:12;34722:5;34707:20;;34737:14;34761:75;34776:1;34768:4;:9;34761:75;;34793:8;;;;;:::i;:::-;;;;34823:2;34815:10;;;;;:::i;:::-;;;34761:75;;;34845:19;34877:6;34867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34845:39;;34894:150;34910:1;34901:5;:10;34894:150;;34937:1;34927:11;;;;;:::i;:::-;;;35003:2;34995:5;:10;;;;:::i;:::-;34982:2;:24;;;;:::i;:::-;34969:39;;34952:6;34959;34952:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;35031:2;35022:11;;;;;:::i;:::-;;;34894:150;;;35067:6;35053:21;;;;;34378:703;;;;:::o;60069:154::-;;;;;:::o;60864:153::-;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:329::-;5974:6;6023:2;6011:9;6002:7;5998:23;5994:32;5991:119;;;6029:79;;:::i;:::-;5991:119;6149:1;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6120:117;5915:329;;;;:::o;6250:116::-;6320:21;6335:5;6320:21;:::i;:::-;6313:5;6310:32;6300:60;;6356:1;6353;6346:12;6300:60;6250:116;:::o;6372:133::-;6415:5;6453:6;6440:20;6431:29;;6469:30;6493:5;6469:30;:::i;:::-;6372:133;;;;:::o;6511:468::-;6576:6;6584;6633:2;6621:9;6612:7;6608:23;6604:32;6601:119;;;6639:79;;:::i;:::-;6601:119;6759:1;6784:53;6829:7;6820:6;6809:9;6805:22;6784:53;:::i;:::-;6774:63;;6730:117;6886:2;6912:50;6954:7;6945:6;6934:9;6930:22;6912:50;:::i;:::-;6902:60;;6857:115;6511:468;;;;;:::o;6985:117::-;7094:1;7091;7084:12;7108:117;7217:1;7214;7207:12;7231:180;7279:77;7276:1;7269:88;7376:4;7373:1;7366:15;7400:4;7397:1;7390:15;7417:281;7500:27;7522:4;7500:27;:::i;:::-;7492:6;7488:40;7630:6;7618:10;7615:22;7594:18;7582:10;7579:34;7576:62;7573:88;;;7641:18;;:::i;:::-;7573:88;7681:10;7677:2;7670:22;7460:238;7417:281;;:::o;7704:129::-;7738:6;7765:20;;:::i;:::-;7755:30;;7794:33;7822:4;7814:6;7794:33;:::i;:::-;7704:129;;;:::o;7839:307::-;7900:4;7990:18;7982:6;7979:30;7976:56;;;8012:18;;:::i;:::-;7976:56;8050:29;8072:6;8050:29;:::i;:::-;8042:37;;8134:4;8128;8124:15;8116:23;;7839:307;;;:::o;8152:154::-;8236:6;8231:3;8226;8213:30;8298:1;8289:6;8284:3;8280:16;8273:27;8152:154;;;:::o;8312:410::-;8389:5;8414:65;8430:48;8471:6;8430:48;:::i;:::-;8414:65;:::i;:::-;8405:74;;8502:6;8495:5;8488:21;8540:4;8533:5;8529:16;8578:3;8569:6;8564:3;8560:16;8557:25;8554:112;;;8585:79;;:::i;:::-;8554:112;8675:41;8709:6;8704:3;8699;8675:41;:::i;:::-;8395:327;8312:410;;;;;:::o;8741:338::-;8796:5;8845:3;8838:4;8830:6;8826:17;8822:27;8812:122;;8853:79;;:::i;:::-;8812:122;8970:6;8957:20;8995:78;9069:3;9061:6;9054:4;9046:6;9042:17;8995:78;:::i;:::-;8986:87;;8802:277;8741:338;;;;:::o;9085:943::-;9180:6;9188;9196;9204;9253:3;9241:9;9232:7;9228:23;9224:33;9221:120;;;9260:79;;:::i;:::-;9221:120;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:53;9578:7;9569:6;9558:9;9554:22;9533:53;:::i;:::-;9523:63;;9478:118;9635:2;9661:53;9706:7;9697:6;9686:9;9682:22;9661:53;:::i;:::-;9651:63;;9606:118;9791:2;9780:9;9776:18;9763:32;9822:18;9814:6;9811:30;9808:117;;;9844:79;;:::i;:::-;9808:117;9949:62;10003:7;9994:6;9983:9;9979:22;9949:62;:::i;:::-;9939:72;;9734:287;9085:943;;;;;;;:::o;10034:474::-;10102:6;10110;10159:2;10147:9;10138:7;10134:23;10130:32;10127:119;;;10165:79;;:::i;:::-;10127:119;10285:1;10310:53;10355:7;10346:6;10335:9;10331:22;10310:53;:::i;:::-;10300:63;;10256:117;10412:2;10438:53;10483:7;10474:6;10463:9;10459:22;10438:53;:::i;:::-;10428:63;;10383:118;10034:474;;;;;:::o;10514:180::-;10562:77;10559:1;10552:88;10659:4;10656:1;10649:15;10683:4;10680:1;10673:15;10700:320;10744:6;10781:1;10775:4;10771:12;10761:22;;10828:1;10822:4;10818:12;10849:18;10839:81;;10905:4;10897:6;10893:17;10883:27;;10839:81;10967:2;10959:6;10956:14;10936:18;10933:38;10930:84;;10986:18;;:::i;:::-;10930:84;10751:269;10700:320;;;:::o;11026:148::-;11128:11;11165:3;11150:18;;11026:148;;;;:::o;11180:377::-;11286:3;11314:39;11347:5;11314:39;:::i;:::-;11369:89;11451:6;11446:3;11369:89;:::i;:::-;11362:96;;11467:52;11512:6;11507:3;11500:4;11493:5;11489:16;11467:52;:::i;:::-;11544:6;11539:3;11535:16;11528:23;;11290:267;11180:377;;;;:::o;11563:435::-;11743:3;11765:95;11856:3;11847:6;11765:95;:::i;:::-;11758:102;;11877:95;11968:3;11959:6;11877:95;:::i;:::-;11870:102;;11989:3;11982:10;;11563:435;;;;;:::o;12004:98::-;12055:6;12089:5;12083:12;12073:22;;12004:98;;;:::o;12108:168::-;12191:11;12225:6;12220:3;12213:19;12265:4;12260:3;12256:14;12241:29;;12108:168;;;;:::o;12282:360::-;12368:3;12396:38;12428:5;12396:38;:::i;:::-;12450:70;12513:6;12508:3;12450:70;:::i;:::-;12443:77;;12529:52;12574:6;12569:3;12562:4;12555:5;12551:16;12529:52;:::i;:::-;12606:29;12628:6;12606:29;:::i;:::-;12601:3;12597:39;12590:46;;12372:270;12282:360;;;;:::o;12648:640::-;12843:4;12881:3;12870:9;12866:19;12858:27;;12895:71;12963:1;12952:9;12948:17;12939:6;12895:71;:::i;:::-;12976:72;13044:2;13033:9;13029:18;13020:6;12976:72;:::i;:::-;13058;13126:2;13115:9;13111:18;13102:6;13058:72;:::i;:::-;13177:9;13171:4;13167:20;13162:2;13151:9;13147:18;13140:48;13205:76;13276:4;13267:6;13205:76;:::i;:::-;13197:84;;12648:640;;;;;;;:::o;13294:141::-;13350:5;13381:6;13375:13;13366:22;;13397:32;13423:5;13397:32;:::i;:::-;13294:141;;;;:::o;13441:349::-;13510:6;13559:2;13547:9;13538:7;13534:23;13530:32;13527:119;;;13565:79;;:::i;:::-;13527:119;13685:1;13710:63;13765:7;13756:6;13745:9;13741:22;13710:63;:::i;:::-;13700:73;;13656:127;13441:349;;;;:::o;13796:180::-;13844:77;13841:1;13834:88;13941:4;13938:1;13931:15;13965:4;13962:1;13955:15;13982:233;14021:3;14044:24;14062:5;14044:24;:::i;:::-;14035:33;;14090:66;14083:5;14080:77;14077:103;;14160:18;;:::i;:::-;14077:103;14207:1;14200:5;14196:13;14189:20;;13982:233;;;:::o;14221:180::-;14269:77;14266:1;14259:88;14366:4;14363:1;14356:15;14390:4;14387:1;14380:15;14407:185;14447:1;14464:20;14482:1;14464:20;:::i;:::-;14459:25;;14498:20;14516:1;14498:20;:::i;:::-;14493:25;;14537:1;14527:35;;14542:18;;:::i;:::-;14527:35;14584:1;14581;14577:9;14572:14;;14407:185;;;;:::o;14598:191::-;14638:4;14658:20;14676:1;14658:20;:::i;:::-;14653:25;;14692:20;14710:1;14692:20;:::i;:::-;14687:25;;14731:1;14728;14725:8;14722:34;;;14736:18;;:::i;:::-;14722:34;14781:1;14778;14774:9;14766:17;;14598:191;;;;:::o;14795:176::-;14827:1;14844:20;14862:1;14844:20;:::i;:::-;14839:25;;14878:20;14896:1;14878:20;:::i;:::-;14873:25;;14917:1;14907:35;;14922:18;;:::i;:::-;14907:35;14963:1;14960;14956:9;14951:14;;14795:176;;;;:::o;14977:305::-;15017:3;15036:20;15054:1;15036:20;:::i;:::-;15031:25;;15070:20;15088:1;15070:20;:::i;:::-;15065:25;;15224:1;15156:66;15152:74;15149:1;15146:81;15143:107;;;15230:18;;:::i;:::-;15143:107;15274:1;15271;15267:9;15260:16;;14977:305;;;;:::o;15288:180::-;15336:77;15333:1;15326:88;15433:4;15430:1;15423:15;15457:4;15454:1;15447:15"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "1645200",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"approve(address,uint256)": "infinite",
"balanceOf(address)": "2969",
"getApproved(uint256)": "7458",
"isApprovedForAll(address,address)": "infinite",
"name()": "infinite",
"ownerOf(uint256)": "infinite",
"safeTransferFrom(address,address,uint256)": "infinite",
"safeTransferFrom(address,address,uint256,bytes)": "infinite",
"setApprovalForAll(address,bool)": "infinite",
"supportsInterface(bytes4)": "797",
"symbol()": "infinite",
"tokenURI(uint256)": "5625",
"totalSupply()": "4621",
"transferFrom(address,address,uint256)": "infinite"
},
"internal": {
"_afterTokenTransfers(address,address,uint256,uint256)": "17",
"_approve(address,uint256,address)": "26292",
"_baseURI()": "infinite",
"_beforeTokenTransfers(address,address,uint256,uint256)": "17",
"_burn(uint256)": "infinite",
"_burn(uint256,bool)": "infinite",
"_checkContractOnERC721Received(address,address,uint256,bytes memory)": "infinite",
"_exists(uint256)": "4499",
"_getAux(address)": "infinite",
"_mint(address,uint256,bytes memory,bool)": "infinite",
"_numberBurned(address)": "infinite",
"_numberMinted(address)": "infinite",
"_ownershipOf(uint256)": "infinite",
"_safeMint(address,uint256)": "infinite",
"_safeMint(address,uint256,bytes memory)": "infinite",
"_setAux(address,uint64)": "infinite",
"_startTokenId()": "15",
"_totalMinted()": "infinite",
"_transfer(address,address,uint256)": "infinite"
}
},
"legacyAssembly": {
".code": [
{
"begin": 40688,
"end": 61019,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 40688,
"end": 61019,
"name": "MSTORE",
"source": 0
},
{
"begin": 42581,
"end": 42735,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 42581,
"end": 42735,
"name": "DUP1",
"source": 0
},
{
"begin": 42581,
"end": 42735,
"name": "ISZERO",
"source": 0
},
{
"begin": 42581,
"end": 42735,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 42581,
"end": 42735,
"name": "JUMPI",
"source": 0
},
{
"begin": 42581,
"end": 42735,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 42581,
"end": 42735,
"name": "DUP1",
"source": 0
},
{
"begin": 42581,
"end": 42735,
"name": "REVERT",
"source": 0
},
{
"begin": 42581,
"end": 42735,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 42581,
"end": 42735,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 42581,
"end": 42735,
"name": "POP",
"source": 0
},
{
"begin": 42581,
"end": 42735,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 42581,
"end": 42735,
"name": "MLOAD",
"source": 0
},
{
"begin": 42581,
"end": 42735,
"name": "PUSHSIZE",
"source": 0
},
{
"begin": 42581,
"end": 42735,
"name": "CODESIZE",
"source": 0
},
{
"begin": 42581,
"end": 42735,
"name": "SUB",
"source": 0
},
{
"begin": 42581,
"end": 42735,
"name": "DUP1",
"source": 0
},
{
"begin": 42581,
"end": 42735,
"name": "PUSHSIZE",
"source": 0
},
{
"begin": 42581,
"end": 42735,
"name": "DUP4",
"source": 0
},
{
"begin": 42581,
"end": 42735,
"name": "CODECOPY",
"source": 0
},
{
"begin": 42581,
"end": 42735,
"name": "DUP2",
"source": 0
},
{
"begin": 42581,
"end": 42735,
"name": "DUP2",
"source": 0
},
{
"begin": 42581,
"end": 42735,
"name": "ADD",
"source": 0
},
{
"begin": 42581,
"end": 42735,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 42581,
"end": 42735,
"name": "MSTORE",
"source": 0
},
{
"begin": 42581,
"end": 42735,
"name": "DUP2",
"source": 0
},
{
"begin": 42581,
"end": 42735,
"name": "ADD",
"source": 0
},
{
"begin": 42581,
"end": 42735,
"name": "SWAP1",
"source": 0
},
{
"begin": 42581,
"end": 42735,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 42581,
"end": 42735,
"name": "SWAP2",
"source": 0
},
{
"begin": 42581,
"end": 42735,
"name": "SWAP1",
"source": 0
},
{
"begin": 42581,
"end": 42735,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 42581,
"end": 42735,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 42581,
"end": 42735,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 42581,
"end": 42735,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 42655,
"end": 42660,
"name": "DUP2",
"source": 0
},
{
"begin": 42647,
"end": 42652,
"name": "PUSH",
"source": 0,
"value": "2"
},
{
"begin": 42647,
"end": 42660,
"name": "SWAP1",
"source": 0
},
{
"begin": 42647,
"end": 42660,
"name": "DUP1",
"source": 0
},
{
"begin": 42647,
"end": 42660,
"name": "MLOAD",
"source": 0
},
{
"begin": 42647,
"end": 42660,
"name": "SWAP1",
"source": 0
},
{
"begin": 42647,
"end": 42660,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 42647,
"end": 42660,
"name": "ADD",
"source": 0
},
{
"begin": 42647,
"end": 42660,
"name": "SWAP1",
"source": 0
},
{
"begin": 42647,
"end": 42660,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 42647,
"end": 42660,
"name": "SWAP3",
"source": 0
},
{
"begin": 42647,
"end": 42660,
"name": "SWAP2",
"source": 0
},
{
"begin": 42647,
"end": 42660,
"name": "SWAP1",
"source": 0
},
{
"begin": 42647,
"end": 42660,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 42647,
"end": 42660,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 42647,
"end": 42660,
"name": "tag",
"source": 0,
"value": "6"
},
{
"begin": 42647,
"end": 42660,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 42647,
"end": 42660,
"name": "POP",
"source": 0
},
{
"begin": 42680,
"end": 42687,
"name": "DUP1",
"source": 0
},
{
"begin": 42670,
"end": 42677,
"name": "PUSH",
"source": 0,
"value": "3"
},
{
"begin": 42670,
"end": 42687,
"name": "SWAP1",
"source": 0
},
{
"begin": 42670,
"end": 42687,
"name": "DUP1",
"source": 0
},
{
"begin": 42670,
"end": 42687,
"name": "MLOAD",
"source": 0
},
{
"begin": 42670,
"end": 42687,
"name": "SWAP1",
"source": 0
},
{
"begin": 42670,
"end": 42687,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 42670,
"end": 42687,
"name": "ADD",
"source": 0
},
{
"begin": 42670,
"end": 42687,
"name": "SWAP1",
"source": 0
},
{
"begin": 42670,
"end": 42687,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 42670,
"end": 42687,
"name": "SWAP3",
"source": 0
},
{
"begin": 42670,
"end": 42687,
"name": "SWAP2",
"source": 0
},
{
"begin": 42670,
"end": 42687,
"name": "SWAP1",
"source": 0
},
{
"begin": 42670,
"end": 42687,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 42670,
"end": 42687,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 42670,
"end": 42687,
"name": "tag",
"source": 0,
"value": "8"
},
{
"begin": 42670,
"end": 42687,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 42670,
"end": 42687,
"name": "POP",
"source": 0
},
{
"begin": 42713,
"end": 42728,
"name": "PUSH [tag]",
"source": 0,
"value": "9"
},
{
"begin": 42713,
"end": 42726,
"name": "PUSH [tag]",
"source": 0,
"value": "10"
},
{
"begin": 42713,
"end": 42726,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 42713,
"end": 42726,
"name": "SHL",
"source": 0
},
{
"begin": 42713,
"end": 42728,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 42713,
"end": 42728,
"name": "SHR",
"source": 0
},
{
"begin": 42713,
"end": 42728,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 42713,
"end": 42728,
"name": "tag",
"source": 0,
"value": "9"
},
{
"begin": 42713,
"end": 42728,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 42697,
"end": 42710,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 42697,
"end": 42728,
"name": "DUP2",
"source": 0
},
{
"begin": 42697,
"end": 42728,
"name": "SWAP1",
"source": 0
},
{
"begin": 42697,
"end": 42728,
"name": "SSTORE",
"source": 0
},
{
"begin": 42697,
"end": 42728,
"name": "POP",
"source": 0
},
{
"begin": 42581,
"end": 42735,
"name": "POP",
"source": 0
},
{
"begin": 42581,
"end": 42735,
"name": "POP",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMP",
"source": 0
},
{
"begin": 42827,
"end": 42917,
"name": "tag",
"source": 0,
"value": "10"
},
{
"begin": 42827,
"end": 42917,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 42883,
"end": 42890,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 42827,
"end": 42917,
"name": "SWAP1",
"source": 0
},
{
"begin": 42827,
"end": 42917,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 40688,
"end": 61019,
"name": "tag",
"source": 0,
"value": "7"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "DUP3",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "DUP1",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "SLOAD",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH [tag]",
"source": 0,
"value": "13"
},
{
"begin": 40688,
"end": 61019,
"name": "SWAP1",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH [tag]",
"source": 0,
"value": "14"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 40688,
"end": 61019,
"name": "tag",
"source": 0,
"value": "13"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "SWAP1",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 40688,
"end": 61019,
"name": "MSTORE",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 40688,
"end": 61019,
"name": "KECCAK256",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "SWAP1",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 40688,
"end": 61019,
"name": "ADD",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 40688,
"end": 61019,
"name": "SWAP1",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "DIV",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "DUP2",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "ADD",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "SWAP3",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "DUP3",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH [tag]",
"source": 0,
"value": "16"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMPI",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 40688,
"end": 61019,
"name": "DUP6",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "SSTORE",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH [tag]",
"source": 0,
"value": "15"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMP",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "tag",
"source": 0,
"value": "16"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "DUP3",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 40688,
"end": 61019,
"name": "LT",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH [tag]",
"source": 0,
"value": "17"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMPI",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "DUP1",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "MLOAD",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 40688,
"end": 61019,
"name": "NOT",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "AND",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "DUP4",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "DUP1",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "ADD",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "OR",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "DUP6",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "SSTORE",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH [tag]",
"source": 0,
"value": "15"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMP",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "tag",
"source": 0,
"value": "17"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "DUP3",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "DUP1",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "ADD",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 40688,
"end": 61019,
"name": "ADD",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "DUP6",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "SSTORE",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "DUP3",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "ISZERO",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH [tag]",
"source": 0,
"value": "15"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMPI",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "SWAP2",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "DUP3",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "ADD",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "tag",
"source": 0,
"value": "18"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "DUP3",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "DUP2",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "GT",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "ISZERO",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH [tag]",
"source": 0,
"value": "19"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMPI",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "DUP3",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "MLOAD",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "DUP3",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "SSTORE",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "SWAP2",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 40688,
"end": 61019,
"name": "ADD",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "SWAP2",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "SWAP1",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 40688,
"end": 61019,
"name": "ADD",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "SWAP1",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH [tag]",
"source": 0,
"value": "18"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMP",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "tag",
"source": 0,
"value": "19"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "tag",
"source": 0,
"value": "15"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "POP",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "SWAP1",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "POP",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH [tag]",
"source": 0,
"value": "20"
},
{
"begin": 40688,
"end": 61019,
"name": "SWAP2",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "SWAP1",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH [tag]",
"source": 0,
"value": "21"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 40688,
"end": 61019,
"name": "tag",
"source": 0,
"value": "20"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "POP",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "SWAP1",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 40688,
"end": 61019,
"name": "tag",
"source": 0,
"value": "21"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "tag",
"source": 0,
"value": "22"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "DUP1",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "DUP3",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "GT",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "ISZERO",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH [tag]",
"source": 0,
"value": "23"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMPI",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 40688,
"end": 61019,
"name": "DUP2",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 40688,
"end": 61019,
"name": "SWAP1",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "SSTORE",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "POP",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 40688,
"end": 61019,
"name": "ADD",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH [tag]",
"source": 0,
"value": "22"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMP",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "tag",
"source": 0,
"value": "23"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "POP",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "SWAP1",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 7,
"end": 82,
"name": "tag",
"source": 1,
"value": "24"
},
{
"begin": 7,
"end": 82,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 40,
"end": 46,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 73,
"end": 75,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 67,
"end": 76,
"name": "MLOAD",
"source": 1
},
{
"begin": 57,
"end": 76,
"name": "SWAP1",
"source": 1
},
{
"begin": 57,
"end": 76,
"name": "POP",
"source": 1
},
{
"begin": 7,
"end": 82,
"name": "SWAP1",
"source": 1
},
{
"begin": 7,
"end": 82,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 88,
"end": 205,
"name": "tag",
"source": 1,
"value": "25"
},
{
"begin": 88,
"end": 205,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 197,
"end": 198,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 194,
"end": 195,
"name": "DUP1",
"source": 1
},
{
"begin": 187,
"end": 199,
"name": "REVERT",
"source": 1
},
{
"begin": 211,
"end": 328,
"name": "tag",
"source": 1,
"value": "26"
},
{
"begin": 211,
"end": 328,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 320,
"end": 321,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 317,
"end": 318,
"name": "DUP1",
"source": 1
},
{
"begin": 310,
"end": 322,
"name": "REVERT",
"source": 1
},
{
"begin": 334,
"end": 451,
"name": "tag",
"source": 1,
"value": "27"
},
{
"begin": 334,
"end": 451,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 443,
"end": 444,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 440,
"end": 441,
"name": "DUP1",
"source": 1
},
{
"begin": 433,
"end": 445,
"name": "REVERT",
"source": 1
},
{
"begin": 457,
"end": 574,
"name": "tag",
"source": 1,
"value": "28"
},
{
"begin": 457,
"end": 574,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 566,
"end": 567,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 563,
"end": 564,
"name": "DUP1",
"source": 1
},
{
"begin": 556,
"end": 568,
"name": "REVERT",
"source": 1
},
{
"begin": 580,
"end": 682,
"name": "tag",
"source": 1,
"value": "29"
},
{
"begin": 580,
"end": 682,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 621,
"end": 627,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 672,
"end": 674,
"name": "PUSH",
"source": 1,
"value": "1F"
},
{
"begin": 668,
"end": 675,
"name": "NOT",
"source": 1
},
{
"begin": 663,
"end": 665,
"name": "PUSH",
"source": 1,
"value": "1F"
},
{
"begin": 656,
"end": 661,
"name": "DUP4",
"source": 1
},
{
"begin": 652,
"end": 666,
"name": "ADD",
"source": 1
},
{
"begin": 648,
"end": 676,
"name": "AND",
"source": 1
},
{
"begin": 638,
"end": 676,
"name": "SWAP1",
"source": 1
},
{
"begin": 638,
"end": 676,
"name": "POP",
"source": 1
},
{
"begin": 580,
"end": 682,
"name": "SWAP2",
"source": 1
},
{
"begin": 580,
"end": 682,
"name": "SWAP1",
"source": 1
},
{
"begin": 580,
"end": 682,
"name": "POP",
"source": 1
},
{
"begin": 580,
"end": 682,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 688,
"end": 868,
"name": "tag",
"source": 1,
"value": "30"
},
{
"begin": 688,
"end": 868,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 736,
"end": 813,
"name": "PUSH",
"source": 1,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 733,
"end": 734,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 726,
"end": 814,
"name": "MSTORE",
"source": 1
},
{
"begin": 833,
"end": 837,
"name": "PUSH",
"source": 1,
"value": "41"
},
{
"begin": 830,
"end": 831,
"name": "PUSH",
"source": 1,
"value": "4"
},
{
"begin": 823,
"end": 838,
"name": "MSTORE",
"source": 1
},
{
"begin": 857,
"end": 861,
"name": "PUSH",
"source": 1,
"value": "24"
},
{
"begin": 854,
"end": 855,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 847,
"end": 862,
"name": "REVERT",
"source": 1
},
{
"begin": 874,
"end": 1155,
"name": "tag",
"source": 1,
"value": "31"
},
{
"begin": 874,
"end": 1155,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 957,
"end": 984,
"name": "PUSH [tag]",
"source": 1,
"value": "47"
},
{
"begin": 979,
"end": 983,
"name": "DUP3",
"source": 1
},
{
"begin": 957,
"end": 984,
"name": "PUSH [tag]",
"source": 1,
"value": "29"
},
{
"begin": 957,
"end": 984,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 957,
"end": 984,
"name": "tag",
"source": 1,
"value": "47"
},
{
"begin": 957,
"end": 984,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 949,
"end": 955,
"name": "DUP2",
"source": 1
},
{
"begin": 945,
"end": 985,
"name": "ADD",
"source": 1
},
{
"begin": 1087,
"end": 1093,
"name": "DUP2",
"source": 1
},
{
"begin": 1075,
"end": 1085,
"name": "DUP2",
"source": 1
},
{
"begin": 1072,
"end": 1094,
"name": "LT",
"source": 1
},
{
"begin": 1051,
"end": 1069,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 1039,
"end": 1049,
"name": "DUP3",
"source": 1
},
{
"begin": 1036,
"end": 1070,
"name": "GT",
"source": 1
},
{
"begin": 1033,
"end": 1095,
"name": "OR",
"source": 1
},
{
"begin": 1030,
"end": 1118,
"name": "ISZERO",
"source": 1
},
{
"begin": 1030,
"end": 1118,
"name": "PUSH [tag]",
"source": 1,
"value": "48"
},
{
"begin": 1030,
"end": 1118,
"name": "JUMPI",
"source": 1
},
{
"begin": 1098,
"end": 1116,
"name": "PUSH [tag]",
"source": 1,
"value": "49"
},
{
"begin": 1098,
"end": 1116,
"name": "PUSH [tag]",
"source": 1,
"value": "30"
},
{
"begin": 1098,
"end": 1116,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1098,
"end": 1116,
"name": "tag",
"source": 1,
"value": "49"
},
{
"begin": 1098,
"end": 1116,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1030,
"end": 1118,
"name": "tag",
"source": 1,
"value": "48"
},
{
"begin": 1030,
"end": 1118,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1138,
"end": 1148,
"name": "DUP1",
"source": 1
},
{
"begin": 1134,
"end": 1136,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 1127,
"end": 1149,
"name": "MSTORE",
"source": 1
},
{
"begin": 917,
"end": 1155,
"name": "POP",
"source": 1
},
{
"begin": 874,
"end": 1155,
"name": "POP",
"source": 1
},
{
"begin": 874,
"end": 1155,
"name": "POP",
"source": 1
},
{
"begin": 874,
"end": 1155,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 1161,
"end": 1290,
"name": "tag",
"source": 1,
"value": "32"
},
{
"begin": 1161,
"end": 1290,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1195,
"end": 1201,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1222,
"end": 1242,
"name": "PUSH [tag]",
"source": 1,
"value": "51"
},
{
"begin": 1222,
"end": 1242,
"name": "PUSH [tag]",
"source": 1,
"value": "24"
},
{
"begin": 1222,
"end": 1242,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1222,
"end": 1242,
"name": "tag",
"source": 1,
"value": "51"
},
{
"begin": 1222,
"end": 1242,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1212,
"end": 1242,
"name": "SWAP1",
"source": 1
},
{
"begin": 1212,
"end": 1242,
"name": "POP",
"source": 1
},
{
"begin": 1251,
"end": 1284,
"name": "PUSH [tag]",
"source": 1,
"value": "52"
},
{
"begin": 1279,
"end": 1283,
"name": "DUP3",
"source": 1
},
{
"begin": 1271,
"end": 1277,
"name": "DUP3",
"source": 1
},
{
"begin": 1251,
"end": 1284,
"name": "PUSH [tag]",
"source": 1,
"value": "31"
},
{
"begin": 1251,
"end": 1284,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1251,
"end": 1284,
"name": "tag",
"source": 1,
"value": "52"
},
{
"begin": 1251,
"end": 1284,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1161,
"end": 1290,
"name": "SWAP2",
"source": 1
},
{
"begin": 1161,
"end": 1290,
"name": "SWAP1",
"source": 1
},
{
"begin": 1161,
"end": 1290,
"name": "POP",
"source": 1
},
{
"begin": 1161,
"end": 1290,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 1296,
"end": 1604,
"name": "tag",
"source": 1,
"value": "33"
},
{
"begin": 1296,
"end": 1604,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1358,
"end": 1362,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1448,
"end": 1466,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 1440,
"end": 1446,
"name": "DUP3",
"source": 1
},
{
"begin": 1437,
"end": 1467,
"name": "GT",
"source": 1
},
{
"begin": 1434,
"end": 1490,
"name": "ISZERO",
"source": 1
},
{
"begin": 1434,
"end": 1490,
"name": "PUSH [tag]",
"source": 1,
"value": "54"
},
{
"begin": 1434,
"end": 1490,
"name": "JUMPI",
"source": 1
},
{
"begin": 1470,
"end": 1488,
"name": "PUSH [tag]",
"source": 1,
"value": "55"
},
{
"begin": 1470,
"end": 1488,
"name": "PUSH [tag]",
"source": 1,
"value": "30"
},
{
"begin": 1470,
"end": 1488,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1470,
"end": 1488,
"name": "tag",
"source": 1,
"value": "55"
},
{
"begin": 1470,
"end": 1488,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1434,
"end": 1490,
"name": "tag",
"source": 1,
"value": "54"
},
{
"begin": 1434,
"end": 1490,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1508,
"end": 1537,
"name": "PUSH [tag]",
"source": 1,
"value": "56"
},
{
"begin": 1530,
"end": 1536,
"name": "DUP3",
"source": 1
},
{
"begin": 1508,
"end": 1537,
"name": "PUSH [tag]",
"source": 1,
"value": "29"
},
{
"begin": 1508,
"end": 1537,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1508,
"end": 1537,
"name": "tag",
"source": 1,
"value": "56"
},
{
"begin": 1508,
"end": 1537,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1500,
"end": 1537,
"name": "SWAP1",
"source": 1
},
{
"begin": 1500,
"end": 1537,
"name": "POP",
"source": 1
},
{
"begin": 1592,
"end": 1596,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1586,
"end": 1590,
"name": "DUP2",
"source": 1
},
{
"begin": 1582,
"end": 1597,
"name": "ADD",
"source": 1
},
{
"begin": 1574,
"end": 1597,
"name": "SWAP1",
"source": 1
},
{
"begin": 1574,
"end": 1597,
"name": "POP",
"source": 1
},
{
"begin": 1296,
"end": 1604,
"name": "SWAP2",
"source": 1
},
{
"begin": 1296,
"end": 1604,
"name": "SWAP1",
"source": 1
},
{
"begin": 1296,
"end": 1604,
"name": "POP",
"source": 1
},
{
"begin": 1296,
"end": 1604,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 1610,
"end": 1917,
"name": "tag",
"source": 1,
"value": "34"
},
{
"begin": 1610,
"end": 1917,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1678,
"end": 1679,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1688,
"end": 1801,
"name": "tag",
"source": 1,
"value": "58"
},
{
"begin": 1688,
"end": 1801,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1702,
"end": 1708,
"name": "DUP4",
"source": 1
},
{
"begin": 1699,
"end": 1700,
"name": "DUP2",
"source": 1
},
{
"begin": 1696,
"end": 1709,
"name": "LT",
"source": 1
},
{
"begin": 1688,
"end": 1801,
"name": "ISZERO",
"source": 1
},
{
"begin": 1688,
"end": 1801,
"name": "PUSH [tag]",
"source": 1,
"value": "60"
},
{
"begin": 1688,
"end": 1801,
"name": "JUMPI",
"source": 1
},
{
"begin": 1787,
"end": 1788,
"name": "DUP1",
"source": 1
},
{
"begin": 1782,
"end": 1785,
"name": "DUP3",
"source": 1
},
{
"begin": 1778,
"end": 1789,
"name": "ADD",
"source": 1
},
{
"begin": 1772,
"end": 1790,
"name": "MLOAD",
"source": 1
},
{
"begin": 1768,
"end": 1769,
"name": "DUP2",
"source": 1
},
{
"begin": 1763,
"end": 1766,
"name": "DUP5",
"source": 1
},
{
"begin": 1759,
"end": 1770,
"name": "ADD",
"source": 1
},
{
"begin": 1752,
"end": 1791,
"name": "MSTORE",
"source": 1
},
{
"begin": 1724,
"end": 1726,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1721,
"end": 1722,
"name": "DUP2",
"source": 1
},
{
"begin": 1717,
"end": 1727,
"name": "ADD",
"source": 1
},
{
"begin": 1712,
"end": 1727,
"name": "SWAP1",
"source": 1
},
{
"begin": 1712,
"end": 1727,
"name": "POP",
"source": 1
},
{
"begin": 1688,
"end": 1801,
"name": "PUSH [tag]",
"source": 1,
"value": "58"
},
{
"begin": 1688,
"end": 1801,
"name": "JUMP",
"source": 1
},
{
"begin": 1688,
"end": 1801,
"name": "tag",
"source": 1,
"value": "60"
},
{
"begin": 1688,
"end": 1801,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1819,
"end": 1825,
"name": "DUP4",
"source": 1
},
{
"begin": 1816,
"end": 1817,
"name": "DUP2",
"source": 1
},
{
"begin": 1813,
"end": 1826,
"name": "GT",
"source": 1
},
{
"begin": 1810,
"end": 1911,
"name": "ISZERO",
"source": 1
},
{
"begin": 1810,
"end": 1911,
"name": "PUSH [tag]",
"source": 1,
"value": "61"
},
{
"begin": 1810,
"end": 1911,
"name": "JUMPI",
"source": 1
},
{
"begin": 1899,
"end": 1900,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1890,
"end": 1896,
"name": "DUP5",
"source": 1
},
{
"begin": 1885,
"end": 1888,
"name": "DUP5",
"source": 1
},
{
"begin": 1881,
"end": 1897,
"name": "ADD",
"source": 1
},
{
"begin": 1874,
"end": 1901,
"name": "MSTORE",
"source": 1
},
{
"begin": 1810,
"end": 1911,
"name": "tag",
"source": 1,
"value": "61"
},
{
"begin": 1810,
"end": 1911,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1659,
"end": 1917,
"name": "POP",
"source": 1
},
{
"begin": 1610,
"end": 1917,
"name": "POP",
"source": 1
},
{
"begin": 1610,
"end": 1917,
"name": "POP",
"source": 1
},
{
"begin": 1610,
"end": 1917,
"name": "POP",
"source": 1
},
{
"begin": 1610,
"end": 1917,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 1923,
"end": 2344,
"name": "tag",
"source": 1,
"value": "35"
},
{
"begin": 1923,
"end": 2344,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2012,
"end": 2017,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2037,
"end": 2103,
"name": "PUSH [tag]",
"source": 1,
"value": "63"
},
{
"begin": 2053,
"end": 2102,
"name": "PUSH [tag]",
"source": 1,
"value": "64"
},
{
"begin": 2095,
"end": 2101,
"name": "DUP5",
"source": 1
},
{
"begin": 2053,
"end": 2102,
"name": "PUSH [tag]",
"source": 1,
"value": "33"
},
{
"begin": 2053,
"end": 2102,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 2053,
"end": 2102,
"name": "tag",
"source": 1,
"value": "64"
},
{
"begin": 2053,
"end": 2102,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2037,
"end": 2103,
"name": "PUSH [tag]",
"source": 1,
"value": "32"
},
{
"begin": 2037,
"end": 2103,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 2037,
"end": 2103,
"name": "tag",
"source": 1,
"value": "63"
},
{
"begin": 2037,
"end": 2103,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2028,
"end": 2103,
"name": "SWAP1",
"source": 1
},
{
"begin": 2028,
"end": 2103,
"name": "POP",
"source": 1
},
{
"begin": 2126,
"end": 2132,
"name": "DUP3",
"source": 1
},
{
"begin": 2119,
"end": 2124,
"name": "DUP2",
"source": 1
},
{
"begin": 2112,
"end": 2133,
"name": "MSTORE",
"source": 1
},
{
"begin": 2164,
"end": 2168,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 2157,
"end": 2162,
"name": "DUP2",
"source": 1
},
{
"begin": 2153,
"end": 2169,
"name": "ADD",
"source": 1
},
{
"begin": 2202,
"end": 2205,
"name": "DUP5",
"source": 1
},
{
"begin": 2193,
"end": 2199,
"name": "DUP5",
"source": 1
},
{
"begin": 2188,
"end": 2191,
"name": "DUP5",
"source": 1
},
{
"begin": 2184,
"end": 2200,
"name": "ADD",
"source": 1
},
{
"begin": 2181,
"end": 2206,
"name": "GT",
"source": 1
},
{
"begin": 2178,
"end": 2290,
"name": "ISZERO",
"source": 1
},
{
"begin": 2178,
"end": 2290,
"name": "PUSH [tag]",
"source": 1,
"value": "65"
},
{
"begin": 2178,
"end": 2290,
"name": "JUMPI",
"source": 1
},
{
"begin": 2209,
"end": 2288,
"name": "PUSH [tag]",
"source": 1,
"value": "66"
},
{
"begin": 2209,
"end": 2288,
"name": "PUSH [tag]",
"source": 1,
"value": "28"
},
{
"begin": 2209,
"end": 2288,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 2209,
"end": 2288,
"name": "tag",
"source": 1,
"value": "66"
},
{
"begin": 2209,
"end": 2288,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2178,
"end": 2290,
"name": "tag",
"source": 1,
"value": "65"
},
{
"begin": 2178,
"end": 2290,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2299,
"end": 2338,
"name": "PUSH [tag]",
"source": 1,
"value": "67"
},
{
"begin": 2331,
"end": 2337,
"name": "DUP5",
"source": 1
},
{
"begin": 2326,
"end": 2329,
"name": "DUP3",
"source": 1
},
{
"begin": 2321,
"end": 2324,
"name": "DUP6",
"source": 1
},
{
"begin": 2299,
"end": 2338,
"name": "PUSH [tag]",
"source": 1,
"value": "34"
},
{
"begin": 2299,
"end": 2338,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 2299,
"end": 2338,
"name": "tag",
"source": 1,
"value": "67"
},
{
"begin": 2299,
"end": 2338,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2018,
"end": 2344,
"name": "POP",
"source": 1
},
{
"begin": 1923,
"end": 2344,
"name": "SWAP4",
"source": 1
},
{
"begin": 1923,
"end": 2344,
"name": "SWAP3",
"source": 1
},
{
"begin": 1923,
"end": 2344,
"name": "POP",
"source": 1
},
{
"begin": 1923,
"end": 2344,
"name": "POP",
"source": 1
},
{
"begin": 1923,
"end": 2344,
"name": "POP",
"source": 1
},
{
"begin": 1923,
"end": 2344,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 2364,
"end": 2719,
"name": "tag",
"source": 1,
"value": "36"
},
{
"begin": 2364,
"end": 2719,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2431,
"end": 2436,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2480,
"end": 2483,
"name": "DUP3",
"source": 1
},
{
"begin": 2473,
"end": 2477,
"name": "PUSH",
"source": 1,
"value": "1F"
},
{
"begin": 2465,
"end": 2471,
"name": "DUP4",
"source": 1
},
{
"begin": 2461,
"end": 2478,
"name": "ADD",
"source": 1
},
{
"begin": 2457,
"end": 2484,
"name": "SLT",
"source": 1
},
{
"begin": 2447,
"end": 2569,
"name": "PUSH [tag]",
"source": 1,
"value": "69"
},
{
"begin": 2447,
"end": 2569,
"name": "JUMPI",
"source": 1
},
{
"begin": 2488,
"end": 2567,
"name": "PUSH [tag]",
"source": 1,
"value": "70"
},
{
"begin": 2488,
"end": 2567,
"name": "PUSH [tag]",
"source": 1,
"value": "27"
},
{
"begin": 2488,
"end": 2567,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 2488,
"end": 2567,
"name": "tag",
"source": 1,
"value": "70"
},
{
"begin": 2488,
"end": 2567,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2447,
"end": 2569,
"name": "tag",
"source": 1,
"value": "69"
},
{
"begin": 2447,
"end": 2569,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2598,
"end": 2604,
"name": "DUP2",
"source": 1
},
{
"begin": 2592,
"end": 2605,
"name": "MLOAD",
"source": 1
},
{
"begin": 2623,
"end": 2713,
"name": "PUSH [tag]",
"source": 1,
"value": "71"
},
{
"begin": 2709,
"end": 2712,
"name": "DUP5",
"source": 1
},
{
"begin": 2701,
"end": 2707,
"name": "DUP3",
"source": 1
},
{
"begin": 2694,
"end": 2698,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 2686,
"end": 2692,
"name": "DUP7",
"source": 1
},
{
"begin": 2682,
"end": 2699,
"name": "ADD",
"source": 1
},
{
"begin": 2623,
"end": 2713,
"name": "PUSH [tag]",
"source": 1,
"value": "35"
},
{
"begin": 2623,
"end": 2713,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 2623,
"end": 2713,
"name": "tag",
"source": 1,
"value": "71"
},
{
"begin": 2623,
"end": 2713,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2614,
"end": 2713,
"name": "SWAP2",
"source": 1
},
{
"begin": 2614,
"end": 2713,
"name": "POP",
"source": 1
},
{
"begin": 2437,
"end": 2719,
"name": "POP",
"source": 1
},
{
"begin": 2364,
"end": 2719,
"name": "SWAP3",
"source": 1
},
{
"begin": 2364,
"end": 2719,
"name": "SWAP2",
"source": 1
},
{
"begin": 2364,
"end": 2719,
"name": "POP",
"source": 1
},
{
"begin": 2364,
"end": 2719,
"name": "POP",
"source": 1
},
{
"begin": 2364,
"end": 2719,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 2725,
"end": 3578,
"name": "tag",
"source": 1,
"value": "3"
},
{
"begin": 2725,
"end": 3578,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2824,
"end": 2830,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2832,
"end": 2838,
"name": "DUP1",
"source": 1
},
{
"begin": 2881,
"end": 2883,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 2869,
"end": 2878,
"name": "DUP4",
"source": 1
},
{
"begin": 2860,
"end": 2867,
"name": "DUP6",
"source": 1
},
{
"begin": 2856,
"end": 2879,
"name": "SUB",
"source": 1
},
{
"begin": 2852,
"end": 2884,
"name": "SLT",
"source": 1
},
{
"begin": 2849,
"end": 2968,
"name": "ISZERO",
"source": 1
},
{
"begin": 2849,
"end": 2968,
"name": "PUSH [tag]",
"source": 1,
"value": "73"
},
{
"begin": 2849,
"end": 2968,
"name": "JUMPI",
"source": 1
},
{
"begin": 2887,
"end": 2966,
"name": "PUSH [tag]",
"source": 1,
"value": "74"
},
{
"begin": 2887,
"end": 2966,
"name": "PUSH [tag]",
"source": 1,
"value": "25"
},
{
"begin": 2887,
"end": 2966,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 2887,
"end": 2966,
"name": "tag",
"source": 1,
"value": "74"
},
{
"begin": 2887,
"end": 2966,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2849,
"end": 2968,
"name": "tag",
"source": 1,
"value": "73"
},
{
"begin": 2849,
"end": 2968,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3028,
"end": 3029,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 3017,
"end": 3026,
"name": "DUP4",
"source": 1
},
{
"begin": 3013,
"end": 3030,
"name": "ADD",
"source": 1
},
{
"begin": 3007,
"end": 3031,
"name": "MLOAD",
"source": 1
},
{
"begin": 3058,
"end": 3076,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 3050,
"end": 3056,
"name": "DUP2",
"source": 1
},
{
"begin": 3047,
"end": 3077,
"name": "GT",
"source": 1
},
{
"begin": 3044,
"end": 3161,
"name": "ISZERO",
"source": 1
},
{
"begin": 3044,
"end": 3161,
"name": "PUSH [tag]",
"source": 1,
"value": "75"
},
{
"begin": 3044,
"end": 3161,
"name": "JUMPI",
"source": 1
},
{
"begin": 3080,
"end": 3159,
"name": "PUSH [tag]",
"source": 1,
"value": "76"
},
{
"begin": 3080,
"end": 3159,
"name": "PUSH [tag]",
"source": 1,
"value": "26"
},
{
"begin": 3080,
"end": 3159,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 3080,
"end": 3159,
"name": "tag",
"source": 1,
"value": "76"
},
{
"begin": 3080,
"end": 3159,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3044,
"end": 3161,
"name": "tag",
"source": 1,
"value": "75"
},
{
"begin": 3044,
"end": 3161,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3185,
"end": 3259,
"name": "PUSH [tag]",
"source": 1,
"value": "77"
},
{
"begin": 3251,
"end": 3258,
"name": "DUP6",
"source": 1
},
{
"begin": 3242,
"end": 3248,
"name": "DUP3",
"source": 1
},
{
"begin": 3231,
"end": 3240,
"name": "DUP7",
"source": 1
},
{
"begin": 3227,
"end": 3249,
"name": "ADD",
"source": 1
},
{
"begin": 3185,
"end": 3259,
"name": "PUSH [tag]",
"source": 1,
"value": "36"
},
{
"begin": 3185,
"end": 3259,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 3185,
"end": 3259,
"name": "tag",
"source": 1,
"value": "77"
},
{
"begin": 3185,
"end": 3259,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3175,
"end": 3259,
"name": "SWAP3",
"source": 1
},
{
"begin": 3175,
"end": 3259,
"name": "POP",
"source": 1
},
{
"begin": 2978,
"end": 3269,
"name": "POP",
"source": 1
},
{
"begin": 3329,
"end": 3331,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 3318,
"end": 3327,
"name": "DUP4",
"source": 1
},
{
"begin": 3314,
"end": 3332,
"name": "ADD",
"source": 1
},
{
"begin": 3308,
"end": 3333,
"name": "MLOAD",
"source": 1
},
{
"begin": 3360,
"end": 3378,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 3352,
"end": 3358,
"name": "DUP2",
"source": 1
},
{
"begin": 3349,
"end": 3379,
"name": "GT",
"source": 1
},
{
"begin": 3346,
"end": 3463,
"name": "ISZERO",
"source": 1
},
{
"begin": 3346,
"end": 3463,
"name": "PUSH [tag]",
"source": 1,
"value": "78"
},
{
"begin": 3346,
"end": 3463,
"name": "JUMPI",
"source": 1
},
{
"begin": 3382,
"end": 3461,
"name": "PUSH [tag]",
"source": 1,
"value": "79"
},
{
"begin": 3382,
"end": 3461,
"name": "PUSH [tag]",
"source": 1,
"value": "26"
},
{
"begin": 3382,
"end": 3461,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 3382,
"end": 3461,
"name": "tag",
"source": 1,
"value": "79"
},
{
"begin": 3382,
"end": 3461,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3346,
"end": 3463,
"name": "tag",
"source": 1,
"value": "78"
},
{
"begin": 3346,
"end": 3463,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3487,
"end": 3561,
"name": "PUSH [tag]",
"source": 1,
"value": "80"
},
{
"begin": 3553,
"end": 3560,
"name": "DUP6",
"source": 1
},
{
"begin": 3544,
"end": 3550,
"name": "DUP3",
"source": 1
},
{
"begin": 3533,
"end": 3542,
"name": "DUP7",
"source": 1
},
{
"begin": 3529,
"end": 3551,
"name": "ADD",
"source": 1
},
{
"begin": 3487,
"end": 3561,
"name": "PUSH [tag]",
"source": 1,
"value": "36"
},
{
"begin": 3487,
"end": 3561,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 3487,
"end": 3561,
"name": "tag",
"source": 1,
"value": "80"
},
{
"begin": 3487,
"end": 3561,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3477,
"end": 3561,
"name": "SWAP2",
"source": 1
},
{
"begin": 3477,
"end": 3561,
"name": "POP",
"source": 1
},
{
"begin": 3279,
"end": 3571,
"name": "POP",
"source": 1
},
{
"begin": 2725,
"end": 3578,
"name": "SWAP3",
"source": 1
},
{
"begin": 2725,
"end": 3578,
"name": "POP",
"source": 1
},
{
"begin": 2725,
"end": 3578,
"name": "SWAP3",
"source": 1
},
{
"begin": 2725,
"end": 3578,
"name": "SWAP1",
"source": 1
},
{
"begin": 2725,
"end": 3578,
"name": "POP",
"source": 1
},
{
"begin": 2725,
"end": 3578,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 3584,
"end": 3764,
"name": "tag",
"source": 1,
"value": "37"
},
{
"begin": 3584,
"end": 3764,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3632,
"end": 3709,
"name": "PUSH",
"source": 1,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 3629,
"end": 3630,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 3622,
"end": 3710,
"name": "MSTORE",
"source": 1
},
{
"begin": 3729,
"end": 3733,
"name": "PUSH",
"source": 1,
"value": "22"
},
{
"begin": 3726,
"end": 3727,
"name": "PUSH",
"source": 1,
"value": "4"
},
{
"begin": 3719,
"end": 3734,
"name": "MSTORE",
"source": 1
},
{
"begin": 3753,
"end": 3757,
"name": "PUSH",
"source": 1,
"value": "24"
},
{
"begin": 3750,
"end": 3751,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 3743,
"end": 3758,
"name": "REVERT",
"source": 1
},
{
"begin": 3770,
"end": 4090,
"name": "tag",
"source": 1,
"value": "14"
},
{
"begin": 3770,
"end": 4090,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3814,
"end": 3820,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 3851,
"end": 3852,
"name": "PUSH",
"source": 1,
"value": "2"
},
{
"begin": 3845,
"end": 3849,
"name": "DUP3",
"source": 1
},
{
"begin": 3841,
"end": 3853,
"name": "DIV",
"source": 1
},
{
"begin": 3831,
"end": 3853,
"name": "SWAP1",
"source": 1
},
{
"begin": 3831,
"end": 3853,
"name": "POP",
"source": 1
},
{
"begin": 3898,
"end": 3899,
"name": "PUSH",
"source": 1,
"value": "1"
},
{
"begin": 3892,
"end": 3896,
"name": "DUP3",
"source": 1
},
{
"begin": 3888,
"end": 3900,
"name": "AND",
"source": 1
},
{
"begin": 3919,
"end": 3937,
"name": "DUP1",
"source": 1
},
{
"begin": 3909,
"end": 3990,
"name": "PUSH [tag]",
"source": 1,
"value": "83"
},
{
"begin": 3909,
"end": 3990,
"name": "JUMPI",
"source": 1
},
{
"begin": 3975,
"end": 3979,
"name": "PUSH",
"source": 1,
"value": "7F"
},
{
"begin": 3967,
"end": 3973,
"name": "DUP3",
"source": 1
},
{
"begin": 3963,
"end": 3980,
"name": "AND",
"source": 1
},
{
"begin": 3953,
"end": 3980,
"name": "SWAP2",
"source": 1
},
{
"begin": 3953,
"end": 3980,
"name": "POP",
"source": 1
},
{
"begin": 3909,
"end": 3990,
"name": "tag",
"source": 1,
"value": "83"
},
{
"begin": 3909,
"end": 3990,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4037,
"end": 4039,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 4029,
"end": 4035,
"name": "DUP3",
"source": 1
},
{
"begin": 4026,
"end": 4040,
"name": "LT",
"source": 1
},
{
"begin": 4006,
"end": 4024,
"name": "DUP2",
"source": 1
},
{
"begin": 4003,
"end": 4041,
"name": "SUB",
"source": 1
},
{
"begin": 4000,
"end": 4084,
"name": "PUSH [tag]",
"source": 1,
"value": "84"
},
{
"begin": 4000,
"end": 4084,
"name": "JUMPI",
"source": 1
},
{
"begin": 4056,
"end": 4074,
"name": "PUSH [tag]",
"source": 1,
"value": "85"
},
{
"begin": 4056,
"end": 4074,
"name": "PUSH [tag]",
"source": 1,
"value": "37"
},
{
"begin": 4056,
"end": 4074,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 4056,
"end": 4074,
"name": "tag",
"source": 1,
"value": "85"
},
{
"begin": 4056,
"end": 4074,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4000,
"end": 4084,
"name": "tag",
"source": 1,
"value": "84"
},
{
"begin": 4000,
"end": 4084,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3821,
"end": 4090,
"name": "POP",
"source": 1
},
{
"begin": 3770,
"end": 4090,
"name": "SWAP2",
"source": 1
},
{
"begin": 3770,
"end": 4090,
"name": "SWAP1",
"source": 1
},
{
"begin": 3770,
"end": 4090,
"name": "POP",
"source": 1
},
{
"begin": 3770,
"end": 4090,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 40688,
"end": 61019,
"name": "tag",
"source": 0,
"value": "11"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 40688,
"end": 61019,
"name": "DUP1",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 40688,
"end": 61019,
"name": "CODECOPY",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 40688,
"end": 61019,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a2646970667358221220cd37112b23c6e71b71e13c577ae0b4899d7337eba41e403b3c418339bf6fc6d364736f6c634300080d0033",
".code": [
{
"begin": 40688,
"end": 61019,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 40688,
"end": 61019,
"name": "MSTORE",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "DUP1",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "ISZERO",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMPI",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 40688,
"end": 61019,
"name": "DUP1",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "REVERT",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "POP",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 40688,
"end": 61019,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "LT",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMPI",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 40688,
"end": 61019,
"name": "CALLDATALOAD",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH",
"source": 0,
"value": "E0"
},
{
"begin": 40688,
"end": 61019,
"name": "SHR",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "DUP1",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH",
"source": 0,
"value": "6352211E"
},
{
"begin": 40688,
"end": 61019,
"name": "GT",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH [tag]",
"source": 0,
"value": "17"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMPI",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "DUP1",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH",
"source": 0,
"value": "A22CB465"
},
{
"begin": 40688,
"end": 61019,
"name": "GT",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH [tag]",
"source": 0,
"value": "18"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMPI",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "DUP1",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH",
"source": 0,
"value": "A22CB465"
},
{
"begin": 40688,
"end": 61019,
"name": "EQ",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH [tag]",
"source": 0,
"value": "13"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMPI",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "DUP1",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH",
"source": 0,
"value": "B88D4FDE"
},
{
"begin": 40688,
"end": 61019,
"name": "EQ",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH [tag]",
"source": 0,
"value": "14"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMPI",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "DUP1",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH",
"source": 0,
"value": "C87B56DD"
},
{
"begin": 40688,
"end": 61019,
"name": "EQ",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH [tag]",
"source": 0,
"value": "15"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMPI",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "DUP1",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH",
"source": 0,
"value": "E985E9C5"
},
{
"begin": 40688,
"end": 61019,
"name": "EQ",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH [tag]",
"source": 0,
"value": "16"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMPI",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMP",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "tag",
"source": 0,
"value": "18"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "DUP1",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH",
"source": 0,
"value": "6352211E"
},
{
"begin": 40688,
"end": 61019,
"name": "EQ",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH [tag]",
"source": 0,
"value": "10"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMPI",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "DUP1",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH",
"source": 0,
"value": "70A08231"
},
{
"begin": 40688,
"end": 61019,
"name": "EQ",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMPI",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "DUP1",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH",
"source": 0,
"value": "95D89B41"
},
{
"begin": 40688,
"end": 61019,
"name": "EQ",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH [tag]",
"source": 0,
"value": "12"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMPI",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMP",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "tag",
"source": 0,
"value": "17"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "DUP1",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH",
"source": 0,
"value": "95EA7B3"
},
{
"begin": 40688,
"end": 61019,
"name": "GT",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH [tag]",
"source": 0,
"value": "19"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMPI",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "DUP1",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH",
"source": 0,
"value": "95EA7B3"
},
{
"begin": 40688,
"end": 61019,
"name": "EQ",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMPI",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "DUP1",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH",
"source": 0,
"value": "18160DDD"
},
{
"begin": 40688,
"end": 61019,
"name": "EQ",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMPI",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "DUP1",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH",
"source": 0,
"value": "23B872DD"
},
{
"begin": 40688,
"end": 61019,
"name": "EQ",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMPI",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "DUP1",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH",
"source": 0,
"value": "42842E0E"
},
{
"begin": 40688,
"end": 61019,
"name": "EQ",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH [tag]",
"source": 0,
"value": "9"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMPI",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMP",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "tag",
"source": 0,
"value": "19"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "DUP1",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH",
"source": 0,
"value": "1FFC9A7"
},
{
"begin": 40688,
"end": 61019,
"name": "EQ",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMPI",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "DUP1",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH",
"source": 0,
"value": "6FDDE03"
},
{
"begin": 40688,
"end": 61019,
"name": "EQ",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMPI",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "DUP1",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH",
"source": 0,
"value": "81812FC"
},
{
"begin": 40688,
"end": 61019,
"name": "EQ",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH [tag]",
"source": 0,
"value": "5"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMPI",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 40688,
"end": 61019,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 40688,
"end": 61019,
"name": "DUP1",
"source": 0
},
{
"begin": 40688,
"end": 61019,
"name": "REVERT",
"source": 0
},
{
"begin": 43775,
"end": 44075,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 43775,
"end": 44075,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 43775,
"end": 44075,
"name": "PUSH [tag]",
"source": 0,
"value": "20"
},
{
"begin": 43775,
"end": 44075,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 43775,
"end": 44075,
"name": "DUP1",
"source": 0
},
{
"begin": 43775,
"end": 44075,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 43775,
"end": 44075,
"name": "SUB",
"source": 0
},
{
"begin": 43775,
"end": 44075,
"name": "DUP2",
"source": 0
},
{
"begin": 43775,
"end": 44075,
"name": "ADD",
"source": 0
},
{
"begin": 43775,
"end": 44075,
"name": "SWAP1",
"source": 0
},
{
"begin": 43775,
"end": 44075,
"name": "PUSH [tag]",
"source": 0,
"value": "21"
},
{
"begin": 43775,
"end": 44075,
"name": "SWAP2",
"source": 0
},
{
"begin": 43775,
"end": 44075,
"name": "SWAP1",
"source": 0
},
{
"begin": 43775,
"end": 44075,
"name": "PUSH [tag]",
"source": 0,
"value": "22"
},
{
"begin": 43775,
"end": 44075,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 43775,
"end": 44075,
"name": "tag",
"source": 0,
"value": "21"
},
{
"begin": 43775,
"end": 44075,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 43775,
"end": 44075,
"name": "PUSH [tag]",
"source": 0,
"value": "23"
},
{
"begin": 43775,
"end": 44075,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 43775,
"end": 44075,
"name": "tag",
"source": 0,
"value": "20"
},
{
"begin": 43775,
"end": 44075,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 43775,
"end": 44075,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 43775,
"end": 44075,
"name": "MLOAD",
"source": 0
},
{
"begin": 43775,
"end": 44075,
"name": "PUSH [tag]",
"source": 0,
"value": "24"
},
{
"begin": 43775,
"end": 44075,
"name": "SWAP2",
"source": 0
},
{
"begin": 43775,
"end": 44075,
"name": "SWAP1",
"source": 0
},
{
"begin": 43775,
"end": 44075,
"name": "PUSH [tag]",
"source": 0,
"value": "25"
},
{
"begin": 43775,
"end": 44075,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 43775,
"end": 44075,
"name": "tag",
"source": 0,
"value": "24"
},
{
"begin": 43775,
"end": 44075,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 43775,
"end": 44075,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 43775,
"end": 44075,
"name": "MLOAD",
"source": 0
},
{
"begin": 43775,
"end": 44075,
"name": "DUP1",
"source": 0
},
{
"begin": 43775,
"end": 44075,
"name": "SWAP2",
"source": 0
},
{
"begin": 43775,
"end": 44075,
"name": "SUB",
"source": 0
},
{
"begin": 43775,
"end": 44075,
"name": "SWAP1",
"source": 0
},
{
"begin": 43775,
"end": 44075,
"name": "RETURN",
"source": 0
},
{
"begin": 46803,
"end": 46901,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 46803,
"end": 46901,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 46803,
"end": 46901,
"name": "PUSH [tag]",
"source": 0,
"value": "26"
},
{
"begin": 46803,
"end": 46901,
"name": "PUSH [tag]",
"source": 0,
"value": "27"
},
{
"begin": 46803,
"end": 46901,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 46803,
"end": 46901,
"name": "tag",
"source": 0,
"value": "26"
},
{
"begin": 46803,
"end": 46901,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 46803,
"end": 46901,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 46803,
"end": 46901,
"name": "MLOAD",
"source": 0
},
{
"begin": 46803,
"end": 46901,
"name": "PUSH [tag]",
"source": 0,
"value": "28"
},
{
"begin": 46803,
"end": 46901,
"name": "SWAP2",
"source": 0
},
{
"begin": 46803,
"end": 46901,
"name": "SWAP1",
"source": 0
},
{
"begin": 46803,
"end": 46901,
"name": "PUSH [tag]",
"source": 0,
"value": "29"
},
{
"begin": 46803,
"end": 46901,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 46803,
"end": 46901,
"name": "tag",
"source": 0,
"value": "28"
},
{
"begin": 46803,
"end": 46901,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 46803,
"end": 46901,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 46803,
"end": 46901,
"name": "MLOAD",
"source": 0
},
{
"begin": 46803,
"end": 46901,
"name": "DUP1",
"source": 0
},
{
"begin": 46803,
"end": 46901,
"name": "SWAP2",
"source": 0
},
{
"begin": 46803,
"end": 46901,
"name": "SUB",
"source": 0
},
{
"begin": 46803,
"end": 46901,
"name": "SWAP1",
"source": 0
},
{
"begin": 46803,
"end": 46901,
"name": "RETURN",
"source": 0
},
{
"begin": 48259,
"end": 48459,
"name": "tag",
"source": 0,
"value": "5"
},
{
"begin": 48259,
"end": 48459,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 48259,
"end": 48459,
"name": "PUSH [tag]",
"source": 0,
"value": "30"
},
{
"begin": 48259,
"end": 48459,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 48259,
"end": 48459,
"name": "DUP1",
"source": 0
},
{
"begin": 48259,
"end": 48459,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 48259,
"end": 48459,
"name": "SUB",
"source": 0
},
{
"begin": 48259,
"end": 48459,
"name": "DUP2",
"source": 0
},
{
"begin": 48259,
"end": 48459,
"name": "ADD",
"source": 0
},
{
"begin": 48259,
"end": 48459,
"name": "SWAP1",
"source": 0
},
{
"begin": 48259,
"end": 48459,
"name": "PUSH [tag]",
"source": 0,
"value": "31"
},
{
"begin": 48259,
"end": 48459,
"name": "SWAP2",
"source": 0
},
{
"begin": 48259,
"end": 48459,
"name": "SWAP1",
"source": 0
},
{
"begin": 48259,
"end": 48459,
"name": "PUSH [tag]",
"source": 0,
"value": "32"
},
{
"begin": 48259,
"end": 48459,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 48259,
"end": 48459,
"name": "tag",
"source": 0,
"value": "31"
},
{
"begin": 48259,
"end": 48459,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 48259,
"end": 48459,
"name": "PUSH [tag]",
"source": 0,
"value": "33"
},
{
"begin": 48259,
"end": 48459,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 48259,
"end": 48459,
"name": "tag",
"source": 0,
"value": "30"
},
{
"begin": 48259,
"end": 48459,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 48259,
"end": 48459,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 48259,
"end": 48459,
"name": "MLOAD",
"source": 0
},
{
"begin": 48259,
"end": 48459,
"name": "PUSH [tag]",
"source": 0,
"value": "34"
},
{
"begin": 48259,
"end": 48459,
"name": "SWAP2",
"source": 0
},
{
"begin": 48259,
"end": 48459,
"name": "SWAP1",
"source": 0
},
{
"begin": 48259,
"end": 48459,
"name": "PUSH [tag]",
"source": 0,
"value": "35"
},
{
"begin": 48259,
"end": 48459,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 48259,
"end": 48459,
"name": "tag",
"source": 0,
"value": "34"
},
{
"begin": 48259,
"end": 48459,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 48259,
"end": 48459,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 48259,
"end": 48459,
"name": "MLOAD",
"source": 0
},
{
"begin": 48259,
"end": 48459,
"name": "DUP1",
"source": 0
},
{
"begin": 48259,
"end": 48459,
"name": "SWAP2",
"source": 0
},
{
"begin": 48259,
"end": 48459,
"name": "SUB",
"source": 0
},
{
"begin": 48259,
"end": 48459,
"name": "SWAP1",
"source": 0
},
{
"begin": 48259,
"end": 48459,
"name": "RETURN",
"source": 0
},
{
"begin": 47836,
"end": 48198,
"name": "tag",
"source": 0,
"value": "6"
},
{
"begin": 47836,
"end": 48198,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 47836,
"end": 48198,
"name": "PUSH [tag]",
"source": 0,
"value": "36"
},
{
"begin": 47836,
"end": 48198,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 47836,
"end": 48198,
"name": "DUP1",
"source": 0
},
{
"begin": 47836,
"end": 48198,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 47836,
"end": 48198,
"name": "SUB",
"source": 0
},
{
"begin": 47836,
"end": 48198,
"name": "DUP2",
"source": 0
},
{
"begin": 47836,
"end": 48198,
"name": "ADD",
"source": 0
},
{
"begin": 47836,
"end": 48198,
"name": "SWAP1",
"source": 0
},
{
"begin": 47836,
"end": 48198,
"name": "PUSH [tag]",
"source": 0,
"value": "37"
},
{
"begin": 47836,
"end": 48198,
"name": "SWAP2",
"source": 0
},
{
"begin": 47836,
"end": 48198,
"name": "SWAP1",
"source": 0
},
{
"begin": 47836,
"end": 48198,
"name": "PUSH [tag]",
"source": 0,
"value": "38"
},
{
"begin": 47836,
"end": 48198,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 47836,
"end": 48198,
"name": "tag",
"source": 0,
"value": "37"
},
{
"begin": 47836,
"end": 48198,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 47836,
"end": 48198,
"name": "PUSH [tag]",
"source": 0,
"value": "39"
},
{
"begin": 47836,
"end": 48198,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 47836,
"end": 48198,
"name": "tag",
"source": 0,
"value": "36"
},
{
"begin": 47836,
"end": 48198,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 47836,
"end": 48198,
"name": "STOP",
"source": 0
},
{
"begin": 43046,
"end": 43343,
"name": "tag",
"source": 0,
"value": "7"
},
{
"begin": 43046,
"end": 43343,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 43046,
"end": 43343,
"name": "PUSH [tag]",
"source": 0,
"value": "40"
},
{
"begin": 43046,
"end": 43343,
"name": "PUSH [tag]",
"source": 0,
"value": "41"
},
{
"begin": 43046,
"end": 43343,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 43046,
"end": 43343,
"name": "tag",
"source": 0,
"value": "40"
},
{
"begin": 43046,
"end": 43343,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 43046,
"end": 43343,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 43046,
"end": 43343,
"name": "MLOAD",
"source": 0
},
{
"begin": 43046,
"end": 43343,
"name": "PUSH [tag]",
"source": 0,
"value": "42"
},
{
"begin": 43046,
"end": 43343,
"name": "SWAP2",
"source": 0
},
{
"begin": 43046,
"end": 43343,
"name": "SWAP1",
"source": 0
},
{
"begin": 43046,
"end": 43343,
"name": "PUSH [tag]",
"source": 0,
"value": "43"
},
{
"begin": 43046,
"end": 43343,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 43046,
"end": 43343,
"name": "tag",
"source": 0,
"value": "42"
},
{
"begin": 43046,
"end": 43343,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 43046,
"end": 43343,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 43046,
"end": 43343,
"name": "MLOAD",
"source": 0
},
{
"begin": 43046,
"end": 43343,
"name": "DUP1",
"source": 0
},
{
"begin": 43046,
"end": 43343,
"name": "SWAP2",
"source": 0
},
{
"begin": 43046,
"end": 43343,
"name": "SUB",
"source": 0
},
{
"begin": 43046,
"end": 43343,
"name": "SWAP1",
"source": 0
},
{
"begin": 43046,
"end": 43343,
"name": "RETURN",
"source": 0
},
{
"begin": 49098,
"end": 49262,
"name": "tag",
"source": 0,
"value": "8"
},
{
"begin": 49098,
"end": 49262,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 49098,
"end": 49262,
"name": "PUSH [tag]",
"source": 0,
"value": "44"
},
{
"begin": 49098,
"end": 49262,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 49098,
"end": 49262,
"name": "DUP1",
"source": 0
},
{
"begin": 49098,
"end": 49262,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 49098,
"end": 49262,
"name": "SUB",
"source": 0
},
{
"begin": 49098,
"end": 49262,
"name": "DUP2",
"source": 0
},
{
"begin": 49098,
"end": 49262,
"name": "ADD",
"source": 0
},
{
"begin": 49098,
"end": 49262,
"name": "SWAP1",
"source": 0
},
{
"begin": 49098,
"end": 49262,
"name": "PUSH [tag]",
"source": 0,
"value": "45"
},
{
"begin": 49098,
"end": 49262,
"name": "SWAP2",
"source": 0
},
{
"begin": 49098,
"end": 49262,
"name": "SWAP1",
"source": 0
},
{
"begin": 49098,
"end": 49262,
"name": "PUSH [tag]",
"source": 0,
"value": "46"
},
{
"begin": 49098,
"end": 49262,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 49098,
"end": 49262,
"name": "tag",
"source": 0,
"value": "45"
},
{
"begin": 49098,
"end": 49262,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 49098,
"end": 49262,
"name": "PUSH [tag]",
"source": 0,
"value": "47"
},
{
"begin": 49098,
"end": 49262,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 49098,
"end": 49262,
"name": "tag",
"source": 0,
"value": "44"
},
{
"begin": 49098,
"end": 49262,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 49098,
"end": 49262,
"name": "STOP",
"source": 0
},
{
"begin": 49328,
"end": 49507,
"name": "tag",
"source": 0,
"value": "9"
},
{
"begin": 49328,
"end": 49507,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 49328,
"end": 49507,
"name": "PUSH [tag]",
"source": 0,
"value": "48"
},
{
"begin": 49328,
"end": 49507,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 49328,
"end": 49507,
"name": "DUP1",
"source": 0
},
{
"begin": 49328,
"end": 49507,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 49328,
"end": 49507,
"name": "SUB",
"source": 0
},
{
"begin": 49328,
"end": 49507,
"name": "DUP2",
"source": 0
},
{
"begin": 49328,
"end": 49507,
"name": "ADD",
"source": 0
},
{
"begin": 49328,
"end": 49507,
"name": "SWAP1",
"source": 0
},
{
"begin": 49328,
"end": 49507,
"name": "PUSH [tag]",
"source": 0,
"value": "49"
},
{
"begin": 49328,
"end": 49507,
"name": "SWAP2",
"source": 0
},
{
"begin": 49328,
"end": 49507,
"name": "SWAP1",
"source": 0
},
{
"begin": 49328,
"end": 49507,
"name": "PUSH [tag]",
"source": 0,
"value": "46"
},
{
"begin": 49328,
"end": 49507,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 49328,
"end": 49507,
"name": "tag",
"source": 0,
"value": "49"
},
{
"begin": 49328,
"end": 49507,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 49328,
"end": 49507,
"name": "PUSH [tag]",
"source": 0,
"value": "50"
},
{
"begin": 49328,
"end": 49507,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 49328,
"end": 49507,
"name": "tag",
"source": 0,
"value": "48"
},
{
"begin": 49328,
"end": 49507,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 49328,
"end": 49507,
"name": "STOP",
"source": 0
},
{
"begin": 46618,
"end": 46741,
"name": "tag",
"source": 0,
"value": "10"
},
{
"begin": 46618,
"end": 46741,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 46618,
"end": 46741,
"name": "PUSH [tag]",
"source": 0,
"value": "51"
},
{
"begin": 46618,
"end": 46741,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 46618,
"end": 46741,
"name": "DUP1",
"source": 0
},
{
"begin": 46618,
"end": 46741,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 46618,
"end": 46741,
"name": "SUB",
"source": 0
},
{
"begin": 46618,
"end": 46741,
"name": "DUP2",
"source": 0
},
{
"begin": 46618,
"end": 46741,
"name": "ADD",
"source": 0
},
{
"begin": 46618,
"end": 46741,
"name": "SWAP1",
"source": 0
},
{
"begin": 46618,
"end": 46741,
"name": "PUSH [tag]",
"source": 0,
"value": "52"
},
{
"begin": 46618,
"end": 46741,
"name": "SWAP2",
"source": 0
},
{
"begin": 46618,
"end": 46741,
"name": "SWAP1",
"source": 0
},
{
"begin": 46618,
"end": 46741,
"name": "PUSH [tag]",
"source": 0,
"value": "32"
},
{
"begin": 46618,
"end": 46741,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 46618,
"end": 46741,
"name": "tag",
"source": 0,
"value": "52"
},
{
"begin": 46618,
"end": 46741,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 46618,
"end": 46741,
"name": "PUSH [tag]",
"source": 0,
"value": "53"
},
{
"begin": 46618,
"end": 46741,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 46618,
"end": 46741,
"name": "tag",
"source": 0,
"value": "51"
},
{
"begin": 46618,
"end": 46741,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 46618,
"end": 46741,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 46618,
"end": 46741,
"name": "MLOAD",
"source": 0
},
{
"begin": 46618,
"end": 46741,
"name": "PUSH [tag]",
"source": 0,
"value": "54"
},
{
"begin": 46618,
"end": 46741,
"name": "SWAP2",
"source": 0
},
{
"begin": 46618,
"end": 46741,
"name": "SWAP1",
"source": 0
},
{
"begin": 46618,
"end": 46741,
"name": "PUSH [tag]",
"source": 0,
"value": "35"
},
{
"begin": 46618,
"end": 46741,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 46618,
"end": 46741,
"name": "tag",
"source": 0,
"value": "54"
},
{
"begin": 46618,
"end": 46741,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 46618,
"end": 46741,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 46618,
"end": 46741,
"name": "MLOAD",
"source": 0
},
{
"begin": 46618,
"end": 46741,
"name": "DUP1",
"source": 0
},
{
"begin": 46618,
"end": 46741,
"name": "SWAP2",
"source": 0
},
{
"begin": 46618,
"end": 46741,
"name": "SUB",
"source": 0
},
{
"begin": 46618,
"end": 46741,
"name": "SWAP1",
"source": 0
},
{
"begin": 46618,
"end": 46741,
"name": "RETURN",
"source": 0
},
{
"begin": 44134,
"end": 44337,
"name": "tag",
"source": 0,
"value": "11"
},
{
"begin": 44134,
"end": 44337,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 44134,
"end": 44337,
"name": "PUSH [tag]",
"source": 0,
"value": "55"
},
{
"begin": 44134,
"end": 44337,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 44134,
"end": 44337,
"name": "DUP1",
"source": 0
},
{
"begin": 44134,
"end": 44337,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 44134,
"end": 44337,
"name": "SUB",
"source": 0
},
{
"begin": 44134,
"end": 44337,
"name": "DUP2",
"source": 0
},
{
"begin": 44134,
"end": 44337,
"name": "ADD",
"source": 0
},
{
"begin": 44134,
"end": 44337,
"name": "SWAP1",
"source": 0
},
{
"begin": 44134,
"end": 44337,
"name": "PUSH [tag]",
"source": 0,
"value": "56"
},
{
"begin": 44134,
"end": 44337,
"name": "SWAP2",
"source": 0
},
{
"begin": 44134,
"end": 44337,
"name": "SWAP1",
"source": 0
},
{
"begin": 44134,
"end": 44337,
"name": "PUSH [tag]",
"source": 0,
"value": "57"
},
{
"begin": 44134,
"end": 44337,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 44134,
"end": 44337,
"name": "tag",
"source": 0,
"value": "56"
},
{
"begin": 44134,
"end": 44337,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 44134,
"end": 44337,
"name": "PUSH [tag]",
"source": 0,
"value": "58"
},
{
"begin": 44134,
"end": 44337,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 44134,
"end": 44337,
"name": "tag",
"source": 0,
"value": "55"
},
{
"begin": 44134,
"end": 44337,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 44134,
"end": 44337,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 44134,
"end": 44337,
"name": "MLOAD",
"source": 0
},
{
"begin": 44134,
"end": 44337,
"name": "PUSH [tag]",
"source": 0,
"value": "59"
},
{
"begin": 44134,
"end": 44337,
"name": "SWAP2",
"source": 0
},
{
"begin": 44134,
"end": 44337,
"name": "SWAP1",
"source": 0
},
{
"begin": 44134,
"end": 44337,
"name": "PUSH [tag]",
"source": 0,
"value": "43"
},
{
"begin": 44134,
"end": 44337,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 44134,
"end": 44337,
"name": "tag",
"source": 0,
"value": "59"
},
{
"begin": 44134,
"end": 44337,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 44134,
"end": 44337,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 44134,
"end": 44337,
"name": "MLOAD",
"source": 0
},
{
"begin": 44134,
"end": 44337,
"name": "DUP1",
"source": 0
},
{
"begin": 44134,
"end": 44337,
"name": "SWAP2",
"source": 0
},
{
"begin": 44134,
"end": 44337,
"name": "SUB",
"source": 0
},
{
"begin": 44134,
"end": 44337,
"name": "SWAP1",
"source": 0
},
{
"begin": 44134,
"end": 44337,
"name": "RETURN",
"source": 0
},
{
"begin": 46965,
"end": 47067,
"name": "tag",
"source": 0,
"value": "12"
},
{
"begin": 46965,
"end": 47067,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 46965,
"end": 47067,
"name": "PUSH [tag]",
"source": 0,
"value": "60"
},
{
"begin": 46965,
"end": 47067,
"name": "PUSH [tag]",
"source": 0,
"value": "61"
},
{
"begin": 46965,
"end": 47067,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 46965,
"end": 47067,
"name": "tag",
"source": 0,
"value": "60"
},
{
"begin": 46965,
"end": 47067,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 46965,
"end": 47067,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 46965,
"end": 47067,
"name": "MLOAD",
"source": 0
},
{
"begin": 46965,
"end": 47067,
"name": "PUSH [tag]",
"source": 0,
"value": "62"
},
{
"begin": 46965,
"end": 47067,
"name": "SWAP2",
"source": 0
},
{
"begin": 46965,
"end": 47067,
"name": "SWAP1",
"source": 0
},
{
"begin": 46965,
"end": 47067,
"name": "PUSH [tag]",
"source": 0,
"value": "29"
},
{
"begin": 46965,
"end": 47067,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 46965,
"end": 47067,
"name": "tag",
"source": 0,
"value": "62"
},
{
"begin": 46965,
"end": 47067,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 46965,
"end": 47067,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 46965,
"end": 47067,
"name": "MLOAD",
"source": 0
},
{
"begin": 46965,
"end": 47067,
"name": "DUP1",
"source": 0
},
{
"begin": 46965,
"end": 47067,
"name": "SWAP2",
"source": 0
},
{
"begin": 46965,
"end": 47067,
"name": "SUB",
"source": 0
},
{
"begin": 46965,
"end": 47067,
"name": "SWAP1",
"source": 0
},
{
"begin": 46965,
"end": 47067,
"name": "RETURN",
"source": 0
},
{
"begin": 48526,
"end": 48808,
"name": "tag",
"source": 0,
"value": "13"
},
{
"begin": 48526,
"end": 48808,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 48526,
"end": 48808,
"name": "PUSH [tag]",
"source": 0,
"value": "63"
},
{
"begin": 48526,
"end": 48808,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 48526,
"end": 48808,
"name": "DUP1",
"source": 0
},
{
"begin": 48526,
"end": 48808,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 48526,
"end": 48808,
"name": "SUB",
"source": 0
},
{
"begin": 48526,
"end": 48808,
"name": "DUP2",
"source": 0
},
{
"begin": 48526,
"end": 48808,
"name": "ADD",
"source": 0
},
{
"begin": 48526,
"end": 48808,
"name": "SWAP1",
"source": 0
},
{
"begin": 48526,
"end": 48808,
"name": "PUSH [tag]",
"source": 0,
"value": "64"
},
{
"begin": 48526,
"end": 48808,
"name": "SWAP2",
"source": 0
},
{
"begin": 48526,
"end": 48808,
"name": "SWAP1",
"source": 0
},
{
"begin": 48526,
"end": 48808,
"name": "PUSH [tag]",
"source": 0,
"value": "65"
},
{
"begin": 48526,
"end": 48808,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 48526,
"end": 48808,
"name": "tag",
"source": 0,
"value": "64"
},
{
"begin": 48526,
"end": 48808,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 48526,
"end": 48808,
"name": "PUSH [tag]",
"source": 0,
"value": "66"
},
{
"begin": 48526,
"end": 48808,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 48526,
"end": 48808,
"name": "tag",
"source": 0,
"value": "63"
},
{
"begin": 48526,
"end": 48808,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 48526,
"end": 48808,
"name": "STOP",
"source": 0
},
{
"begin": 49573,
"end": 49932,
"name": "tag",
"source": 0,
"value": "14"
},
{
"begin": 49573,
"end": 49932,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 49573,
"end": 49932,
"name": "PUSH [tag]",
"source": 0,
"value": "67"
},
{
"begin": 49573,
"end": 49932,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 49573,
"end": 49932,
"name": "DUP1",
"source": 0
},
{
"begin": 49573,
"end": 49932,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 49573,
"end": 49932,
"name": "SUB",
"source": 0
},
{
"begin": 49573,
"end": 49932,
"name": "DUP2",
"source": 0
},
{
"begin": 49573,
"end": 49932,
"name": "ADD",
"source": 0
},
{
"begin": 49573,
"end": 49932,
"name": "SWAP1",
"source": 0
},
{
"begin": 49573,
"end": 49932,
"name": "PUSH [tag]",
"source": 0,
"value": "68"
},
{
"begin": 49573,
"end": 49932,
"name": "SWAP2",
"source": 0
},
{
"begin": 49573,
"end": 49932,
"name": "SWAP1",
"source": 0
},
{
"begin": 49573,
"end": 49932,
"name": "PUSH [tag]",
"source": 0,
"value": "69"
},
{
"begin": 49573,
"end": 49932,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 49573,
"end": 49932,
"name": "tag",
"source": 0,
"value": "68"
},
{
"begin": 49573,
"end": 49932,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 49573,
"end": 49932,
"name": "PUSH [tag]",
"source": 0,
"value": "70"
},
{
"begin": 49573,
"end": 49932,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 49573,
"end": 49932,
"name": "tag",
"source": 0,
"value": "67"
},
{
"begin": 49573,
"end": 49932,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 49573,
"end": 49932,
"name": "STOP",
"source": 0
},
{
"begin": 47133,
"end": 47446,
"name": "tag",
"source": 0,
"value": "15"
},
{
"begin": 47133,
"end": 47446,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 47133,
"end": 47446,
"name": "PUSH [tag]",
"source": 0,
"value": "71"
},
{
"begin": 47133,
"end": 47446,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 47133,
"end": 47446,
"name": "DUP1",
"source": 0
},
{
"begin": 47133,
"end": 47446,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 47133,
"end": 47446,
"name": "SUB",
"source": 0
},
{
"begin": 47133,
"end": 47446,
"name": "DUP2",
"source": 0
},
{
"begin": 47133,
"end": 47446,
"name": "ADD",
"source": 0
},
{
"begin": 47133,
"end": 47446,
"name": "SWAP1",
"source": 0
},
{
"begin": 47133,
"end": 47446,
"name": "PUSH [tag]",
"source": 0,
"value": "72"
},
{
"begin": 47133,
"end": 47446,
"name": "SWAP2",
"source": 0
},
{
"begin": 47133,
"end": 47446,
"name": "SWAP1",
"source": 0
},
{
"begin": 47133,
"end": 47446,
"name": "PUSH [tag]",
"source": 0,
"value": "32"
},
{
"begin": 47133,
"end": 47446,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 47133,
"end": 47446,
"name": "tag",
"source": 0,
"value": "72"
},
{
"begin": 47133,
"end": 47446,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 47133,
"end": 47446,
"name": "PUSH [tag]",
"source": 0,
"value": "73"
},
{
"begin": 47133,
"end": 47446,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 47133,
"end": 47446,
"name": "tag",
"source": 0,
"value": "71"
},
{
"begin": 47133,
"end": 47446,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 47133,
"end": 47446,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 47133,
"end": 47446,
"name": "MLOAD",
"source": 0
},
{
"begin": 47133,
"end": 47446,
"name": "PUSH [tag]",
"source": 0,
"value": "74"
},
{
"begin": 47133,
"end": 47446,
"name": "SWAP2",
"source": 0
},
{
"begin": 47133,
"end": 47446,
"name": "SWAP1",
"source": 0
},
{
"begin": 47133,
"end": 47446,
"name": "PUSH [tag]",
"source": 0,
"value": "29"
},
{
"begin": 47133,
"end": 47446,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 47133,
"end": 47446,
"name": "tag",
"source": 0,
"value": "74"
},
{
"begin": 47133,
"end": 47446,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 47133,
"end": 47446,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 47133,
"end": 47446,
"name": "MLOAD",
"source": 0
},
{
"begin": 47133,
"end": 47446,
"name": "DUP1",
"source": 0
},
{
"begin": 47133,
"end": 47446,
"name": "SWAP2",
"source": 0
},
{
"begin": 47133,
"end": 47446,
"name": "SUB",
"source": 0
},
{
"begin": 47133,
"end": 47446,
"name": "SWAP1",
"source": 0
},
{
"begin": 47133,
"end": 47446,
"name": "RETURN",
"source": 0
},
{
"begin": 48874,
"end": 49036,
"name": "tag",
"source": 0,
"value": "16"
},
{
"begin": 48874,
"end": 49036,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 48874,
"end": 49036,
"name": "PUSH [tag]",
"source": 0,
"value": "75"
},
{
"begin": 48874,
"end": 49036,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 48874,
"end": 49036,
"name": "DUP1",
"source": 0
},
{
"begin": 48874,
"end": 49036,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 48874,
"end": 49036,
"name": "SUB",
"source": 0
},
{
"begin": 48874,
"end": 49036,
"name": "DUP2",
"source": 0
},
{
"begin": 48874,
"end": 49036,
"name": "ADD",
"source": 0
},
{
"begin": 48874,
"end": 49036,
"name": "SWAP1",
"source": 0
},
{
"begin": 48874,
"end": 49036,
"name": "PUSH [tag]",
"source": 0,
"value": "76"
},
{
"begin": 48874,
"end": 49036,
"name": "SWAP2",
"source": 0
},
{
"begin": 48874,
"end": 49036,
"name": "SWAP1",
"source": 0
},
{
"begin": 48874,
"end": 49036,
"name": "PUSH [tag]",
"source": 0,
"value": "77"
},
{
"begin": 48874,
"end": 49036,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 48874,
"end": 49036,
"name": "tag",
"source": 0,
"value": "76"
},
{
"begin": 48874,
"end": 49036,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 48874,
"end": 49036,
"name": "PUSH [tag]",
"source": 0,
"value": "78"
},
{
"begin": 48874,
"end": 49036,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 48874,
"end": 49036,
"name": "tag",
"source": 0,
"value": "75"
},
{
"begin": 48874,
"end": 49036,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 48874,
"end": 49036,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 48874,
"end": 49036,
"name": "MLOAD",
"source": 0
},
{
"begin": 48874,
"end": 49036,
"name": "PUSH [tag]",
"source": 0,
"value": "79"
},
{
"begin": 48874,
"end": 49036,
"name": "SWAP2",
"source": 0
},
{
"begin": 48874,
"end": 49036,
"name": "SWAP1",
"source": 0
},
{
"begin": 48874,
"end": 49036,
"name": "PUSH [tag]",
"source": 0,
"value": "25"
},
{
"begin": 48874,
"end": 49036,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 48874,
"end": 49036,
"name": "tag",
"source": 0,
"value": "79"
},
{
"begin": 48874,
"end": 49036,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 48874,
"end": 49036,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 48874,
"end": 49036,
"name": "MLOAD",
"source": 0
},
{
"begin": 48874,
"end": 49036,
"name": "DUP1",
"source": 0
},
{
"begin": 48874,
"end": 49036,
"name": "SWAP2",
"source": 0
},
{
"begin": 48874,
"end": 49036,
"name": "SUB",
"source": 0
},
{
"begin": 48874,
"end": 49036,
"name": "SWAP1",
"source": 0
},
{
"begin": 48874,
"end": 49036,
"name": "RETURN",
"source": 0
},
{
"begin": 43775,
"end": 44075,
"name": "tag",
"source": 0,
"value": "23"
},
{
"begin": 43775,
"end": 44075,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 43877,
"end": 43881,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 43927,
"end": 43952,
"name": "PUSH",
"source": 0,
"value": "80AC58CD00000000000000000000000000000000000000000000000000000000"
},
{
"begin": 43912,
"end": 43952,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 43912,
"end": 43952,
"name": "NOT",
"source": 0
},
{
"begin": 43912,
"end": 43952,
"name": "AND",
"source": 0
},
{
"begin": 43912,
"end": 43923,
"name": "DUP3",
"source": 0
},
{
"begin": 43912,
"end": 43952,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 43912,
"end": 43952,
"name": "NOT",
"source": 0
},
{
"begin": 43912,
"end": 43952,
"name": "AND",
"source": 0
},
{
"begin": 43912,
"end": 43952,
"name": "EQ",
"source": 0
},
{
"begin": 43912,
"end": 44016,
"name": "DUP1",
"source": 0
},
{
"begin": 43912,
"end": 44016,
"name": "PUSH [tag]",
"source": 0,
"value": "81"
},
{
"begin": 43912,
"end": 44016,
"name": "JUMPI",
"source": 0
},
{
"begin": 43912,
"end": 44016,
"name": "POP",
"source": 0
},
{
"begin": 43983,
"end": 44016,
"name": "PUSH",
"source": 0,
"value": "5B5E139F00000000000000000000000000000000000000000000000000000000"
},
{
"begin": 43968,
"end": 44016,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 43968,
"end": 44016,
"name": "NOT",
"source": 0
},
{
"begin": 43968,
"end": 44016,
"name": "AND",
"source": 0
},
{
"begin": 43968,
"end": 43979,
"name": "DUP3",
"source": 0
},
{
"begin": 43968,
"end": 44016,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 43968,
"end": 44016,
"name": "NOT",
"source": 0
},
{
"begin": 43968,
"end": 44016,
"name": "AND",
"source": 0
},
{
"begin": 43968,
"end": 44016,
"name": "EQ",
"source": 0
},
{
"begin": 43912,
"end": 44016,
"name": "tag",
"source": 0,
"value": "81"
},
{
"begin": 43912,
"end": 44016,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 43912,
"end": 44068,
"name": "DUP1",
"source": 0
},
{
"begin": 43912,
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment