Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save abigpotostew/5422a6ec7caa2c739a25f969262000c6 to your computer and use it in GitHub Desktop.
Save abigpotostew/5422a6ec7caa2c739a25f969262000c6 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.7+commit.e28d00a7.js&optimize=true&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../utils/introspection/IERC165.sol";
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Interface for the NFT Royalty Standard
*/
interface IERC2981 is IERC165 {
/**
* @dev Called with the sale price to determine how much royalty is owed and to whom.
* @param tokenId - the NFT asset queried for royalty information
* @param salePrice - the sale price of the NFT asset specified by `tokenId`
* @return receiver - address of who should be sent the royalty payment
* @return royaltyAmount - the royalty payment amount for `salePrice`
*/
function royaltyInfo(uint256 tokenId, uint256 salePrice)
external
view
returns (address receiver, uint256 royaltyAmount);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_setOwner(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_setOwner(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_setOwner(newOwner);
}
function _setOwner(address newOwner) private {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../utils/introspection/IERC165.sol";
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Interface for the NFT Royalty Standard
*/
interface IERC2981 is IERC165 {
/**
* @dev Called with the sale price to determine how much royalty is owed and to whom.
* @param tokenId - the NFT asset queried for royalty information
* @param salePrice - the sale price of the NFT asset specified by `tokenId`
* @return receiver - address of who should be sent the royalty payment
* @return royaltyAmount - the royalty payment amount for `salePrice`
*/
function royaltyInfo(uint256 tokenId, uint256 salePrice)
external
view
returns (address receiver, uint256 royaltyAmount);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_62": {
"entryPoint": null,
"id": 62,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_decode_string_fromMemory": {
"entryPoint": 270,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory": {
"entryPoint": 453,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"extract_byte_array_length": {
"entryPoint": 559,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x41": {
"entryPoint": 620,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:1985:9",
"statements": [
{
"nodeType": "YulBlock",
"src": "6:3:9",
"statements": []
},
{
"body": {
"nodeType": "YulBlock",
"src": "78:821:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "127:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "136:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "139:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "129:6:9"
},
"nodeType": "YulFunctionCall",
"src": "129:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "129:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "106:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "114:4:9",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "102:3:9"
},
"nodeType": "YulFunctionCall",
"src": "102:17:9"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "121:3:9"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "98:3:9"
},
"nodeType": "YulFunctionCall",
"src": "98:27:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "91:6:9"
},
"nodeType": "YulFunctionCall",
"src": "91:35:9"
},
"nodeType": "YulIf",
"src": "88:55:9"
},
{
"nodeType": "YulVariableDeclaration",
"src": "152:23:9",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "168:6:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "162:5:9"
},
"nodeType": "YulFunctionCall",
"src": "162:13:9"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "156:2:9",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "184:28:9",
"value": {
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "202:2:9",
"type": "",
"value": "64"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "206:1:9",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "198:3:9"
},
"nodeType": "YulFunctionCall",
"src": "198:10:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "210:1:9",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "194:3:9"
},
"nodeType": "YulFunctionCall",
"src": "194:18:9"
},
"variables": [
{
"name": "_2",
"nodeType": "YulTypedName",
"src": "188:2:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "235:22:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "237:16:9"
},
"nodeType": "YulFunctionCall",
"src": "237:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "237:18:9"
}
]
},
"condition": {
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "227:2:9"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "231:2:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "224:2:9"
},
"nodeType": "YulFunctionCall",
"src": "224:10:9"
},
"nodeType": "YulIf",
"src": "221:36:9"
},
{
"nodeType": "YulVariableDeclaration",
"src": "266:17:9",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "280:2:9",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "276:3:9"
},
"nodeType": "YulFunctionCall",
"src": "276:7:9"
},
"variables": [
{
"name": "_3",
"nodeType": "YulTypedName",
"src": "270:2:9",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "292:23:9",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "312:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "306:5:9"
},
"nodeType": "YulFunctionCall",
"src": "306:9:9"
},
"variables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "296:6:9",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "324:71:9",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "346:6:9"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "370:2:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "374:4:9",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "366:3:9"
},
"nodeType": "YulFunctionCall",
"src": "366:13:9"
},
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "381:2:9"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "362:3:9"
},
"nodeType": "YulFunctionCall",
"src": "362:22:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "386:2:9",
"type": "",
"value": "63"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "358:3:9"
},
"nodeType": "YulFunctionCall",
"src": "358:31:9"
},
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "391:2:9"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "354:3:9"
},
"nodeType": "YulFunctionCall",
"src": "354:40:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "342:3:9"
},
"nodeType": "YulFunctionCall",
"src": "342:53:9"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "328:10:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "454:22:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "456:16:9"
},
"nodeType": "YulFunctionCall",
"src": "456:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "456:18:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "413:10:9"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "425:2:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "410:2:9"
},
"nodeType": "YulFunctionCall",
"src": "410:18:9"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "433:10:9"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "445:6:9"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "430:2:9"
},
"nodeType": "YulFunctionCall",
"src": "430:22:9"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "407:2:9"
},
"nodeType": "YulFunctionCall",
"src": "407:46:9"
},
"nodeType": "YulIf",
"src": "404:72:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "492:2:9",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "496:10:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "485:6:9"
},
"nodeType": "YulFunctionCall",
"src": "485:22:9"
},
"nodeType": "YulExpressionStatement",
"src": "485:22:9"
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "523:6:9"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "531:2:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "516:6:9"
},
"nodeType": "YulFunctionCall",
"src": "516:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "516:18:9"
},
{
"nodeType": "YulVariableDeclaration",
"src": "543:14:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "553:4:9",
"type": "",
"value": "0x20"
},
"variables": [
{
"name": "_4",
"nodeType": "YulTypedName",
"src": "547:2:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "603:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "612:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "615:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "605:6:9"
},
"nodeType": "YulFunctionCall",
"src": "605:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "605:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "580:6:9"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "588:2:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "576:3:9"
},
"nodeType": "YulFunctionCall",
"src": "576:15:9"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "593:2:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "572:3:9"
},
"nodeType": "YulFunctionCall",
"src": "572:24:9"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "598:3:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "569:2:9"
},
"nodeType": "YulFunctionCall",
"src": "569:33:9"
},
"nodeType": "YulIf",
"src": "566:53:9"
},
{
"nodeType": "YulVariableDeclaration",
"src": "628:10:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "637:1:9",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "632:1:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "693:87:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "722:6:9"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "730:1:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "718:3:9"
},
"nodeType": "YulFunctionCall",
"src": "718:14:9"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "734:2:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "714:3:9"
},
"nodeType": "YulFunctionCall",
"src": "714:23:9"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "753:6:9"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "761:1:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "749:3:9"
},
"nodeType": "YulFunctionCall",
"src": "749:14:9"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "765:2:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "745:3:9"
},
"nodeType": "YulFunctionCall",
"src": "745:23:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "739:5:9"
},
"nodeType": "YulFunctionCall",
"src": "739:30:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "707:6:9"
},
"nodeType": "YulFunctionCall",
"src": "707:63:9"
},
"nodeType": "YulExpressionStatement",
"src": "707:63:9"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "658:1:9"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "661:2:9"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "655:2:9"
},
"nodeType": "YulFunctionCall",
"src": "655:9:9"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "665:19:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "667:15:9",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "676:1:9"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "679:2:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "672:3:9"
},
"nodeType": "YulFunctionCall",
"src": "672:10:9"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "667:1:9"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "651:3:9",
"statements": []
},
"src": "647:133:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "810:59:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "839:6:9"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "847:2:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "835:3:9"
},
"nodeType": "YulFunctionCall",
"src": "835:15:9"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "852:2:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "831:3:9"
},
"nodeType": "YulFunctionCall",
"src": "831:24:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "857:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "824:6:9"
},
"nodeType": "YulFunctionCall",
"src": "824:35:9"
},
"nodeType": "YulExpressionStatement",
"src": "824:35:9"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "795:1:9"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "798:2:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "792:2:9"
},
"nodeType": "YulFunctionCall",
"src": "792:9:9"
},
"nodeType": "YulIf",
"src": "789:80:9"
},
{
"nodeType": "YulAssignment",
"src": "878:15:9",
"value": {
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "887:6:9"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "878:5:9"
}
]
}
]
},
"name": "abi_decode_string_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "52:6:9",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "60:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "68:5:9",
"type": ""
}
],
"src": "14:885:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1022:444:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1068:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1077:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1080:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1070:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1070:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "1070:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1043:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1052:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1039:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1039:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1064:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1035:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1035:32:9"
},
"nodeType": "YulIf",
"src": "1032:52:9"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1093:30:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1113:9:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1107:5:9"
},
"nodeType": "YulFunctionCall",
"src": "1107:16:9"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1097:6:9",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1132:28:9",
"value": {
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1150:2:9",
"type": "",
"value": "64"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1154:1:9",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "1146:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1146:10:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1158:1:9",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1142:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1142:18:9"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "1136:2:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1187:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1196:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1199:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1189:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1189:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "1189:12:9"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1175:6:9"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1183:2:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1172:2:9"
},
"nodeType": "YulFunctionCall",
"src": "1172:14:9"
},
"nodeType": "YulIf",
"src": "1169:34:9"
},
{
"nodeType": "YulAssignment",
"src": "1212:71:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1255:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1266:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1251:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1251:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1275:7:9"
}
],
"functionName": {
"name": "abi_decode_string_fromMemory",
"nodeType": "YulIdentifier",
"src": "1222:28:9"
},
"nodeType": "YulFunctionCall",
"src": "1222:61:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1212:6:9"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1292:41:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1318:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1329:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1314:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1314:18:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1308:5:9"
},
"nodeType": "YulFunctionCall",
"src": "1308:25:9"
},
"variables": [
{
"name": "offset_1",
"nodeType": "YulTypedName",
"src": "1296:8:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1362:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1371:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1374:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1364:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1364:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "1364:12:9"
}
]
},
"condition": {
"arguments": [
{
"name": "offset_1",
"nodeType": "YulIdentifier",
"src": "1348:8:9"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1358:2:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1345:2:9"
},
"nodeType": "YulFunctionCall",
"src": "1345:16:9"
},
"nodeType": "YulIf",
"src": "1342:36:9"
},
{
"nodeType": "YulAssignment",
"src": "1387:73:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1430:9:9"
},
{
"name": "offset_1",
"nodeType": "YulIdentifier",
"src": "1441:8:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1426:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1426:24:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1452:7:9"
}
],
"functionName": {
"name": "abi_decode_string_fromMemory",
"nodeType": "YulIdentifier",
"src": "1397:28:9"
},
"nodeType": "YulFunctionCall",
"src": "1397:63:9"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1387:6:9"
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "980:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "991:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1003:6:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1011:6:9",
"type": ""
}
],
"src": "904:562:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1526:325:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1536:22:9",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1550:1:9",
"type": "",
"value": "1"
},
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "1553:4:9"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "1546:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1546:12:9"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1536:6:9"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1567:38:9",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "1597:4:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1603:1:9",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1593:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1593:12:9"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "1571:18:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1644:31:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1646:27:9",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1660:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1668:4:9",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1656:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1656:17:9"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1646:6:9"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "1624:18:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1617:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1617:26:9"
},
"nodeType": "YulIf",
"src": "1614:61:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1734:111:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1755:1:9",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1762:3:9",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1767:10:9",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "1758:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1758:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1748:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1748:31:9"
},
"nodeType": "YulExpressionStatement",
"src": "1748:31:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1799:1:9",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1802:4:9",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1792:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1792:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "1792:15:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1827:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1830:4:9",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1820:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1820:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "1820:15:9"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "1690:18:9"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1713:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1721:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1710:2:9"
},
"nodeType": "YulFunctionCall",
"src": "1710:14:9"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "1687:2:9"
},
"nodeType": "YulFunctionCall",
"src": "1687:38:9"
},
"nodeType": "YulIf",
"src": "1684:161:9"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "1506:4:9",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1515:6:9",
"type": ""
}
],
"src": "1471:380:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1888:95:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1905:1:9",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1912:3:9",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1917:10:9",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "1908:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1908:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1898:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1898:31:9"
},
"nodeType": "YulExpressionStatement",
"src": "1898:31:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1945:1:9",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1948:4:9",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1938:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1938:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "1938:15:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1969:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1972:4:9",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1962:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1962:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "1962:15:9"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "1856:127:9"
}
]
},
"contents": "{\n { }\n function abi_decode_string_fromMemory(offset, end) -> array\n {\n if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n let _1 := mload(offset)\n let _2 := sub(shl(64, 1), 1)\n if gt(_1, _2) { panic_error_0x41() }\n let _3 := not(31)\n let memPtr := mload(64)\n let newFreePtr := add(memPtr, and(add(and(add(_1, 0x1f), _3), 63), _3))\n if or(gt(newFreePtr, _2), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n mstore(memPtr, _1)\n let _4 := 0x20\n if gt(add(add(offset, _1), _4), end) { revert(0, 0) }\n let i := 0\n for { } lt(i, _1) { i := add(i, _4) }\n {\n mstore(add(add(memPtr, i), _4), mload(add(add(offset, i), _4)))\n }\n if gt(i, _1)\n {\n mstore(add(add(memPtr, _1), _4), 0)\n }\n array := memPtr\n }\n function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n let offset := mload(headStart)\n let _1 := sub(shl(64, 1), 1)\n if gt(offset, _1) { revert(0, 0) }\n value0 := abi_decode_string_fromMemory(add(headStart, offset), dataEnd)\n let offset_1 := mload(add(headStart, 32))\n if gt(offset_1, _1) { revert(0, 0) }\n value1 := abi_decode_string_fromMemory(add(headStart, offset_1), dataEnd)\n }\n function extract_byte_array_length(data) -> length\n {\n length := shr(1, data)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n if eq(outOfPlaceEncoding, lt(length, 32))\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n }\n function panic_error_0x41()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n}",
"id": 9,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b50604051620014d8380380620014d88339810160408190526200003491620001c5565b81516200004990600090602085019062000068565b5080516200005f90600190602084019062000068565b50505062000282565b82805462000076906200022f565b90600052602060002090601f0160209004810192826200009a5760008555620000e5565b82601f10620000b557805160ff1916838001178555620000e5565b82800160010185558215620000e5579182015b82811115620000e5578251825591602001919060010190620000c8565b50620000f3929150620000f7565b5090565b5b80821115620000f35760008155600101620000f8565b600082601f8301126200012057600080fd5b81516001600160401b03808211156200013d576200013d6200026c565b604051601f8301601f19908116603f011681019082821181831017156200016857620001686200026c565b816040528381526020925086838588010111156200018557600080fd5b600091505b83821015620001a957858201830151818301840152908201906200018a565b83821115620001bb5760008385830101525b9695505050505050565b60008060408385031215620001d957600080fd5b82516001600160401b0380821115620001f157600080fd5b620001ff868387016200010e565b935060208501519150808211156200021657600080fd5b5062000225858286016200010e565b9150509250929050565b600181811c908216806200024457607f821691505b602082108114156200026657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61124680620002926000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c80636352211e1161008c578063a22cb46511610066578063a22cb465146101b3578063b88d4fde146101c6578063c87b56dd146101d9578063e985e9c5146101ec57600080fd5b80636352211e1461017757806370a082311461018a57806395d89b41146101ab57600080fd5b806301ffc9a7146100d457806306fdde03146100fc578063081812fc14610111578063095ea7b31461013c57806323b872dd1461015157806342842e0e14610164575b600080fd5b6100e76100e2366004610f25565b610228565b60405190151581526020015b60405180910390f35b61010461027a565b6040516100f39190611010565b61012461011f366004610f5f565b61030c565b6040516001600160a01b0390911681526020016100f3565b61014f61014a366004610efb565b6103a6565b005b61014f61015f366004610da7565b6104bc565b61014f610172366004610da7565b6104ed565b610124610185366004610f5f565b610508565b61019d610198366004610d59565b61057f565b6040519081526020016100f3565b610104610606565b61014f6101c1366004610ebf565b610615565b61014f6101d4366004610de3565b6106da565b6101046101e7366004610f5f565b610712565b6100e76101fa366004610d74565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60006001600160e01b031982166380ac58cd60e01b148061025957506001600160e01b03198216635b5e139f60e01b145b8061027457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461028990611135565b80601f01602080910402602001604051908101604052809291908181526020018280546102b590611135565b80156103025780601f106102d757610100808354040283529160200191610302565b820191906000526020600020905b8154815290600101906020018083116102e557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661038a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006103b182610508565b9050806001600160a01b0316836001600160a01b0316141561041f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610381565b336001600160a01b038216148061043b575061043b81336101fa565b6104ad5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610381565b6104b783836107fa565b505050565b6104c63382610868565b6104e25760405162461bcd60e51b815260040161038190611075565b6104b783838361095f565b6104b7838383604051806020016040528060008152506106da565b6000818152600260205260408120546001600160a01b0316806102745760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610381565b60006001600160a01b0382166105ea5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610381565b506001600160a01b031660009081526003602052604090205490565b60606001805461028990611135565b6001600160a01b03821633141561066e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610381565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6106e43383610868565b6107005760405162461bcd60e51b815260040161038190611075565b61070c84848484610aff565b50505050565b6000818152600260205260409020546060906001600160a01b03166107915760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610381565b60006107a860408051602081019091526000815290565b905060008151116107c857604051806020016040528060008152506107f3565b806107d284610b32565b6040516020016107e3929190610fa4565b6040516020818303038152906040525b9392505050565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061082f82610508565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166108e15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610381565b60006108ec83610508565b9050806001600160a01b0316846001600160a01b031614806109275750836001600160a01b031661091c8461030c565b6001600160a01b0316145b8061095757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661097282610508565b6001600160a01b0316146109da5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610381565b6001600160a01b038216610a3c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610381565b610a476000826107fa565b6001600160a01b0383166000908152600360205260408120805460019290610a709084906110f2565b90915550506001600160a01b0382166000908152600360205260408120805460019290610a9e9084906110c6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610b0a84848461095f565b610b1684848484610c30565b61070c5760405162461bcd60e51b815260040161038190611023565b606081610b565750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610b805780610b6a81611170565b9150610b799050600a836110de565b9150610b5a565b60008167ffffffffffffffff811115610b9b57610b9b6111e1565b6040519080825280601f01601f191660200182016040528015610bc5576020820181803683370190505b5090505b841561095757610bda6001836110f2565b9150610be7600a8661118b565b610bf29060306110c6565b60f81b818381518110610c0757610c076111cb565b60200101906001600160f81b031916908160001a905350610c29600a866110de565b9450610bc9565b60006001600160a01b0384163b15610d3257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290610c74903390899088908890600401610fd3565b602060405180830381600087803b158015610c8e57600080fd5b505af1925050508015610cbe575060408051601f3d908101601f19168201909252610cbb91810190610f42565b60015b610d18573d808015610cec576040519150601f19603f3d011682016040523d82523d6000602084013e610cf1565b606091505b508051610d105760405162461bcd60e51b815260040161038190611023565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610957565b506001949350505050565b80356001600160a01b0381168114610d5457600080fd5b919050565b600060208284031215610d6b57600080fd5b6107f382610d3d565b60008060408385031215610d8757600080fd5b610d9083610d3d565b9150610d9e60208401610d3d565b90509250929050565b600080600060608486031215610dbc57600080fd5b610dc584610d3d565b9250610dd360208501610d3d565b9150604084013590509250925092565b60008060008060808587031215610df957600080fd5b610e0285610d3d565b9350610e1060208601610d3d565b925060408501359150606085013567ffffffffffffffff80821115610e3457600080fd5b818701915087601f830112610e4857600080fd5b813581811115610e5a57610e5a6111e1565b604051601f8201601f19908116603f01168101908382118183101715610e8257610e826111e1565b816040528281528a6020848701011115610e9b57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215610ed257600080fd5b610edb83610d3d565b915060208301358015158114610ef057600080fd5b809150509250929050565b60008060408385031215610f0e57600080fd5b610f1783610d3d565b946020939093013593505050565b600060208284031215610f3757600080fd5b81356107f3816111f7565b600060208284031215610f5457600080fd5b81516107f3816111f7565b600060208284031215610f7157600080fd5b5035919050565b60008151808452610f90816020860160208601611109565b601f01601f19169290920160200192915050565b60008351610fb6818460208801611109565b835190830190610fca818360208801611109565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061100690830184610f78565b9695505050505050565b6020815260006107f36020830184610f78565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156110d9576110d961119f565b500190565b6000826110ed576110ed6111b5565b500490565b6000828210156111045761110461119f565b500390565b60005b8381101561112457818101518382015260200161110c565b8381111561070c5750506000910152565b600181811c9082168061114957607f821691505b6020821081141561116a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156111845761118461119f565b5060010190565b60008261119a5761119a6111b5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461120d57600080fd5b5056fea2646970667358221220ba9687875ba44c36a2f3bdd0bbf28cf22720b941d6722c7615b208696e6aab6a64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x14D8 CODESIZE SUB DUP1 PUSH3 0x14D8 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x1C5 JUMP JUMPDEST DUP2 MLOAD PUSH3 0x49 SWAP1 PUSH1 0x0 SWAP1 PUSH1 0x20 DUP6 ADD SWAP1 PUSH3 0x68 JUMP JUMPDEST POP DUP1 MLOAD PUSH3 0x5F SWAP1 PUSH1 0x1 SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH3 0x68 JUMP JUMPDEST POP POP POP PUSH3 0x282 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x76 SWAP1 PUSH3 0x22F JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x9A JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0xE5 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0xB5 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0xE5 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0xE5 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0xE5 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0xC8 JUMP JUMPDEST POP PUSH3 0xF3 SWAP3 SWAP2 POP PUSH3 0xF7 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0xF3 JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0xF8 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x120 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x13D JUMPI PUSH3 0x13D PUSH3 0x26C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP4 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP3 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH3 0x168 JUMPI PUSH3 0x168 PUSH3 0x26C JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE PUSH1 0x20 SWAP3 POP DUP7 DUP4 DUP6 DUP9 ADD ADD GT ISZERO PUSH3 0x185 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP2 POP JUMPDEST DUP4 DUP3 LT ISZERO PUSH3 0x1A9 JUMPI DUP6 DUP3 ADD DUP4 ADD MLOAD DUP2 DUP4 ADD DUP5 ADD MSTORE SWAP1 DUP3 ADD SWAP1 PUSH3 0x18A JUMP JUMPDEST DUP4 DUP3 GT ISZERO PUSH3 0x1BB JUMPI PUSH1 0x0 DUP4 DUP6 DUP4 ADD ADD MSTORE JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x1D9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x1F1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x1FF DUP7 DUP4 DUP8 ADD PUSH3 0x10E JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD MLOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH3 0x216 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH3 0x225 DUP6 DUP3 DUP7 ADD PUSH3 0x10E JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH3 0x244 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x266 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x1246 DUP1 PUSH3 0x292 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 0xCF 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 0x1B3 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x1C6 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x1D9 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x1EC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6352211E EQ PUSH2 0x177 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x18A JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1AB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xD4 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xFC JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x111 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x13C JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x151 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x164 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xE7 PUSH2 0xE2 CALLDATASIZE PUSH1 0x4 PUSH2 0xF25 JUMP JUMPDEST PUSH2 0x228 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x104 PUSH2 0x27A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF3 SWAP2 SWAP1 PUSH2 0x1010 JUMP JUMPDEST PUSH2 0x124 PUSH2 0x11F CALLDATASIZE PUSH1 0x4 PUSH2 0xF5F JUMP JUMPDEST PUSH2 0x30C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xF3 JUMP JUMPDEST PUSH2 0x14F PUSH2 0x14A CALLDATASIZE PUSH1 0x4 PUSH2 0xEFB JUMP JUMPDEST PUSH2 0x3A6 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x14F PUSH2 0x15F CALLDATASIZE PUSH1 0x4 PUSH2 0xDA7 JUMP JUMPDEST PUSH2 0x4BC JUMP JUMPDEST PUSH2 0x14F PUSH2 0x172 CALLDATASIZE PUSH1 0x4 PUSH2 0xDA7 JUMP JUMPDEST PUSH2 0x4ED JUMP JUMPDEST PUSH2 0x124 PUSH2 0x185 CALLDATASIZE PUSH1 0x4 PUSH2 0xF5F JUMP JUMPDEST PUSH2 0x508 JUMP JUMPDEST PUSH2 0x19D PUSH2 0x198 CALLDATASIZE PUSH1 0x4 PUSH2 0xD59 JUMP JUMPDEST PUSH2 0x57F JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xF3 JUMP JUMPDEST PUSH2 0x104 PUSH2 0x606 JUMP JUMPDEST PUSH2 0x14F PUSH2 0x1C1 CALLDATASIZE PUSH1 0x4 PUSH2 0xEBF JUMP JUMPDEST PUSH2 0x615 JUMP JUMPDEST PUSH2 0x14F PUSH2 0x1D4 CALLDATASIZE PUSH1 0x4 PUSH2 0xDE3 JUMP JUMPDEST PUSH2 0x6DA JUMP JUMPDEST PUSH2 0x104 PUSH2 0x1E7 CALLDATASIZE PUSH1 0x4 PUSH2 0xF5F JUMP JUMPDEST PUSH2 0x712 JUMP JUMPDEST PUSH2 0xE7 PUSH2 0x1FA CALLDATASIZE PUSH1 0x4 PUSH2 0xD74 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x80AC58CD PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x259 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x5B5E139F PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x274 JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x289 SWAP1 PUSH2 0x1135 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 0x2B5 SWAP1 PUSH2 0x1135 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x302 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2D7 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x302 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 0x2E5 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x38A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76656420717565727920666F72206E6F6E6578 PUSH1 0x44 DUP3 ADD MSTORE PUSH12 0x34B9BA32B73A103A37B5B2B7 PUSH1 0xA1 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3B1 DUP3 PUSH2 0x508 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x41F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x39 PUSH1 0xF9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x381 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND EQ DUP1 PUSH2 0x43B JUMPI POP PUSH2 0x43B DUP2 CALLER PUSH2 0x1FA JUMP JUMPDEST PUSH2 0x4AD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x38 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F74206F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6E6572206E6F7220617070726F76656420666F7220616C6C0000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x381 JUMP JUMPDEST PUSH2 0x4B7 DUP4 DUP4 PUSH2 0x7FA JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x4C6 CALLER DUP3 PUSH2 0x868 JUMP JUMPDEST PUSH2 0x4E2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x381 SWAP1 PUSH2 0x1075 JUMP JUMPDEST PUSH2 0x4B7 DUP4 DUP4 DUP4 PUSH2 0x95F JUMP JUMPDEST PUSH2 0x4B7 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x6DA JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP1 PUSH2 0x274 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A206F776E657220717565727920666F72206E6F6E6578697374 PUSH1 0x44 DUP3 ADD MSTORE PUSH9 0x32B73A103A37B5B2B7 PUSH1 0xB9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x381 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x5EA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A2062616C616E636520717565727920666F7220746865207A65 PUSH1 0x44 DUP3 ADD MSTORE PUSH10 0x726F2061646472657373 PUSH1 0xB0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x381 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x289 SWAP1 PUSH2 0x1135 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND CALLER EQ ISZERO PUSH2 0x66E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x19 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x381 JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP1 DUP6 MSTORE SWAP1 DUP4 MSTORE SWAP3 DUP2 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND DUP7 ISZERO ISZERO SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP1 MLOAD SWAP1 DUP2 MSTORE SWAP2 SWAP3 SWAP2 PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0x6E4 CALLER DUP4 PUSH2 0x868 JUMP JUMPDEST PUSH2 0x700 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x381 SWAP1 PUSH2 0x1075 JUMP JUMPDEST PUSH2 0x70C DUP5 DUP5 DUP5 DUP5 PUSH2 0xAFF JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x60 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x791 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732314D657461646174613A2055524920717565727920666F72206E6F PUSH1 0x44 DUP3 ADD MSTORE PUSH15 0x3732BC34B9BA32B73A103A37B5B2B7 PUSH1 0x89 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x381 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7A8 PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP2 MSTORE SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x7C8 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x7F3 JUMP JUMPDEST DUP1 PUSH2 0x7D2 DUP5 PUSH2 0xB32 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x7E3 SWAP3 SWAP2 SWAP1 PUSH2 0xFA4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE DUP2 SWAP1 PUSH2 0x82F DUP3 PUSH2 0x508 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x8E1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A206F70657261746F7220717565727920666F72206E6F6E6578 PUSH1 0x44 DUP3 ADD MSTORE PUSH12 0x34B9BA32B73A103A37B5B2B7 PUSH1 0xA1 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x381 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8EC DUP4 PUSH2 0x508 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x927 JUMPI POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x91C DUP5 PUSH2 0x30C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST DUP1 PUSH2 0x957 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP9 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x972 DUP3 PUSH2 0x508 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x9DA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E73666572206F6620746F6B656E20746861742069 PUSH1 0x44 DUP3 ADD MSTORE PUSH9 0x39903737BA1037BBB7 PUSH1 0xB9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x381 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xA3C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E7366657220746F20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH4 0x72657373 PUSH1 0xE0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x381 JUMP JUMPDEST PUSH2 0xA47 PUSH1 0x0 DUP3 PUSH2 0x7FA JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0xA70 SWAP1 DUP5 SWAP1 PUSH2 0x10F2 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0xA9E SWAP1 DUP5 SWAP1 PUSH2 0x10C6 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE SWAP2 MLOAD DUP5 SWAP4 SWAP2 DUP8 AND SWAP2 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 LOG4 POP POP POP JUMP JUMPDEST PUSH2 0xB0A DUP5 DUP5 DUP5 PUSH2 0x95F JUMP JUMPDEST PUSH2 0xB16 DUP5 DUP5 DUP5 DUP5 PUSH2 0xC30 JUMP JUMPDEST PUSH2 0x70C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x381 SWAP1 PUSH2 0x1023 JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH2 0xB56 JUMPI POP POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x1 DUP2 MSTORE PUSH1 0x3 PUSH1 0xFC SHL PUSH1 0x20 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x0 JUMPDEST DUP2 ISZERO PUSH2 0xB80 JUMPI DUP1 PUSH2 0xB6A DUP2 PUSH2 0x1170 JUMP JUMPDEST SWAP2 POP PUSH2 0xB79 SWAP1 POP PUSH1 0xA DUP4 PUSH2 0x10DE JUMP JUMPDEST SWAP2 POP PUSH2 0xB5A JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xB9B JUMPI PUSH2 0xB9B PUSH2 0x11E1 JUMP 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 0xBC5 JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP JUMPDEST DUP5 ISZERO PUSH2 0x957 JUMPI PUSH2 0xBDA PUSH1 0x1 DUP4 PUSH2 0x10F2 JUMP JUMPDEST SWAP2 POP PUSH2 0xBE7 PUSH1 0xA DUP7 PUSH2 0x118B JUMP JUMPDEST PUSH2 0xBF2 SWAP1 PUSH1 0x30 PUSH2 0x10C6 JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0xC07 JUMPI PUSH2 0xC07 PUSH2 0x11CB JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH2 0xC29 PUSH1 0xA DUP7 PUSH2 0x10DE JUMP JUMPDEST SWAP5 POP PUSH2 0xBC9 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO PUSH2 0xD32 JUMPI PUSH1 0x40 MLOAD PUSH4 0xA85BD01 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0x150B7A02 SWAP1 PUSH2 0xC74 SWAP1 CALLER SWAP1 DUP10 SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH2 0xFD3 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xC8E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0xCBE JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0xCBB SWAP2 DUP2 ADD SWAP1 PUSH2 0xF42 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0xD18 JUMPI RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0xCEC 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 0xCF1 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP DUP1 MLOAD PUSH2 0xD10 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x381 SWAP1 PUSH2 0x1023 JUMP JUMPDEST DUP1 MLOAD DUP2 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND PUSH4 0xA85BD01 PUSH1 0xE1 SHL EQ SWAP1 POP PUSH2 0x957 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xD54 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD6B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x7F3 DUP3 PUSH2 0xD3D JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xD87 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xD90 DUP4 PUSH2 0xD3D JUMP JUMPDEST SWAP2 POP PUSH2 0xD9E PUSH1 0x20 DUP5 ADD PUSH2 0xD3D JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xDBC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xDC5 DUP5 PUSH2 0xD3D JUMP JUMPDEST SWAP3 POP PUSH2 0xDD3 PUSH1 0x20 DUP6 ADD PUSH2 0xD3D JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0xDF9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xE02 DUP6 PUSH2 0xD3D JUMP JUMPDEST SWAP4 POP PUSH2 0xE10 PUSH1 0x20 DUP7 ADD PUSH2 0xD3D JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0xE34 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP8 ADD SWAP2 POP DUP8 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xE48 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0xE5A JUMPI PUSH2 0xE5A PUSH2 0x11E1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP4 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH2 0xE82 JUMPI PUSH2 0xE82 PUSH2 0x11E1 JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP3 DUP2 MSTORE DUP11 PUSH1 0x20 DUP5 DUP8 ADD ADD GT ISZERO PUSH2 0xE9B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH1 0x0 PUSH1 0x20 DUP5 DUP4 ADD ADD MSTORE DUP1 SWAP6 POP POP POP POP POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xED2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xEDB DUP4 PUSH2 0xD3D JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0xEF0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xF0E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF17 DUP4 PUSH2 0xD3D JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xF37 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x7F3 DUP2 PUSH2 0x11F7 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xF54 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x7F3 DUP2 PUSH2 0x11F7 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xF71 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0xF90 DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x1109 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP4 MLOAD PUSH2 0xFB6 DUP2 DUP5 PUSH1 0x20 DUP9 ADD PUSH2 0x1109 JUMP JUMPDEST DUP4 MLOAD SWAP1 DUP4 ADD SWAP1 PUSH2 0xFCA DUP2 DUP4 PUSH1 0x20 DUP9 ADD PUSH2 0x1109 JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND DUP3 MSTORE DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x80 PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH2 0x1006 SWAP1 DUP4 ADD DUP5 PUSH2 0xF78 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x7F3 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0xF78 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x32 SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x40 DUP3 ADD MSTORE PUSH18 0x31B2B4BB32B91034B6B83632B6B2B73A32B9 PUSH1 0x71 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x31 SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E736665722063616C6C6572206973206E6F74206F PUSH1 0x40 DUP3 ADD MSTORE PUSH17 0x1DDB995C881B9BDC88185C1C1C9BDD9959 PUSH1 0x7A SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x10D9 JUMPI PUSH2 0x10D9 PUSH2 0x119F JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x10ED JUMPI PUSH2 0x10ED PUSH2 0x11B5 JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x1104 JUMPI PUSH2 0x1104 PUSH2 0x119F JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1124 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x110C JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x70C JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x1149 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x116A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x1184 JUMPI PUSH2 0x1184 PUSH2 0x119F JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x119A JUMPI PUSH2 0x119A PUSH2 0x11B5 JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x120D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xBA SWAP7 DUP8 DUP8 JUMPDEST LOG4 0x4C CALLDATASIZE LOG2 RETURN 0xBD 0xD0 0xBB CALLCODE DUP13 CALLCODE 0x27 KECCAK256 0xB9 COINBASE 0xD6 PUSH19 0x2C7615B208696E6AAB6A64736F6C6343000807 STOP CALLER ",
"sourceMap": "554:12701:0:-:0;;;1316:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1382:13;;;;:5;;:13;;;;;:::i;:::-;-1:-1:-1;1405:17:0;;;;:7;;:17;;;;;:::i;:::-;;1316:113;;554:12701;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;554:12701:0;;;-1:-1:-1;554:12701:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:885:9;68:5;121:3;114:4;106:6;102:17;98:27;88:55;;139:1;136;129:12;88:55;162:13;;-1:-1:-1;;;;;224:10:9;;;221:36;;;237:18;;:::i;:::-;312:2;306:9;280:2;366:13;;-1:-1:-1;;362:22:9;;;386:2;358:31;354:40;342:53;;;410:18;;;430:22;;;407:46;404:72;;;456:18;;:::i;:::-;496:10;492:2;485:22;531:2;523:6;516:18;553:4;543:14;;598:3;593:2;588;580:6;576:15;572:24;569:33;566:53;;;615:1;612;605:12;566:53;637:1;628:10;;647:133;661:2;658:1;655:9;647:133;;;749:14;;;745:23;;739:30;718:14;;;714:23;;707:63;672:10;;;;647:133;;;798:2;795:1;792:9;789:80;;;857:1;852:2;847;839:6;835:15;831:24;824:35;789:80;887:6;14:885;-1:-1:-1;;;;;;14:885:9:o;904:562::-;1003:6;1011;1064:2;1052:9;1043:7;1039:23;1035:32;1032:52;;;1080:1;1077;1070:12;1032:52;1107:16;;-1:-1:-1;;;;;1172:14:9;;;1169:34;;;1199:1;1196;1189:12;1169:34;1222:61;1275:7;1266:6;1255:9;1251:22;1222:61;:::i;:::-;1212:71;;1329:2;1318:9;1314:18;1308:25;1292:41;;1358:2;1348:8;1345:16;1342:36;;;1374:1;1371;1364:12;1342:36;;1397:63;1452:7;1441:8;1430:9;1426:24;1397:63;:::i;:::-;1387:73;;;904:562;;;;;:::o;1471:380::-;1550:1;1546:12;;;;1593;;;1614:61;;1668:4;1660:6;1656:17;1646:27;;1614:61;1721:2;1713:6;1710:14;1690:18;1687:38;1684:161;;;1767:10;1762:3;1758:20;1755:1;1748:31;1802:4;1799:1;1792:15;1830:4;1827:1;1820:15;1684:161;;1471:380;;;:::o;1856:127::-;1917:10;1912:3;1908:20;1905:1;1898:31;1948:4;1945:1;1938:15;1972:4;1969:1;1962:15;1856:127;554:12701:0;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_approve_741": {
"entryPoint": 2042,
"id": 741,
"parameterSlots": 2,
"returnSlots": 0
},
"@_baseURI_216": {
"entryPoint": null,
"id": 216,
"parameterSlots": 0,
"returnSlots": 1
},
"@_beforeTokenTransfer_814": {
"entryPoint": null,
"id": 814,
"parameterSlots": 3,
"returnSlots": 0
},
"@_checkOnERC721Received_803": {
"entryPoint": 3120,
"id": 803,
"parameterSlots": 4,
"returnSlots": 1
},
"@_exists_455": {
"entryPoint": null,
"id": 455,
"parameterSlots": 1,
"returnSlots": 1
},
"@_isApprovedOrOwner_496": {
"entryPoint": 2152,
"id": 496,
"parameterSlots": 2,
"returnSlots": 1
},
"@_msgSender_1285": {
"entryPoint": null,
"id": 1285,
"parameterSlots": 0,
"returnSlots": 1
},
"@_safeTransfer_437": {
"entryPoint": 2815,
"id": 437,
"parameterSlots": 4,
"returnSlots": 0
},
"@_transfer_717": {
"entryPoint": 2399,
"id": 717,
"parameterSlots": 3,
"returnSlots": 0
},
"@approve_259": {
"entryPoint": 934,
"id": 259,
"parameterSlots": 2,
"returnSlots": 0
},
"@balanceOf_117": {
"entryPoint": 1407,
"id": 117,
"parameterSlots": 1,
"returnSlots": 1
},
"@getApproved_280": {
"entryPoint": 780,
"id": 280,
"parameterSlots": 1,
"returnSlots": 1
},
"@isApprovedForAll_332": {
"entryPoint": null,
"id": 332,
"parameterSlots": 2,
"returnSlots": 1
},
"@isContract_996": {
"entryPoint": null,
"id": 996,
"parameterSlots": 1,
"returnSlots": 1
},
"@name_155": {
"entryPoint": 634,
"id": 155,
"parameterSlots": 0,
"returnSlots": 1
},
"@ownerOf_145": {
"entryPoint": 1288,
"id": 145,
"parameterSlots": 1,
"returnSlots": 1
},
"@safeTransferFrom_378": {
"entryPoint": 1261,
"id": 378,
"parameterSlots": 3,
"returnSlots": 0
},
"@safeTransferFrom_408": {
"entryPoint": 1754,
"id": 408,
"parameterSlots": 4,
"returnSlots": 0
},
"@setApprovalForAll_314": {
"entryPoint": 1557,
"id": 314,
"parameterSlots": 2,
"returnSlots": 0
},
"@supportsInterface_1521": {
"entryPoint": null,
"id": 1521,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_93": {
"entryPoint": 552,
"id": 93,
"parameterSlots": 1,
"returnSlots": 1
},
"@symbol_165": {
"entryPoint": 1542,
"id": 165,
"parameterSlots": 0,
"returnSlots": 1
},
"@toString_1380": {
"entryPoint": 2866,
"id": 1380,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenURI_207": {
"entryPoint": 1810,
"id": 207,
"parameterSlots": 1,
"returnSlots": 1
},
"@transferFrom_359": {
"entryPoint": 1212,
"id": 359,
"parameterSlots": 3,
"returnSlots": 0
},
"abi_decode_address": {
"entryPoint": 3389,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 3417,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 3444,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 3495,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr": {
"entryPoint": 3555,
"id": null,
"parameterSlots": 2,
"returnSlots": 4
},
"abi_decode_tuple_t_addresst_bool": {
"entryPoint": 3775,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 3835,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_bytes4": {
"entryPoint": 3877,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes4_fromMemory": {
"entryPoint": 3906,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 3935,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_bytes": {
"entryPoint": 3960,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"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": 4004,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": null,
"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": 4051,
"id": null,
"parameterSlots": 5,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 4112,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 4131,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 4213,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 4294,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_div_t_uint256": {
"entryPoint": 4318,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 4338,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"copy_memory_to_memory": {
"entryPoint": 4361,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 4405,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"increment_t_uint256": {
"entryPoint": 4464,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mod_t_uint256": {
"entryPoint": 4491,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 4511,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x12": {
"entryPoint": 4533,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 4555,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 4577,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"validator_revert_bytes4": {
"entryPoint": 4599,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:12310:9",
"statements": [
{
"nodeType": "YulBlock",
"src": "6:3:9",
"statements": []
},
{
"body": {
"nodeType": "YulBlock",
"src": "63:124:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "73:29:9",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "95:6:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "82:12:9"
},
"nodeType": "YulFunctionCall",
"src": "82:20:9"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "73:5:9"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "165:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "174:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "177:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "167:6:9"
},
"nodeType": "YulFunctionCall",
"src": "167:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "167:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "124:5:9"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "135:5:9"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "150:3:9",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "155:1:9",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "146:3:9"
},
"nodeType": "YulFunctionCall",
"src": "146:11:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "159:1:9",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "142:3:9"
},
"nodeType": "YulFunctionCall",
"src": "142:19:9"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "131:3:9"
},
"nodeType": "YulFunctionCall",
"src": "131:31:9"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "121:2:9"
},
"nodeType": "YulFunctionCall",
"src": "121:42:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "114:6:9"
},
"nodeType": "YulFunctionCall",
"src": "114:50:9"
},
"nodeType": "YulIf",
"src": "111:70:9"
}
]
},
"name": "abi_decode_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "42:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "53:5:9",
"type": ""
}
],
"src": "14:173:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "262:116:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "308:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:9"
},
"nodeType": "YulFunctionCall",
"src": "310:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "283:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "292:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "279:3:9"
},
"nodeType": "YulFunctionCall",
"src": "279:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "304:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "275:3:9"
},
"nodeType": "YulFunctionCall",
"src": "275:32:9"
},
"nodeType": "YulIf",
"src": "272:52:9"
},
{
"nodeType": "YulAssignment",
"src": "333:39:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "362:9:9"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "343:18:9"
},
"nodeType": "YulFunctionCall",
"src": "343:29:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "333:6:9"
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "228:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "239:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "251:6:9",
"type": ""
}
],
"src": "192:186:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "470:173:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "516:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "525:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "528:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "518:6:9"
},
"nodeType": "YulFunctionCall",
"src": "518:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "518:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "491:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "500:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "487:3:9"
},
"nodeType": "YulFunctionCall",
"src": "487:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "512:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "483:3:9"
},
"nodeType": "YulFunctionCall",
"src": "483:32:9"
},
"nodeType": "YulIf",
"src": "480:52:9"
},
{
"nodeType": "YulAssignment",
"src": "541:39:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "570:9:9"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "551:18:9"
},
"nodeType": "YulFunctionCall",
"src": "551:29:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "541:6:9"
}
]
},
{
"nodeType": "YulAssignment",
"src": "589:48:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "622:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "633:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "618:3:9"
},
"nodeType": "YulFunctionCall",
"src": "618:18:9"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "599:18:9"
},
"nodeType": "YulFunctionCall",
"src": "599:38:9"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "589:6:9"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "428:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "439:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "451:6:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "459:6:9",
"type": ""
}
],
"src": "383:260:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "752:224:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "798:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "807:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "810:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "800:6:9"
},
"nodeType": "YulFunctionCall",
"src": "800:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "800:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "773:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "782:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "769:3:9"
},
"nodeType": "YulFunctionCall",
"src": "769:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "794:2:9",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "765:3:9"
},
"nodeType": "YulFunctionCall",
"src": "765:32:9"
},
"nodeType": "YulIf",
"src": "762:52:9"
},
{
"nodeType": "YulAssignment",
"src": "823:39:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "852:9:9"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "833:18:9"
},
"nodeType": "YulFunctionCall",
"src": "833:29:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "823:6:9"
}
]
},
{
"nodeType": "YulAssignment",
"src": "871:48:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "904:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "915:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "900:3:9"
},
"nodeType": "YulFunctionCall",
"src": "900:18:9"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "881:18:9"
},
"nodeType": "YulFunctionCall",
"src": "881:38:9"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "871:6:9"
}
]
},
{
"nodeType": "YulAssignment",
"src": "928:42:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "955:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "966:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "951:3:9"
},
"nodeType": "YulFunctionCall",
"src": "951:18:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "938:12:9"
},
"nodeType": "YulFunctionCall",
"src": "938:32:9"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "928:6:9"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "702:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "713:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "725:6:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "733:6:9",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "741:6:9",
"type": ""
}
],
"src": "648:328:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1111:1008:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1158:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1167:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1170:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1160:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1160:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "1160:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1132:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1141:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1128:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1128:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1153:3:9",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1124:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1124:33:9"
},
"nodeType": "YulIf",
"src": "1121:53:9"
},
{
"nodeType": "YulAssignment",
"src": "1183:39:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1212:9:9"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "1193:18:9"
},
"nodeType": "YulFunctionCall",
"src": "1193:29:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1183:6:9"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1231:48:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1264:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1275:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1260:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1260:18:9"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "1241:18:9"
},
"nodeType": "YulFunctionCall",
"src": "1241:38:9"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1231:6:9"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1288:42:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1315:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1326:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1311:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1311:18:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1298:12:9"
},
"nodeType": "YulFunctionCall",
"src": "1298:32:9"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1288:6:9"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1339:46:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1370:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1381:2:9",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1366:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1366:18:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1353:12:9"
},
"nodeType": "YulFunctionCall",
"src": "1353:32:9"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1343:6:9",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1394:28:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1404:18:9",
"type": "",
"value": "0xffffffffffffffff"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "1398:2:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1449:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1458:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1461:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1451:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1451:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "1451:12:9"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1437:6:9"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1445:2:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1434:2:9"
},
"nodeType": "YulFunctionCall",
"src": "1434:14:9"
},
"nodeType": "YulIf",
"src": "1431:34:9"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1474:32:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1488:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1499:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1484:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1484:22:9"
},
"variables": [
{
"name": "_2",
"nodeType": "YulTypedName",
"src": "1478:2:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1554:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1563:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1566:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1556:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1556:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "1556:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "1533:2:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1537:4:9",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1529:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1529:13:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1544:7:9"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1525:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1525:27:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1518:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1518:35:9"
},
"nodeType": "YulIf",
"src": "1515:55:9"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1579:26:9",
"value": {
"arguments": [
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "1602:2:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1589:12:9"
},
"nodeType": "YulFunctionCall",
"src": "1589:16:9"
},
"variables": [
{
"name": "_3",
"nodeType": "YulTypedName",
"src": "1583:2:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1628:22:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1630:16:9"
},
"nodeType": "YulFunctionCall",
"src": "1630:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "1630:18:9"
}
]
},
"condition": {
"arguments": [
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "1620:2:9"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1624:2:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1617:2:9"
},
"nodeType": "YulFunctionCall",
"src": "1617:10:9"
},
"nodeType": "YulIf",
"src": "1614:36:9"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1659:17:9",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1673:2:9",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "1669:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1669:7:9"
},
"variables": [
{
"name": "_4",
"nodeType": "YulTypedName",
"src": "1663:2:9",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1685:23:9",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1705:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1699:5:9"
},
"nodeType": "YulFunctionCall",
"src": "1699:9:9"
},
"variables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1689:6:9",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1717:71:9",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1739:6:9"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "1763:2:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1767:4:9",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1759:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1759:13:9"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "1774:2:9"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1755:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1755:22:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1779:2:9",
"type": "",
"value": "63"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1751:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1751:31:9"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "1784:2:9"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1747:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1747:40:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1735:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1735:53:9"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "1721:10:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1847:22:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1849:16:9"
},
"nodeType": "YulFunctionCall",
"src": "1849:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "1849:18:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1806:10:9"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1818:2:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1803:2:9"
},
"nodeType": "YulFunctionCall",
"src": "1803:18:9"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1826:10:9"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1838:6:9"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1823:2:9"
},
"nodeType": "YulFunctionCall",
"src": "1823:22:9"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "1800:2:9"
},
"nodeType": "YulFunctionCall",
"src": "1800:46:9"
},
"nodeType": "YulIf",
"src": "1797:72:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1885:2:9",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1889:10:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1878:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1878:22:9"
},
"nodeType": "YulExpressionStatement",
"src": "1878:22:9"
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1916:6:9"
},
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "1924:2:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1909:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1909:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "1909:18:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1973:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1982:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1985:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1975:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1975:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "1975:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "1950:2:9"
},
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "1954:2:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1946:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1946:11:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1959:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1942:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1942:20:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1964:7:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1939:2:9"
},
"nodeType": "YulFunctionCall",
"src": "1939:33:9"
},
"nodeType": "YulIf",
"src": "1936:53:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2015:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2023:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2011:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2011:15:9"
},
{
"arguments": [
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "2032:2:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2036:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2028:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2028:11:9"
},
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "2041:2:9"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "1998:12:9"
},
"nodeType": "YulFunctionCall",
"src": "1998:46:9"
},
"nodeType": "YulExpressionStatement",
"src": "1998:46:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2068:6:9"
},
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "2076:2:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2064:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2064:15:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2081:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2060:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2060:24:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2086:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2053:6:9"
},
"nodeType": "YulFunctionCall",
"src": "2053:35:9"
},
"nodeType": "YulExpressionStatement",
"src": "2053:35:9"
},
{
"nodeType": "YulAssignment",
"src": "2097:16:9",
"value": {
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2107:6:9"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "2097:6:9"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1053:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1064:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1076:6:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1084:6:9",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1092:6:9",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "1100:6:9",
"type": ""
}
],
"src": "981:1138:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2208:263:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2254:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2263:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2266:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2256:6:9"
},
"nodeType": "YulFunctionCall",
"src": "2256:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "2256:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2229:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2238:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2225:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2225:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2250:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2221:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2221:32:9"
},
"nodeType": "YulIf",
"src": "2218:52:9"
},
{
"nodeType": "YulAssignment",
"src": "2279:39:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2308:9:9"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "2289:18:9"
},
"nodeType": "YulFunctionCall",
"src": "2289:29:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2279:6:9"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2327:45:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2357:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2368:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2353:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2353:18:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2340:12:9"
},
"nodeType": "YulFunctionCall",
"src": "2340:32:9"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2331:5:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2425:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2434:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2437:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2427:6:9"
},
"nodeType": "YulFunctionCall",
"src": "2427:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "2427:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2394:5:9"
},
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2415:5:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2408:6:9"
},
"nodeType": "YulFunctionCall",
"src": "2408:13:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2401:6:9"
},
"nodeType": "YulFunctionCall",
"src": "2401:21:9"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2391:2:9"
},
"nodeType": "YulFunctionCall",
"src": "2391:32:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2384:6:9"
},
"nodeType": "YulFunctionCall",
"src": "2384:40:9"
},
"nodeType": "YulIf",
"src": "2381:60:9"
},
{
"nodeType": "YulAssignment",
"src": "2450:15:9",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "2460:5:9"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2450:6:9"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2166:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2177:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2189:6:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2197:6:9",
"type": ""
}
],
"src": "2124:347:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2563:167:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2609:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2618:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2621:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2611:6:9"
},
"nodeType": "YulFunctionCall",
"src": "2611:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "2611:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2584:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2593:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2580:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2580:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2605:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2576:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2576:32:9"
},
"nodeType": "YulIf",
"src": "2573:52:9"
},
{
"nodeType": "YulAssignment",
"src": "2634:39:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2663:9:9"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "2644:18:9"
},
"nodeType": "YulFunctionCall",
"src": "2644:29:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2634:6:9"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2682:42:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2709:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2720:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2705:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2705:18:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2692:12:9"
},
"nodeType": "YulFunctionCall",
"src": "2692:32:9"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2682:6:9"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2521:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2532:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2544:6:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2552:6:9",
"type": ""
}
],
"src": "2476:254:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2804:176:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2850:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2859:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2862:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2852:6:9"
},
"nodeType": "YulFunctionCall",
"src": "2852:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "2852:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2825:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2834:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2821:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2821:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2846:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2817:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2817:32:9"
},
"nodeType": "YulIf",
"src": "2814:52:9"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2875:36:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2901:9:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2888:12:9"
},
"nodeType": "YulFunctionCall",
"src": "2888:23:9"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2879:5:9",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2944:5:9"
}
],
"functionName": {
"name": "validator_revert_bytes4",
"nodeType": "YulIdentifier",
"src": "2920:23:9"
},
"nodeType": "YulFunctionCall",
"src": "2920:30:9"
},
"nodeType": "YulExpressionStatement",
"src": "2920:30:9"
},
{
"nodeType": "YulAssignment",
"src": "2959:15:9",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "2969:5:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2959:6:9"
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2770:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2781:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2793:6:9",
"type": ""
}
],
"src": "2735:245:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3065:169:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3111:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3120:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3123:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3113:6:9"
},
"nodeType": "YulFunctionCall",
"src": "3113:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "3113:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3086:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3095:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3082:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3082:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3107:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3078:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3078:32:9"
},
"nodeType": "YulIf",
"src": "3075:52:9"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3136:29:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3155:9:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3149:5:9"
},
"nodeType": "YulFunctionCall",
"src": "3149:16:9"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3140:5:9",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3198:5:9"
}
],
"functionName": {
"name": "validator_revert_bytes4",
"nodeType": "YulIdentifier",
"src": "3174:23:9"
},
"nodeType": "YulFunctionCall",
"src": "3174:30:9"
},
"nodeType": "YulExpressionStatement",
"src": "3174:30:9"
},
{
"nodeType": "YulAssignment",
"src": "3213:15:9",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "3223:5:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3213:6:9"
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3031:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3042:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3054:6:9",
"type": ""
}
],
"src": "2985:249:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3309:110:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3355:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3364:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3367:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3357:6:9"
},
"nodeType": "YulFunctionCall",
"src": "3357:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "3357:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3330:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3339:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3326:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3326:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3351:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3322:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3322:32:9"
},
"nodeType": "YulIf",
"src": "3319:52:9"
},
{
"nodeType": "YulAssignment",
"src": "3380:33:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3403:9:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3390:12:9"
},
"nodeType": "YulFunctionCall",
"src": "3390:23:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3380:6:9"
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3275:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3286:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3298:6:9",
"type": ""
}
],
"src": "3239:180:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3473:208:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3483:26:9",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3503:5:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3497:5:9"
},
"nodeType": "YulFunctionCall",
"src": "3497:12:9"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3487:6:9",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3525:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3530:6:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3518:6:9"
},
"nodeType": "YulFunctionCall",
"src": "3518:19:9"
},
"nodeType": "YulExpressionStatement",
"src": "3518:19:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3572:5:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3579:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3568:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3568:16:9"
},
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3590:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3595:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3586:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3586:14:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3602:6:9"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "3546:21:9"
},
"nodeType": "YulFunctionCall",
"src": "3546:63:9"
},
"nodeType": "YulExpressionStatement",
"src": "3546:63:9"
},
{
"nodeType": "YulAssignment",
"src": "3618:57:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3633:3:9"
},
{
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3646:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3654:2:9",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3642:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3642:15:9"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3663:2:9",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "3659:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3659:7:9"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3638:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3638:29:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3629:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3629:39:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3670:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3625:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3625:50:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3618:3:9"
}
]
}
]
},
"name": "abi_encode_bytes",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3450:5:9",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3457:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3465:3:9",
"type": ""
}
],
"src": "3424:257:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3873:283:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3883:27:9",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3903:6:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3897:5:9"
},
"nodeType": "YulFunctionCall",
"src": "3897:13:9"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3887:6:9",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3945:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3953:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3941:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3941:17:9"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3960:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3965:6:9"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "3919:21:9"
},
"nodeType": "YulFunctionCall",
"src": "3919:53:9"
},
"nodeType": "YulExpressionStatement",
"src": "3919:53:9"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3981:29:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3998:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4003:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3994:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3994:16:9"
},
"variables": [
{
"name": "end_1",
"nodeType": "YulTypedName",
"src": "3985:5:9",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4019:29:9",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4041:6:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4035:5:9"
},
"nodeType": "YulFunctionCall",
"src": "4035:13:9"
},
"variables": [
{
"name": "length_1",
"nodeType": "YulTypedName",
"src": "4023:8:9",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4083:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4091:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4079:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4079:17:9"
},
{
"name": "end_1",
"nodeType": "YulIdentifier",
"src": "4098:5:9"
},
{
"name": "length_1",
"nodeType": "YulIdentifier",
"src": "4105:8:9"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "4057:21:9"
},
"nodeType": "YulFunctionCall",
"src": "4057:57:9"
},
"nodeType": "YulExpressionStatement",
"src": "4057:57:9"
},
{
"nodeType": "YulAssignment",
"src": "4123:27:9",
"value": {
"arguments": [
{
"name": "end_1",
"nodeType": "YulIdentifier",
"src": "4134:5:9"
},
{
"name": "length_1",
"nodeType": "YulIdentifier",
"src": "4141:8:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4130:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4130:20:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4123:3:9"
}
]
}
]
},
"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": "3841:3:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3846:6:9",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3854:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3865:3:9",
"type": ""
}
],
"src": "3686:470:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4262:102:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4272:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4284:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4295:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4280:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4280:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4272:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4314:9:9"
},
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4329:6:9"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4345:3:9",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4350:1:9",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "4341:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4341:11:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4354:1:9",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4337:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4337:19:9"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4325:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4325:32:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4307:6:9"
},
"nodeType": "YulFunctionCall",
"src": "4307:51:9"
},
"nodeType": "YulExpressionStatement",
"src": "4307:51:9"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4231:9:9",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4242:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4253:4:9",
"type": ""
}
],
"src": "4161:203:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4572:285:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4582:29:9",
"value": {
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4600:3:9",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4605:1:9",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "4596:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4596:11:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4609:1:9",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4592:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4592:19:9"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "4586:2:9",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4627:9:9"
},
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4642:6:9"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "4650:2:9"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4638:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4638:15:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4620:6:9"
},
"nodeType": "YulFunctionCall",
"src": "4620:34:9"
},
"nodeType": "YulExpressionStatement",
"src": "4620:34:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4674:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4685:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4670:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4670:18:9"
},
{
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4694:6:9"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "4702:2:9"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4690:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4690:15:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4663:6:9"
},
"nodeType": "YulFunctionCall",
"src": "4663:43:9"
},
"nodeType": "YulExpressionStatement",
"src": "4663:43:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4726:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4737:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4722:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4722:18:9"
},
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "4742:6:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4715:6:9"
},
"nodeType": "YulFunctionCall",
"src": "4715:34:9"
},
"nodeType": "YulExpressionStatement",
"src": "4715:34:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4769:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4780:2:9",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4765:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4765:18:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4785:3:9",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4758:6:9"
},
"nodeType": "YulFunctionCall",
"src": "4758:31:9"
},
"nodeType": "YulExpressionStatement",
"src": "4758:31:9"
},
{
"nodeType": "YulAssignment",
"src": "4798:53:9",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "4823:6:9"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4835:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4846:3:9",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4831:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4831:19:9"
}
],
"functionName": {
"name": "abi_encode_bytes",
"nodeType": "YulIdentifier",
"src": "4806:16:9"
},
"nodeType": "YulFunctionCall",
"src": "4806:45:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4798:4:9"
}
]
}
]
},
"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": "4517:9:9",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "4528:6:9",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "4536:6:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4544:6:9",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4552:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4563:4:9",
"type": ""
}
],
"src": "4369:488:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4957:92:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4967:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4979:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4990:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4975:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4975:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4967:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5009:9:9"
},
{
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5034:6:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5027:6:9"
},
"nodeType": "YulFunctionCall",
"src": "5027:14:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5020:6:9"
},
"nodeType": "YulFunctionCall",
"src": "5020:22:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5002:6:9"
},
"nodeType": "YulFunctionCall",
"src": "5002:41:9"
},
"nodeType": "YulExpressionStatement",
"src": "5002:41:9"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4926:9:9",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4937:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4948:4:9",
"type": ""
}
],
"src": "4862:187:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5175:98:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5192:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5203:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5185:6:9"
},
"nodeType": "YulFunctionCall",
"src": "5185:21:9"
},
"nodeType": "YulExpressionStatement",
"src": "5185:21:9"
},
{
"nodeType": "YulAssignment",
"src": "5215:52:9",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5240:6:9"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5252:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5263:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5248:3:9"
},
"nodeType": "YulFunctionCall",
"src": "5248:18:9"
}
],
"functionName": {
"name": "abi_encode_bytes",
"nodeType": "YulIdentifier",
"src": "5223:16:9"
},
"nodeType": "YulFunctionCall",
"src": "5223:44:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5215:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5144:9:9",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5155:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5166:4:9",
"type": ""
}
],
"src": "5054:219:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5452:240:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5469:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5480:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5462:6:9"
},
"nodeType": "YulFunctionCall",
"src": "5462:21:9"
},
"nodeType": "YulExpressionStatement",
"src": "5462:21:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5503:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5514:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5499:3:9"
},
"nodeType": "YulFunctionCall",
"src": "5499:18:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5519:2:9",
"type": "",
"value": "50"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5492:6:9"
},
"nodeType": "YulFunctionCall",
"src": "5492:30:9"
},
"nodeType": "YulExpressionStatement",
"src": "5492:30:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5542:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5553:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5538:3:9"
},
"nodeType": "YulFunctionCall",
"src": "5538:18:9"
},
{
"hexValue": "4552433732313a207472616e7366657220746f206e6f6e204552433732315265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "5558:34:9",
"type": "",
"value": "ERC721: transfer to non ERC721Re"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5531:6:9"
},
"nodeType": "YulFunctionCall",
"src": "5531:62:9"
},
"nodeType": "YulExpressionStatement",
"src": "5531:62:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5613:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5624:2:9",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5609:3:9"
},
"nodeType": "YulFunctionCall",
"src": "5609:18:9"
},
{
"hexValue": "63656976657220696d706c656d656e746572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "5629:20:9",
"type": "",
"value": "ceiver implementer"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5602:6:9"
},
"nodeType": "YulFunctionCall",
"src": "5602:48:9"
},
"nodeType": "YulExpressionStatement",
"src": "5602:48:9"
},
{
"nodeType": "YulAssignment",
"src": "5659:27:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5671:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5682:3:9",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5667:3:9"
},
"nodeType": "YulFunctionCall",
"src": "5667:19:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5659:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5429:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5443:4:9",
"type": ""
}
],
"src": "5278:414:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5871:226:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5888:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5899:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5881:6:9"
},
"nodeType": "YulFunctionCall",
"src": "5881:21:9"
},
"nodeType": "YulExpressionStatement",
"src": "5881:21:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5922:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5933:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5918:3:9"
},
"nodeType": "YulFunctionCall",
"src": "5918:18:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5938:2:9",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5911:6:9"
},
"nodeType": "YulFunctionCall",
"src": "5911:30:9"
},
"nodeType": "YulExpressionStatement",
"src": "5911:30:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5961:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5972:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5957:3:9"
},
"nodeType": "YulFunctionCall",
"src": "5957:18:9"
},
{
"hexValue": "4552433732313a207472616e7366657220746f20746865207a65726f20616464",
"kind": "string",
"nodeType": "YulLiteral",
"src": "5977:34:9",
"type": "",
"value": "ERC721: transfer to the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5950:6:9"
},
"nodeType": "YulFunctionCall",
"src": "5950:62:9"
},
"nodeType": "YulExpressionStatement",
"src": "5950:62:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6032:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6043:2:9",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6028:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6028:18:9"
},
{
"hexValue": "72657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "6048:6:9",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6021:6:9"
},
"nodeType": "YulFunctionCall",
"src": "6021:34:9"
},
"nodeType": "YulExpressionStatement",
"src": "6021:34:9"
},
{
"nodeType": "YulAssignment",
"src": "6064:27:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6076:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6087:3:9",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6072:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6072:19:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6064:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5848:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5862:4:9",
"type": ""
}
],
"src": "5697:400:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6276:175:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6293:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6304:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6286:6:9"
},
"nodeType": "YulFunctionCall",
"src": "6286:21:9"
},
"nodeType": "YulExpressionStatement",
"src": "6286:21:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6327:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6338:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6323:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6323:18:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6343:2:9",
"type": "",
"value": "25"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6316:6:9"
},
"nodeType": "YulFunctionCall",
"src": "6316:30:9"
},
"nodeType": "YulExpressionStatement",
"src": "6316:30:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6366:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6377:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6362:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6362:18:9"
},
{
"hexValue": "4552433732313a20617070726f766520746f2063616c6c6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "6382:27:9",
"type": "",
"value": "ERC721: approve to caller"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6355:6:9"
},
"nodeType": "YulFunctionCall",
"src": "6355:55:9"
},
"nodeType": "YulExpressionStatement",
"src": "6355:55:9"
},
{
"nodeType": "YulAssignment",
"src": "6419:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6431:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6442:2:9",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6427:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6427:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6419:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6253:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6267:4:9",
"type": ""
}
],
"src": "6102:349:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6630:234:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6647:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6658:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6640:6:9"
},
"nodeType": "YulFunctionCall",
"src": "6640:21:9"
},
"nodeType": "YulExpressionStatement",
"src": "6640:21:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6681:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6692:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6677:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6677:18:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6697:2:9",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6670:6:9"
},
"nodeType": "YulFunctionCall",
"src": "6670:30:9"
},
"nodeType": "YulExpressionStatement",
"src": "6670:30:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6720:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6731:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6716:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6716:18:9"
},
{
"hexValue": "4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578",
"kind": "string",
"nodeType": "YulLiteral",
"src": "6736:34:9",
"type": "",
"value": "ERC721: operator query for nonex"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6709:6:9"
},
"nodeType": "YulFunctionCall",
"src": "6709:62:9"
},
"nodeType": "YulExpressionStatement",
"src": "6709:62:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6791:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6802:2:9",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6787:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6787:18:9"
},
{
"hexValue": "697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "6807:14:9",
"type": "",
"value": "istent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6780:6:9"
},
"nodeType": "YulFunctionCall",
"src": "6780:42:9"
},
"nodeType": "YulExpressionStatement",
"src": "6780:42:9"
},
{
"nodeType": "YulAssignment",
"src": "6831:27:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6843:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6854:3:9",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6839:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6839:19:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6831:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6607:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6621:4:9",
"type": ""
}
],
"src": "6456:408:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7043:246:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7060:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7071:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7053:6:9"
},
"nodeType": "YulFunctionCall",
"src": "7053:21:9"
},
"nodeType": "YulExpressionStatement",
"src": "7053:21:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7094:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7105:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7090:3:9"
},
"nodeType": "YulFunctionCall",
"src": "7090:18:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7110:2:9",
"type": "",
"value": "56"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7083:6:9"
},
"nodeType": "YulFunctionCall",
"src": "7083:30:9"
},
"nodeType": "YulExpressionStatement",
"src": "7083:30:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7133:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7144:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7129:3:9"
},
"nodeType": "YulFunctionCall",
"src": "7129:18:9"
},
{
"hexValue": "4552433732313a20617070726f76652063616c6c6572206973206e6f74206f77",
"kind": "string",
"nodeType": "YulLiteral",
"src": "7149:34:9",
"type": "",
"value": "ERC721: approve caller is not ow"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7122:6:9"
},
"nodeType": "YulFunctionCall",
"src": "7122:62:9"
},
"nodeType": "YulExpressionStatement",
"src": "7122:62:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7204:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7215:2:9",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7200:3:9"
},
"nodeType": "YulFunctionCall",
"src": "7200:18:9"
},
{
"hexValue": "6e6572206e6f7220617070726f76656420666f7220616c6c",
"kind": "string",
"nodeType": "YulLiteral",
"src": "7220:26:9",
"type": "",
"value": "ner nor approved for all"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7193:6:9"
},
"nodeType": "YulFunctionCall",
"src": "7193:54:9"
},
"nodeType": "YulExpressionStatement",
"src": "7193:54:9"
},
{
"nodeType": "YulAssignment",
"src": "7256:27:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7268:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7279:3:9",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7264:3:9"
},
"nodeType": "YulFunctionCall",
"src": "7264:19:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7256:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7020:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7034:4:9",
"type": ""
}
],
"src": "6869:420:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7468:232:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7485:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7496:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7478:6:9"
},
"nodeType": "YulFunctionCall",
"src": "7478:21:9"
},
"nodeType": "YulExpressionStatement",
"src": "7478:21:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7519:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7530:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7515:3:9"
},
"nodeType": "YulFunctionCall",
"src": "7515:18:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7535:2:9",
"type": "",
"value": "42"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7508:6:9"
},
"nodeType": "YulFunctionCall",
"src": "7508:30:9"
},
"nodeType": "YulExpressionStatement",
"src": "7508:30:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7558:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7569:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7554:3:9"
},
"nodeType": "YulFunctionCall",
"src": "7554:18:9"
},
{
"hexValue": "4552433732313a2062616c616e636520717565727920666f7220746865207a65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "7574:34:9",
"type": "",
"value": "ERC721: balance query for the ze"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7547:6:9"
},
"nodeType": "YulFunctionCall",
"src": "7547:62:9"
},
"nodeType": "YulExpressionStatement",
"src": "7547:62:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7629:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7640:2:9",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7625:3:9"
},
"nodeType": "YulFunctionCall",
"src": "7625:18:9"
},
{
"hexValue": "726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "7645:12:9",
"type": "",
"value": "ro address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7618:6:9"
},
"nodeType": "YulFunctionCall",
"src": "7618:40:9"
},
"nodeType": "YulExpressionStatement",
"src": "7618:40:9"
},
{
"nodeType": "YulAssignment",
"src": "7667:27:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7679:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7690:3:9",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7675:3:9"
},
"nodeType": "YulFunctionCall",
"src": "7675:19:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7667:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7445:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7459:4:9",
"type": ""
}
],
"src": "7294:406:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7879:231:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7896:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7907:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7889:6:9"
},
"nodeType": "YulFunctionCall",
"src": "7889:21:9"
},
"nodeType": "YulExpressionStatement",
"src": "7889:21:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7930:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7941:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7926:3:9"
},
"nodeType": "YulFunctionCall",
"src": "7926:18:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7946:2:9",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7919:6:9"
},
"nodeType": "YulFunctionCall",
"src": "7919:30:9"
},
"nodeType": "YulExpressionStatement",
"src": "7919:30:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7969:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7980:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7965:3:9"
},
"nodeType": "YulFunctionCall",
"src": "7965:18:9"
},
{
"hexValue": "4552433732313a206f776e657220717565727920666f72206e6f6e6578697374",
"kind": "string",
"nodeType": "YulLiteral",
"src": "7985:34:9",
"type": "",
"value": "ERC721: owner query for nonexist"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7958:6:9"
},
"nodeType": "YulFunctionCall",
"src": "7958:62:9"
},
"nodeType": "YulExpressionStatement",
"src": "7958:62:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8040:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8051:2:9",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8036:3:9"
},
"nodeType": "YulFunctionCall",
"src": "8036:18:9"
},
{
"hexValue": "656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "8056:11:9",
"type": "",
"value": "ent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8029:6:9"
},
"nodeType": "YulFunctionCall",
"src": "8029:39:9"
},
"nodeType": "YulExpressionStatement",
"src": "8029:39:9"
},
{
"nodeType": "YulAssignment",
"src": "8077:27:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8089:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8100:3:9",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8085:3:9"
},
"nodeType": "YulFunctionCall",
"src": "8085:19:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8077:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7856:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7870:4:9",
"type": ""
}
],
"src": "7705:405:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8289:234:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8306:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8317:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8299:6:9"
},
"nodeType": "YulFunctionCall",
"src": "8299:21:9"
},
"nodeType": "YulExpressionStatement",
"src": "8299:21:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8340:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8351:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8336:3:9"
},
"nodeType": "YulFunctionCall",
"src": "8336:18:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8356:2:9",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8329:6:9"
},
"nodeType": "YulFunctionCall",
"src": "8329:30:9"
},
"nodeType": "YulExpressionStatement",
"src": "8329:30:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8379:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8390:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8375:3:9"
},
"nodeType": "YulFunctionCall",
"src": "8375:18:9"
},
{
"hexValue": "4552433732313a20617070726f76656420717565727920666f72206e6f6e6578",
"kind": "string",
"nodeType": "YulLiteral",
"src": "8395:34:9",
"type": "",
"value": "ERC721: approved query for nonex"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8368:6:9"
},
"nodeType": "YulFunctionCall",
"src": "8368:62:9"
},
"nodeType": "YulExpressionStatement",
"src": "8368:62:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8450:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8461:2:9",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8446:3:9"
},
"nodeType": "YulFunctionCall",
"src": "8446:18:9"
},
{
"hexValue": "697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "8466:14:9",
"type": "",
"value": "istent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8439:6:9"
},
"nodeType": "YulFunctionCall",
"src": "8439:42:9"
},
"nodeType": "YulExpressionStatement",
"src": "8439:42:9"
},
{
"nodeType": "YulAssignment",
"src": "8490:27:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8502:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8513:3:9",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8498:3:9"
},
"nodeType": "YulFunctionCall",
"src": "8498:19:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8490:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8266:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8280:4:9",
"type": ""
}
],
"src": "8115:408:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8702:231:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8719:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8730:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8712:6:9"
},
"nodeType": "YulFunctionCall",
"src": "8712:21:9"
},
"nodeType": "YulExpressionStatement",
"src": "8712:21:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8753:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8764:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8749:3:9"
},
"nodeType": "YulFunctionCall",
"src": "8749:18:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8769:2:9",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8742:6:9"
},
"nodeType": "YulFunctionCall",
"src": "8742:30:9"
},
"nodeType": "YulExpressionStatement",
"src": "8742:30:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8792:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8803:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8788:3:9"
},
"nodeType": "YulFunctionCall",
"src": "8788:18:9"
},
{
"hexValue": "4552433732313a207472616e73666572206f6620746f6b656e20746861742069",
"kind": "string",
"nodeType": "YulLiteral",
"src": "8808:34:9",
"type": "",
"value": "ERC721: transfer of token that i"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8781:6:9"
},
"nodeType": "YulFunctionCall",
"src": "8781:62:9"
},
"nodeType": "YulExpressionStatement",
"src": "8781:62:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8863:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8874:2:9",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8859:3:9"
},
"nodeType": "YulFunctionCall",
"src": "8859:18:9"
},
{
"hexValue": "73206e6f74206f776e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "8879:11:9",
"type": "",
"value": "s not own"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8852:6:9"
},
"nodeType": "YulFunctionCall",
"src": "8852:39:9"
},
"nodeType": "YulExpressionStatement",
"src": "8852:39:9"
},
{
"nodeType": "YulAssignment",
"src": "8900:27:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8912:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8923:3:9",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8908:3:9"
},
"nodeType": "YulFunctionCall",
"src": "8908:19:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8900:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8679:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8693:4:9",
"type": ""
}
],
"src": "8528:405:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9112:237:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9129:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9140:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9122:6:9"
},
"nodeType": "YulFunctionCall",
"src": "9122:21:9"
},
"nodeType": "YulExpressionStatement",
"src": "9122:21:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9163:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9174:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9159:3:9"
},
"nodeType": "YulFunctionCall",
"src": "9159:18:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9179:2:9",
"type": "",
"value": "47"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9152:6:9"
},
"nodeType": "YulFunctionCall",
"src": "9152:30:9"
},
"nodeType": "YulExpressionStatement",
"src": "9152:30:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9202:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9213:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9198:3:9"
},
"nodeType": "YulFunctionCall",
"src": "9198:18:9"
},
{
"hexValue": "4552433732314d657461646174613a2055524920717565727920666f72206e6f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9218:34:9",
"type": "",
"value": "ERC721Metadata: URI query for no"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9191:6:9"
},
"nodeType": "YulFunctionCall",
"src": "9191:62:9"
},
"nodeType": "YulExpressionStatement",
"src": "9191:62:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9273:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9284:2:9",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9269:3:9"
},
"nodeType": "YulFunctionCall",
"src": "9269:18:9"
},
{
"hexValue": "6e6578697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9289:17:9",
"type": "",
"value": "nexistent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9262:6:9"
},
"nodeType": "YulFunctionCall",
"src": "9262:45:9"
},
"nodeType": "YulExpressionStatement",
"src": "9262:45:9"
},
{
"nodeType": "YulAssignment",
"src": "9316:27:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9328:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9339:3:9",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9324:3:9"
},
"nodeType": "YulFunctionCall",
"src": "9324:19:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9316:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9089:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9103:4:9",
"type": ""
}
],
"src": "8938:411:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9528:223:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9545:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9556:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9538:6:9"
},
"nodeType": "YulFunctionCall",
"src": "9538:21:9"
},
"nodeType": "YulExpressionStatement",
"src": "9538:21:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9579:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9590:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9575:3:9"
},
"nodeType": "YulFunctionCall",
"src": "9575:18:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9595:2:9",
"type": "",
"value": "33"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9568:6:9"
},
"nodeType": "YulFunctionCall",
"src": "9568:30:9"
},
"nodeType": "YulExpressionStatement",
"src": "9568:30:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9618:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9629:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9614:3:9"
},
"nodeType": "YulFunctionCall",
"src": "9614:18:9"
},
{
"hexValue": "4552433732313a20617070726f76616c20746f2063757272656e74206f776e65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9634:34:9",
"type": "",
"value": "ERC721: approval to current owne"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9607:6:9"
},
"nodeType": "YulFunctionCall",
"src": "9607:62:9"
},
"nodeType": "YulExpressionStatement",
"src": "9607:62:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9689:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9700:2:9",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9685:3:9"
},
"nodeType": "YulFunctionCall",
"src": "9685:18:9"
},
{
"hexValue": "72",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9705:3:9",
"type": "",
"value": "r"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9678:6:9"
},
"nodeType": "YulFunctionCall",
"src": "9678:31:9"
},
"nodeType": "YulExpressionStatement",
"src": "9678:31:9"
},
{
"nodeType": "YulAssignment",
"src": "9718:27:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9730:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9741:3:9",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9726:3:9"
},
"nodeType": "YulFunctionCall",
"src": "9726:19:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9718:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9505:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9519:4:9",
"type": ""
}
],
"src": "9354:397:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9930:239:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9947:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9958:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9940:6:9"
},
"nodeType": "YulFunctionCall",
"src": "9940:21:9"
},
"nodeType": "YulExpressionStatement",
"src": "9940:21:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9981:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9992:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9977:3:9"
},
"nodeType": "YulFunctionCall",
"src": "9977:18:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9997:2:9",
"type": "",
"value": "49"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9970:6:9"
},
"nodeType": "YulFunctionCall",
"src": "9970:30:9"
},
"nodeType": "YulExpressionStatement",
"src": "9970:30:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10020:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10031:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10016:3:9"
},
"nodeType": "YulFunctionCall",
"src": "10016:18:9"
},
{
"hexValue": "4552433732313a207472616e736665722063616c6c6572206973206e6f74206f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "10036:34:9",
"type": "",
"value": "ERC721: transfer caller is not o"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10009:6:9"
},
"nodeType": "YulFunctionCall",
"src": "10009:62:9"
},
"nodeType": "YulExpressionStatement",
"src": "10009:62:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10091:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10102:2:9",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10087:3:9"
},
"nodeType": "YulFunctionCall",
"src": "10087:18:9"
},
{
"hexValue": "776e6572206e6f7220617070726f766564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "10107:19:9",
"type": "",
"value": "wner nor approved"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10080:6:9"
},
"nodeType": "YulFunctionCall",
"src": "10080:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "10080:47:9"
},
{
"nodeType": "YulAssignment",
"src": "10136:27:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10148:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10159:3:9",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10144:3:9"
},
"nodeType": "YulFunctionCall",
"src": "10144:19:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10136:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9907:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9921:4:9",
"type": ""
}
],
"src": "9756:413:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10275:76:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10285:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10297:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10308:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10293:3:9"
},
"nodeType": "YulFunctionCall",
"src": "10293:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10285:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10327:9:9"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "10338:6:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10320:6:9"
},
"nodeType": "YulFunctionCall",
"src": "10320:25:9"
},
"nodeType": "YulExpressionStatement",
"src": "10320:25:9"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10244:9:9",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "10255:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10266:4:9",
"type": ""
}
],
"src": "10174:177:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10404:80:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "10431:22:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "10433:16:9"
},
"nodeType": "YulFunctionCall",
"src": "10433:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "10433:18:9"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "10420:1:9"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "10427:1:9"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "10423:3:9"
},
"nodeType": "YulFunctionCall",
"src": "10423:6:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "10417:2:9"
},
"nodeType": "YulFunctionCall",
"src": "10417:13:9"
},
"nodeType": "YulIf",
"src": "10414:39:9"
},
{
"nodeType": "YulAssignment",
"src": "10462:16:9",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "10473:1:9"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "10476:1:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10469:3:9"
},
"nodeType": "YulFunctionCall",
"src": "10469:9:9"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "10462:3:9"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "10387:1:9",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "10390:1:9",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "10396:3:9",
"type": ""
}
],
"src": "10356:128:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10535:74:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "10558:22:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "10560:16:9"
},
"nodeType": "YulFunctionCall",
"src": "10560:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "10560:18:9"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "10555:1:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "10548:6:9"
},
"nodeType": "YulFunctionCall",
"src": "10548:9:9"
},
"nodeType": "YulIf",
"src": "10545:35:9"
},
{
"nodeType": "YulAssignment",
"src": "10589:14:9",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "10598:1:9"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "10601:1:9"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "10594:3:9"
},
"nodeType": "YulFunctionCall",
"src": "10594:9:9"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "10589:1:9"
}
]
}
]
},
"name": "checked_div_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "10520:1:9",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "10523:1:9",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "10529:1:9",
"type": ""
}
],
"src": "10489:120:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10663:76:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "10685:22:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "10687:16:9"
},
"nodeType": "YulFunctionCall",
"src": "10687:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "10687:18:9"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "10679:1:9"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "10682:1:9"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "10676:2:9"
},
"nodeType": "YulFunctionCall",
"src": "10676:8:9"
},
"nodeType": "YulIf",
"src": "10673:34:9"
},
{
"nodeType": "YulAssignment",
"src": "10716:17:9",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "10728:1:9"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "10731:1:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10724:3:9"
},
"nodeType": "YulFunctionCall",
"src": "10724:9:9"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "10716:4:9"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "10645:1:9",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "10648:1:9",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "10654:4:9",
"type": ""
}
],
"src": "10614:125:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10797:205:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10807:10:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "10816:1:9",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "10811:1:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10876:63:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "10901:3:9"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10906:1:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10897:3:9"
},
"nodeType": "YulFunctionCall",
"src": "10897:11:9"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "10920:3:9"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10925:1:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10916:3:9"
},
"nodeType": "YulFunctionCall",
"src": "10916:11:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "10910:5:9"
},
"nodeType": "YulFunctionCall",
"src": "10910:18:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10890:6:9"
},
"nodeType": "YulFunctionCall",
"src": "10890:39:9"
},
"nodeType": "YulExpressionStatement",
"src": "10890:39:9"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10837:1:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10840:6:9"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "10834:2:9"
},
"nodeType": "YulFunctionCall",
"src": "10834:13:9"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "10848:19:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10850:15:9",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10859:1:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10862:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10855:3:9"
},
"nodeType": "YulFunctionCall",
"src": "10855:10:9"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10850:1:9"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "10830:3:9",
"statements": []
},
"src": "10826:113:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10965:31:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "10978:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10983:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10974:3:9"
},
"nodeType": "YulFunctionCall",
"src": "10974:16:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10992:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10967:6:9"
},
"nodeType": "YulFunctionCall",
"src": "10967:27:9"
},
"nodeType": "YulExpressionStatement",
"src": "10967:27:9"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10954:1:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10957:6:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "10951:2:9"
},
"nodeType": "YulFunctionCall",
"src": "10951:13:9"
},
"nodeType": "YulIf",
"src": "10948:48:9"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "10775:3:9",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "10780:3:9",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "10785:6:9",
"type": ""
}
],
"src": "10744:258:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11062:325:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11072:22:9",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11086:1:9",
"type": "",
"value": "1"
},
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "11089:4:9"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "11082:3:9"
},
"nodeType": "YulFunctionCall",
"src": "11082:12:9"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11072:6:9"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "11103:38:9",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "11133:4:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11139:1:9",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "11129:3:9"
},
"nodeType": "YulFunctionCall",
"src": "11129:12:9"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "11107:18:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "11180:31:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11182:27:9",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11196:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11204:4:9",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "11192:3:9"
},
"nodeType": "YulFunctionCall",
"src": "11192:17:9"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11182:6:9"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "11160:18:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "11153:6:9"
},
"nodeType": "YulFunctionCall",
"src": "11153:26:9"
},
"nodeType": "YulIf",
"src": "11150:61:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11270:111:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11291:1:9",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11298:3:9",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11303:10:9",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "11294:3:9"
},
"nodeType": "YulFunctionCall",
"src": "11294:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11284:6:9"
},
"nodeType": "YulFunctionCall",
"src": "11284:31:9"
},
"nodeType": "YulExpressionStatement",
"src": "11284:31:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11335:1:9",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11338:4:9",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11328:6:9"
},
"nodeType": "YulFunctionCall",
"src": "11328:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "11328:15:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11363:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11366:4:9",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "11356:6:9"
},
"nodeType": "YulFunctionCall",
"src": "11356:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "11356:15:9"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "11226:18:9"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11249:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11257:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "11246:2:9"
},
"nodeType": "YulFunctionCall",
"src": "11246:14:9"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "11223:2:9"
},
"nodeType": "YulFunctionCall",
"src": "11223:38:9"
},
"nodeType": "YulIf",
"src": "11220:161:9"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "11042:4:9",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "11051:6:9",
"type": ""
}
],
"src": "11007:380:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11439:88:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "11470:22:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "11472:16:9"
},
"nodeType": "YulFunctionCall",
"src": "11472:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "11472:18:9"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11455:5:9"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11466:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "11462:3:9"
},
"nodeType": "YulFunctionCall",
"src": "11462:6:9"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "11452:2:9"
},
"nodeType": "YulFunctionCall",
"src": "11452:17:9"
},
"nodeType": "YulIf",
"src": "11449:43:9"
},
{
"nodeType": "YulAssignment",
"src": "11501:20:9",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11512:5:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11519:1:9",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11508:3:9"
},
"nodeType": "YulFunctionCall",
"src": "11508:13:9"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "11501:3:9"
}
]
}
]
},
"name": "increment_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "11421:5:9",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "11431:3:9",
"type": ""
}
],
"src": "11392:135:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11570:74:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "11593:22:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "11595:16:9"
},
"nodeType": "YulFunctionCall",
"src": "11595:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "11595:18:9"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "11590:1:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "11583:6:9"
},
"nodeType": "YulFunctionCall",
"src": "11583:9:9"
},
"nodeType": "YulIf",
"src": "11580:35:9"
},
{
"nodeType": "YulAssignment",
"src": "11624:14:9",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "11633:1:9"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "11636:1:9"
}
],
"functionName": {
"name": "mod",
"nodeType": "YulIdentifier",
"src": "11629:3:9"
},
"nodeType": "YulFunctionCall",
"src": "11629:9:9"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "11624:1:9"
}
]
}
]
},
"name": "mod_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "11555:1:9",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "11558:1:9",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "11564:1:9",
"type": ""
}
],
"src": "11532:112:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11681:95:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11698:1:9",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11705:3:9",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11710:10:9",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "11701:3:9"
},
"nodeType": "YulFunctionCall",
"src": "11701:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11691:6:9"
},
"nodeType": "YulFunctionCall",
"src": "11691:31:9"
},
"nodeType": "YulExpressionStatement",
"src": "11691:31:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11738:1:9",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11741:4:9",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11731:6:9"
},
"nodeType": "YulFunctionCall",
"src": "11731:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "11731:15:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11762:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11765:4:9",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "11755:6:9"
},
"nodeType": "YulFunctionCall",
"src": "11755:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "11755:15:9"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "11649:127:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11813:95:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11830:1:9",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11837:3:9",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11842:10:9",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "11833:3:9"
},
"nodeType": "YulFunctionCall",
"src": "11833:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11823:6:9"
},
"nodeType": "YulFunctionCall",
"src": "11823:31:9"
},
"nodeType": "YulExpressionStatement",
"src": "11823:31:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11870:1:9",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11873:4:9",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11863:6:9"
},
"nodeType": "YulFunctionCall",
"src": "11863:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "11863:15:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11894:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11897:4:9",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "11887:6:9"
},
"nodeType": "YulFunctionCall",
"src": "11887:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "11887:15:9"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "11781:127:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11945:95:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11962:1:9",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11969:3:9",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11974:10:9",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "11965:3:9"
},
"nodeType": "YulFunctionCall",
"src": "11965:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11955:6:9"
},
"nodeType": "YulFunctionCall",
"src": "11955:31:9"
},
"nodeType": "YulExpressionStatement",
"src": "11955:31:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12002:1:9",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12005:4:9",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11995:6:9"
},
"nodeType": "YulFunctionCall",
"src": "11995:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "11995:15:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12026:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12029:4:9",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "12019:6:9"
},
"nodeType": "YulFunctionCall",
"src": "12019:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "12019:15:9"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "11913:127:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12077:95:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12094:1:9",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12101:3:9",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12106:10:9",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "12097:3:9"
},
"nodeType": "YulFunctionCall",
"src": "12097:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12087:6:9"
},
"nodeType": "YulFunctionCall",
"src": "12087:31:9"
},
"nodeType": "YulExpressionStatement",
"src": "12087:31:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12134:1:9",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12137:4:9",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12127:6:9"
},
"nodeType": "YulFunctionCall",
"src": "12127:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "12127:15:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12158:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12161:4:9",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "12151:6:9"
},
"nodeType": "YulFunctionCall",
"src": "12151:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "12151:15:9"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "12045:127:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12221:87:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "12286:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12295:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12298:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "12288:6:9"
},
"nodeType": "YulFunctionCall",
"src": "12288:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "12288:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "12244:5:9"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "12255:5:9"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12266:3:9",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12271:10:9",
"type": "",
"value": "0xffffffff"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "12262:3:9"
},
"nodeType": "YulFunctionCall",
"src": "12262:20:9"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "12251:3:9"
},
"nodeType": "YulFunctionCall",
"src": "12251:32:9"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "12241:2:9"
},
"nodeType": "YulFunctionCall",
"src": "12241:43:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "12234:6:9"
},
"nodeType": "YulFunctionCall",
"src": "12234:51:9"
},
"nodeType": "YulIf",
"src": "12231:71:9"
}
]
},
"name": "validator_revert_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "12210:5:9",
"type": ""
}
],
"src": "12177:131:9"
}
]
},
"contents": "{\n { }\n function abi_decode_address(offset) -> value\n {\n value := calldataload(offset)\n if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n }\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n }\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n value1 := abi_decode_address(add(headStart, 32))\n }\n function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n {\n if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n value1 := abi_decode_address(add(headStart, 32))\n value2 := calldataload(add(headStart, 64))\n }\n function abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3\n {\n if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n value1 := abi_decode_address(add(headStart, 32))\n value2 := calldataload(add(headStart, 64))\n let offset := calldataload(add(headStart, 96))\n let _1 := 0xffffffffffffffff\n if gt(offset, _1) { revert(0, 0) }\n let _2 := add(headStart, offset)\n if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n let _3 := calldataload(_2)\n if gt(_3, _1) { panic_error_0x41() }\n let _4 := not(31)\n let memPtr := mload(64)\n let newFreePtr := add(memPtr, and(add(and(add(_3, 0x1f), _4), 63), _4))\n if or(gt(newFreePtr, _1), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n mstore(memPtr, _3)\n if gt(add(add(_2, _3), 32), dataEnd) { revert(0, 0) }\n calldatacopy(add(memPtr, 32), add(_2, 32), _3)\n mstore(add(add(memPtr, _3), 32), 0)\n value3 := memPtr\n }\n function abi_decode_tuple_t_addresst_bool(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n let value := calldataload(add(headStart, 32))\n if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n value1 := value\n }\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n value1 := calldataload(add(headStart, 32))\n }\n function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n let value := calldataload(headStart)\n validator_revert_bytes4(value)\n value0 := value\n }\n function abi_decode_tuple_t_bytes4_fromMemory(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n let value := mload(headStart)\n validator_revert_bytes4(value)\n value0 := value\n }\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n value0 := calldataload(headStart)\n }\n function abi_encode_bytes(value, pos) -> end\n {\n let length := mload(value)\n mstore(pos, length)\n copy_memory_to_memory(add(value, 0x20), add(pos, 0x20), length)\n end := add(add(pos, and(add(length, 31), not(31))), 0x20)\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 let length := mload(value0)\n copy_memory_to_memory(add(value0, 0x20), pos, length)\n let end_1 := add(pos, length)\n let length_1 := mload(value1)\n copy_memory_to_memory(add(value1, 0x20), end_1, length_1)\n end := add(end_1, length_1)\n }\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, and(value0, sub(shl(160, 1), 1)))\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 {\n let _1 := sub(shl(160, 1), 1)\n mstore(headStart, and(value0, _1))\n mstore(add(headStart, 32), and(value1, _1))\n mstore(add(headStart, 64), value2)\n mstore(add(headStart, 96), 128)\n tail := abi_encode_bytes(value3, add(headStart, 128))\n }\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, iszero(iszero(value0)))\n }\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n {\n mstore(headStart, 32)\n tail := abi_encode_bytes(value0, add(headStart, 32))\n }\n function abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 50)\n mstore(add(headStart, 64), \"ERC721: transfer to non ERC721Re\")\n mstore(add(headStart, 96), \"ceiver implementer\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 36)\n mstore(add(headStart, 64), \"ERC721: transfer to the zero add\")\n mstore(add(headStart, 96), \"ress\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 25)\n mstore(add(headStart, 64), \"ERC721: approve to caller\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 44)\n mstore(add(headStart, 64), \"ERC721: operator query for nonex\")\n mstore(add(headStart, 96), \"istent token\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 56)\n mstore(add(headStart, 64), \"ERC721: approve caller is not ow\")\n mstore(add(headStart, 96), \"ner nor approved for all\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 42)\n mstore(add(headStart, 64), \"ERC721: balance query for the ze\")\n mstore(add(headStart, 96), \"ro address\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 41)\n mstore(add(headStart, 64), \"ERC721: owner query for nonexist\")\n mstore(add(headStart, 96), \"ent token\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 44)\n mstore(add(headStart, 64), \"ERC721: approved query for nonex\")\n mstore(add(headStart, 96), \"istent token\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 41)\n mstore(add(headStart, 64), \"ERC721: transfer of token that i\")\n mstore(add(headStart, 96), \"s not own\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 47)\n mstore(add(headStart, 64), \"ERC721Metadata: URI query for no\")\n mstore(add(headStart, 96), \"nexistent token\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 33)\n mstore(add(headStart, 64), \"ERC721: approval to current owne\")\n mstore(add(headStart, 96), \"r\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 49)\n mstore(add(headStart, 64), \"ERC721: transfer caller is not o\")\n mstore(add(headStart, 96), \"wner nor approved\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, value0)\n }\n function checked_add_t_uint256(x, y) -> sum\n {\n if gt(x, not(y)) { panic_error_0x11() }\n sum := add(x, y)\n }\n function checked_div_t_uint256(x, y) -> r\n {\n if iszero(y) { panic_error_0x12() }\n r := div(x, y)\n }\n function checked_sub_t_uint256(x, y) -> diff\n {\n if lt(x, y) { panic_error_0x11() }\n diff := sub(x, y)\n }\n function copy_memory_to_memory(src, dst, length)\n {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length) { mstore(add(dst, length), 0) }\n }\n function extract_byte_array_length(data) -> length\n {\n length := shr(1, data)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n if eq(outOfPlaceEncoding, lt(length, 32))\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n }\n function increment_t_uint256(value) -> ret\n {\n if eq(value, not(0)) { panic_error_0x11() }\n ret := add(value, 1)\n }\n function mod_t_uint256(x, y) -> r\n {\n if iszero(y) { panic_error_0x12() }\n r := mod(x, y)\n }\n function panic_error_0x11()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n function panic_error_0x12()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x12)\n revert(0, 0x24)\n }\n function panic_error_0x32()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x32)\n revert(0, 0x24)\n }\n function panic_error_0x41()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n function validator_revert_bytes4(value)\n {\n if iszero(eq(value, and(value, shl(224, 0xffffffff)))) { revert(0, 0) }\n }\n}",
"id": 9,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100cf5760003560e01c80636352211e1161008c578063a22cb46511610066578063a22cb465146101b3578063b88d4fde146101c6578063c87b56dd146101d9578063e985e9c5146101ec57600080fd5b80636352211e1461017757806370a082311461018a57806395d89b41146101ab57600080fd5b806301ffc9a7146100d457806306fdde03146100fc578063081812fc14610111578063095ea7b31461013c57806323b872dd1461015157806342842e0e14610164575b600080fd5b6100e76100e2366004610f25565b610228565b60405190151581526020015b60405180910390f35b61010461027a565b6040516100f39190611010565b61012461011f366004610f5f565b61030c565b6040516001600160a01b0390911681526020016100f3565b61014f61014a366004610efb565b6103a6565b005b61014f61015f366004610da7565b6104bc565b61014f610172366004610da7565b6104ed565b610124610185366004610f5f565b610508565b61019d610198366004610d59565b61057f565b6040519081526020016100f3565b610104610606565b61014f6101c1366004610ebf565b610615565b61014f6101d4366004610de3565b6106da565b6101046101e7366004610f5f565b610712565b6100e76101fa366004610d74565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60006001600160e01b031982166380ac58cd60e01b148061025957506001600160e01b03198216635b5e139f60e01b145b8061027457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461028990611135565b80601f01602080910402602001604051908101604052809291908181526020018280546102b590611135565b80156103025780601f106102d757610100808354040283529160200191610302565b820191906000526020600020905b8154815290600101906020018083116102e557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661038a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006103b182610508565b9050806001600160a01b0316836001600160a01b0316141561041f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610381565b336001600160a01b038216148061043b575061043b81336101fa565b6104ad5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610381565b6104b783836107fa565b505050565b6104c63382610868565b6104e25760405162461bcd60e51b815260040161038190611075565b6104b783838361095f565b6104b7838383604051806020016040528060008152506106da565b6000818152600260205260408120546001600160a01b0316806102745760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610381565b60006001600160a01b0382166105ea5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610381565b506001600160a01b031660009081526003602052604090205490565b60606001805461028990611135565b6001600160a01b03821633141561066e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610381565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6106e43383610868565b6107005760405162461bcd60e51b815260040161038190611075565b61070c84848484610aff565b50505050565b6000818152600260205260409020546060906001600160a01b03166107915760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610381565b60006107a860408051602081019091526000815290565b905060008151116107c857604051806020016040528060008152506107f3565b806107d284610b32565b6040516020016107e3929190610fa4565b6040516020818303038152906040525b9392505050565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061082f82610508565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166108e15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610381565b60006108ec83610508565b9050806001600160a01b0316846001600160a01b031614806109275750836001600160a01b031661091c8461030c565b6001600160a01b0316145b8061095757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661097282610508565b6001600160a01b0316146109da5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610381565b6001600160a01b038216610a3c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610381565b610a476000826107fa565b6001600160a01b0383166000908152600360205260408120805460019290610a709084906110f2565b90915550506001600160a01b0382166000908152600360205260408120805460019290610a9e9084906110c6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610b0a84848461095f565b610b1684848484610c30565b61070c5760405162461bcd60e51b815260040161038190611023565b606081610b565750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610b805780610b6a81611170565b9150610b799050600a836110de565b9150610b5a565b60008167ffffffffffffffff811115610b9b57610b9b6111e1565b6040519080825280601f01601f191660200182016040528015610bc5576020820181803683370190505b5090505b841561095757610bda6001836110f2565b9150610be7600a8661118b565b610bf29060306110c6565b60f81b818381518110610c0757610c076111cb565b60200101906001600160f81b031916908160001a905350610c29600a866110de565b9450610bc9565b60006001600160a01b0384163b15610d3257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290610c74903390899088908890600401610fd3565b602060405180830381600087803b158015610c8e57600080fd5b505af1925050508015610cbe575060408051601f3d908101601f19168201909252610cbb91810190610f42565b60015b610d18573d808015610cec576040519150601f19603f3d011682016040523d82523d6000602084013e610cf1565b606091505b508051610d105760405162461bcd60e51b815260040161038190611023565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610957565b506001949350505050565b80356001600160a01b0381168114610d5457600080fd5b919050565b600060208284031215610d6b57600080fd5b6107f382610d3d565b60008060408385031215610d8757600080fd5b610d9083610d3d565b9150610d9e60208401610d3d565b90509250929050565b600080600060608486031215610dbc57600080fd5b610dc584610d3d565b9250610dd360208501610d3d565b9150604084013590509250925092565b60008060008060808587031215610df957600080fd5b610e0285610d3d565b9350610e1060208601610d3d565b925060408501359150606085013567ffffffffffffffff80821115610e3457600080fd5b818701915087601f830112610e4857600080fd5b813581811115610e5a57610e5a6111e1565b604051601f8201601f19908116603f01168101908382118183101715610e8257610e826111e1565b816040528281528a6020848701011115610e9b57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215610ed257600080fd5b610edb83610d3d565b915060208301358015158114610ef057600080fd5b809150509250929050565b60008060408385031215610f0e57600080fd5b610f1783610d3d565b946020939093013593505050565b600060208284031215610f3757600080fd5b81356107f3816111f7565b600060208284031215610f5457600080fd5b81516107f3816111f7565b600060208284031215610f7157600080fd5b5035919050565b60008151808452610f90816020860160208601611109565b601f01601f19169290920160200192915050565b60008351610fb6818460208801611109565b835190830190610fca818360208801611109565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061100690830184610f78565b9695505050505050565b6020815260006107f36020830184610f78565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156110d9576110d961119f565b500190565b6000826110ed576110ed6111b5565b500490565b6000828210156111045761110461119f565b500390565b60005b8381101561112457818101518382015260200161110c565b8381111561070c5750506000910152565b600181811c9082168061114957607f821691505b6020821081141561116a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156111845761118461119f565b5060010190565b60008261119a5761119a6111b5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461120d57600080fd5b5056fea2646970667358221220ba9687875ba44c36a2f3bdd0bbf28cf22720b941d6722c7615b208696e6aab6a64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xCF 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 0x1B3 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x1C6 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x1D9 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x1EC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6352211E EQ PUSH2 0x177 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x18A JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1AB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xD4 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xFC JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x111 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x13C JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x151 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x164 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xE7 PUSH2 0xE2 CALLDATASIZE PUSH1 0x4 PUSH2 0xF25 JUMP JUMPDEST PUSH2 0x228 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x104 PUSH2 0x27A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF3 SWAP2 SWAP1 PUSH2 0x1010 JUMP JUMPDEST PUSH2 0x124 PUSH2 0x11F CALLDATASIZE PUSH1 0x4 PUSH2 0xF5F JUMP JUMPDEST PUSH2 0x30C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xF3 JUMP JUMPDEST PUSH2 0x14F PUSH2 0x14A CALLDATASIZE PUSH1 0x4 PUSH2 0xEFB JUMP JUMPDEST PUSH2 0x3A6 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x14F PUSH2 0x15F CALLDATASIZE PUSH1 0x4 PUSH2 0xDA7 JUMP JUMPDEST PUSH2 0x4BC JUMP JUMPDEST PUSH2 0x14F PUSH2 0x172 CALLDATASIZE PUSH1 0x4 PUSH2 0xDA7 JUMP JUMPDEST PUSH2 0x4ED JUMP JUMPDEST PUSH2 0x124 PUSH2 0x185 CALLDATASIZE PUSH1 0x4 PUSH2 0xF5F JUMP JUMPDEST PUSH2 0x508 JUMP JUMPDEST PUSH2 0x19D PUSH2 0x198 CALLDATASIZE PUSH1 0x4 PUSH2 0xD59 JUMP JUMPDEST PUSH2 0x57F JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xF3 JUMP JUMPDEST PUSH2 0x104 PUSH2 0x606 JUMP JUMPDEST PUSH2 0x14F PUSH2 0x1C1 CALLDATASIZE PUSH1 0x4 PUSH2 0xEBF JUMP JUMPDEST PUSH2 0x615 JUMP JUMPDEST PUSH2 0x14F PUSH2 0x1D4 CALLDATASIZE PUSH1 0x4 PUSH2 0xDE3 JUMP JUMPDEST PUSH2 0x6DA JUMP JUMPDEST PUSH2 0x104 PUSH2 0x1E7 CALLDATASIZE PUSH1 0x4 PUSH2 0xF5F JUMP JUMPDEST PUSH2 0x712 JUMP JUMPDEST PUSH2 0xE7 PUSH2 0x1FA CALLDATASIZE PUSH1 0x4 PUSH2 0xD74 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x80AC58CD PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x259 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x5B5E139F PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x274 JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x289 SWAP1 PUSH2 0x1135 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 0x2B5 SWAP1 PUSH2 0x1135 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x302 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2D7 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x302 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 0x2E5 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x38A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76656420717565727920666F72206E6F6E6578 PUSH1 0x44 DUP3 ADD MSTORE PUSH12 0x34B9BA32B73A103A37B5B2B7 PUSH1 0xA1 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3B1 DUP3 PUSH2 0x508 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x41F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x39 PUSH1 0xF9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x381 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND EQ DUP1 PUSH2 0x43B JUMPI POP PUSH2 0x43B DUP2 CALLER PUSH2 0x1FA JUMP JUMPDEST PUSH2 0x4AD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x38 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F74206F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6E6572206E6F7220617070726F76656420666F7220616C6C0000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x381 JUMP JUMPDEST PUSH2 0x4B7 DUP4 DUP4 PUSH2 0x7FA JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x4C6 CALLER DUP3 PUSH2 0x868 JUMP JUMPDEST PUSH2 0x4E2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x381 SWAP1 PUSH2 0x1075 JUMP JUMPDEST PUSH2 0x4B7 DUP4 DUP4 DUP4 PUSH2 0x95F JUMP JUMPDEST PUSH2 0x4B7 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x6DA JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP1 PUSH2 0x274 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A206F776E657220717565727920666F72206E6F6E6578697374 PUSH1 0x44 DUP3 ADD MSTORE PUSH9 0x32B73A103A37B5B2B7 PUSH1 0xB9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x381 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x5EA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A2062616C616E636520717565727920666F7220746865207A65 PUSH1 0x44 DUP3 ADD MSTORE PUSH10 0x726F2061646472657373 PUSH1 0xB0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x381 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x289 SWAP1 PUSH2 0x1135 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND CALLER EQ ISZERO PUSH2 0x66E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x19 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x381 JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP1 DUP6 MSTORE SWAP1 DUP4 MSTORE SWAP3 DUP2 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND DUP7 ISZERO ISZERO SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP1 MLOAD SWAP1 DUP2 MSTORE SWAP2 SWAP3 SWAP2 PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0x6E4 CALLER DUP4 PUSH2 0x868 JUMP JUMPDEST PUSH2 0x700 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x381 SWAP1 PUSH2 0x1075 JUMP JUMPDEST PUSH2 0x70C DUP5 DUP5 DUP5 DUP5 PUSH2 0xAFF JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x60 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x791 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732314D657461646174613A2055524920717565727920666F72206E6F PUSH1 0x44 DUP3 ADD MSTORE PUSH15 0x3732BC34B9BA32B73A103A37B5B2B7 PUSH1 0x89 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x381 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7A8 PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP2 MSTORE SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x7C8 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x7F3 JUMP JUMPDEST DUP1 PUSH2 0x7D2 DUP5 PUSH2 0xB32 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x7E3 SWAP3 SWAP2 SWAP1 PUSH2 0xFA4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE DUP2 SWAP1 PUSH2 0x82F DUP3 PUSH2 0x508 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x8E1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A206F70657261746F7220717565727920666F72206E6F6E6578 PUSH1 0x44 DUP3 ADD MSTORE PUSH12 0x34B9BA32B73A103A37B5B2B7 PUSH1 0xA1 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x381 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8EC DUP4 PUSH2 0x508 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x927 JUMPI POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x91C DUP5 PUSH2 0x30C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST DUP1 PUSH2 0x957 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP9 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x972 DUP3 PUSH2 0x508 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x9DA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E73666572206F6620746F6B656E20746861742069 PUSH1 0x44 DUP3 ADD MSTORE PUSH9 0x39903737BA1037BBB7 PUSH1 0xB9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x381 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xA3C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E7366657220746F20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH4 0x72657373 PUSH1 0xE0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x381 JUMP JUMPDEST PUSH2 0xA47 PUSH1 0x0 DUP3 PUSH2 0x7FA JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0xA70 SWAP1 DUP5 SWAP1 PUSH2 0x10F2 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0xA9E SWAP1 DUP5 SWAP1 PUSH2 0x10C6 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE SWAP2 MLOAD DUP5 SWAP4 SWAP2 DUP8 AND SWAP2 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 LOG4 POP POP POP JUMP JUMPDEST PUSH2 0xB0A DUP5 DUP5 DUP5 PUSH2 0x95F JUMP JUMPDEST PUSH2 0xB16 DUP5 DUP5 DUP5 DUP5 PUSH2 0xC30 JUMP JUMPDEST PUSH2 0x70C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x381 SWAP1 PUSH2 0x1023 JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH2 0xB56 JUMPI POP POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x1 DUP2 MSTORE PUSH1 0x3 PUSH1 0xFC SHL PUSH1 0x20 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x0 JUMPDEST DUP2 ISZERO PUSH2 0xB80 JUMPI DUP1 PUSH2 0xB6A DUP2 PUSH2 0x1170 JUMP JUMPDEST SWAP2 POP PUSH2 0xB79 SWAP1 POP PUSH1 0xA DUP4 PUSH2 0x10DE JUMP JUMPDEST SWAP2 POP PUSH2 0xB5A JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xB9B JUMPI PUSH2 0xB9B PUSH2 0x11E1 JUMP 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 0xBC5 JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP JUMPDEST DUP5 ISZERO PUSH2 0x957 JUMPI PUSH2 0xBDA PUSH1 0x1 DUP4 PUSH2 0x10F2 JUMP JUMPDEST SWAP2 POP PUSH2 0xBE7 PUSH1 0xA DUP7 PUSH2 0x118B JUMP JUMPDEST PUSH2 0xBF2 SWAP1 PUSH1 0x30 PUSH2 0x10C6 JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0xC07 JUMPI PUSH2 0xC07 PUSH2 0x11CB JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH2 0xC29 PUSH1 0xA DUP7 PUSH2 0x10DE JUMP JUMPDEST SWAP5 POP PUSH2 0xBC9 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO PUSH2 0xD32 JUMPI PUSH1 0x40 MLOAD PUSH4 0xA85BD01 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0x150B7A02 SWAP1 PUSH2 0xC74 SWAP1 CALLER SWAP1 DUP10 SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH2 0xFD3 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xC8E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0xCBE JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0xCBB SWAP2 DUP2 ADD SWAP1 PUSH2 0xF42 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0xD18 JUMPI RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0xCEC 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 0xCF1 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP DUP1 MLOAD PUSH2 0xD10 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x381 SWAP1 PUSH2 0x1023 JUMP JUMPDEST DUP1 MLOAD DUP2 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND PUSH4 0xA85BD01 PUSH1 0xE1 SHL EQ SWAP1 POP PUSH2 0x957 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xD54 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD6B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x7F3 DUP3 PUSH2 0xD3D JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xD87 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xD90 DUP4 PUSH2 0xD3D JUMP JUMPDEST SWAP2 POP PUSH2 0xD9E PUSH1 0x20 DUP5 ADD PUSH2 0xD3D JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xDBC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xDC5 DUP5 PUSH2 0xD3D JUMP JUMPDEST SWAP3 POP PUSH2 0xDD3 PUSH1 0x20 DUP6 ADD PUSH2 0xD3D JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0xDF9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xE02 DUP6 PUSH2 0xD3D JUMP JUMPDEST SWAP4 POP PUSH2 0xE10 PUSH1 0x20 DUP7 ADD PUSH2 0xD3D JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0xE34 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP8 ADD SWAP2 POP DUP8 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xE48 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0xE5A JUMPI PUSH2 0xE5A PUSH2 0x11E1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP4 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH2 0xE82 JUMPI PUSH2 0xE82 PUSH2 0x11E1 JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP3 DUP2 MSTORE DUP11 PUSH1 0x20 DUP5 DUP8 ADD ADD GT ISZERO PUSH2 0xE9B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH1 0x0 PUSH1 0x20 DUP5 DUP4 ADD ADD MSTORE DUP1 SWAP6 POP POP POP POP POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xED2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xEDB DUP4 PUSH2 0xD3D JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0xEF0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xF0E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF17 DUP4 PUSH2 0xD3D JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xF37 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x7F3 DUP2 PUSH2 0x11F7 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xF54 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x7F3 DUP2 PUSH2 0x11F7 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xF71 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0xF90 DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x1109 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP4 MLOAD PUSH2 0xFB6 DUP2 DUP5 PUSH1 0x20 DUP9 ADD PUSH2 0x1109 JUMP JUMPDEST DUP4 MLOAD SWAP1 DUP4 ADD SWAP1 PUSH2 0xFCA DUP2 DUP4 PUSH1 0x20 DUP9 ADD PUSH2 0x1109 JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND DUP3 MSTORE DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x80 PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH2 0x1006 SWAP1 DUP4 ADD DUP5 PUSH2 0xF78 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x7F3 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0xF78 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x32 SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x40 DUP3 ADD MSTORE PUSH18 0x31B2B4BB32B91034B6B83632B6B2B73A32B9 PUSH1 0x71 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x31 SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E736665722063616C6C6572206973206E6F74206F PUSH1 0x40 DUP3 ADD MSTORE PUSH17 0x1DDB995C881B9BDC88185C1C1C9BDD9959 PUSH1 0x7A SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x10D9 JUMPI PUSH2 0x10D9 PUSH2 0x119F JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x10ED JUMPI PUSH2 0x10ED PUSH2 0x11B5 JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x1104 JUMPI PUSH2 0x1104 PUSH2 0x119F JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1124 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x110C JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x70C JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x1149 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x116A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x1184 JUMPI PUSH2 0x1184 PUSH2 0x119F JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x119A JUMPI PUSH2 0x119A PUSH2 0x11B5 JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x120D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xBA SWAP7 DUP8 DUP8 JUMPDEST LOG4 0x4C CALLDATASIZE LOG2 RETURN 0xBD 0xD0 0xBB CALLCODE DUP13 CALLCODE 0x27 KECCAK256 0xB9 COINBASE 0xD6 PUSH19 0x2C7615B208696E6AAB6A64736F6C6343000807 STOP CALLER ",
"sourceMap": "554:12701:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1496:300;;;;;;:::i;:::-;;:::i;:::-;;;5027:14:9;;5020:22;5002:41;;4990:2;4975:18;1496:300:0;;;;;;;;2414:98;;;:::i;:::-;;;;;;;:::i;3925:217::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4325:32:9;;;4307:51;;4295:2;4280:18;3925:217:0;4161:203:9;3463:401:0;;;;;;:::i;:::-;;:::i;:::-;;4789:330;;;;;;:::i;:::-;;:::i;5185:179::-;;;;;;:::i;:::-;;:::i;2117:235::-;;;;;;:::i;:::-;;:::i;1855:205::-;;;;;;:::i;:::-;;:::i;:::-;;;10320:25:9;;;10308:2;10293:18;1855:205:0;10174:177:9;2576:102:0;;;:::i;4209:290::-;;;;;;:::i;:::-;;:::i;5430:320::-;;;;;;:::i;:::-;;:::i;2744:329::-;;;;;;:::i;:::-;;:::i;4565:162::-;;;;;;:::i;:::-;-1:-1:-1;;;;;4685:25:0;;;4662:4;4685:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4565:162;1496:300;1598:4;-1:-1:-1;;;;;;1633:40:0;;-1:-1:-1;;;1633:40:0;;:104;;-1:-1:-1;;;;;;;1689:48:0;;-1:-1:-1;;;1689:48:0;1633:104;:156;;;-1:-1:-1;;;;;;;;;;871:40:7;;;1753:36:0;1614:175;1496:300;-1:-1:-1;;1496:300:0:o;2414:98::-;2468:13;2500:5;2493:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2414:98;:::o;3925:217::-;4001:7;7310:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7310:16:0;4020:73;;;;-1:-1:-1;;;4020:73:0;;8317:2:9;4020:73:0;;;8299:21:9;8356:2;8336:18;;;8329:30;8395:34;8375:18;;;8368:62;-1:-1:-1;;;8446:18:9;;;8439:42;8498:19;;4020:73:0;;;;;;;;;-1:-1:-1;4111:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;4111:24:0;;3925:217::o;3463:401::-;3543:13;3559:23;3574:7;3559:14;:23::i;:::-;3543:39;;3606:5;-1:-1:-1;;;;;3600:11:0;:2;-1:-1:-1;;;;;3600:11:0;;;3592:57;;;;-1:-1:-1;;;3592:57:0;;9556:2:9;3592:57:0;;;9538:21:9;9595:2;9575:18;;;9568:30;9634:34;9614:18;;;9607:62;-1:-1:-1;;;9685:18:9;;;9678:31;9726:19;;3592:57:0;9354:397:9;3592:57:0;666:10:5;-1:-1:-1;;;;;3681:21:0;;;;:62;;-1:-1:-1;3706:37:0;3723:5;666:10:5;4565:162:0;:::i;3706:37::-;3660:165;;;;-1:-1:-1;;;3660:165:0;;7071:2:9;3660:165:0;;;7053:21:9;7110:2;7090:18;;;7083:30;7149:34;7129:18;;;7122:62;7220:26;7200:18;;;7193:54;7264:19;;3660:165:0;6869:420:9;3660:165:0;3836:21;3845:2;3849:7;3836:8;:21::i;:::-;3533:331;3463:401;;:::o;4789:330::-;4978:41;666:10:5;5011:7:0;4978:18;:41::i;:::-;4970:103;;;;-1:-1:-1;;;4970:103:0;;;;;;;:::i;:::-;5084:28;5094:4;5100:2;5104:7;5084:9;:28::i;5185:179::-;5318:39;5335:4;5341:2;5345:7;5318:39;;;;;;;;;;;;:16;:39::i;2117:235::-;2189:7;2224:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2224:16:0;2258:19;2250:73;;;;-1:-1:-1;;;2250:73:0;;7907:2:9;2250:73:0;;;7889:21:9;7946:2;7926:18;;;7919:30;7985:34;7965:18;;;7958:62;-1:-1:-1;;;8036:18:9;;;8029:39;8085:19;;2250:73:0;7705:405:9;1855:205:0;1927:7;-1:-1:-1;;;;;1954:19:0;;1946:74;;;;-1:-1:-1;;;1946:74:0;;7496:2:9;1946:74:0;;;7478:21:9;7535:2;7515:18;;;7508:30;7574:34;7554:18;;;7547:62;-1:-1:-1;;;7625:18:9;;;7618:40;7675:19;;1946:74:0;7294:406:9;1946:74:0;-1:-1:-1;;;;;;2037:16:0;;;;;:9;:16;;;;;;;1855:205::o;2576:102::-;2632:13;2664:7;2657:14;;;;;:::i;4209:290::-;-1:-1:-1;;;;;4311:24:0;;666:10:5;4311:24:0;;4303:62;;;;-1:-1:-1;;;4303:62:0;;6304:2:9;4303:62:0;;;6286:21:9;6343:2;6323:18;;;6316:30;6382:27;6362:18;;;6355:55;6427:18;;4303:62:0;6102:349:9;4303:62:0;666:10:5;4376:32:0;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4376:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;4376:53:0;;;;;;;;;;4444:48;;5002:41:9;;;4376:42:0;;666:10:5;4444:48:0;;4975:18:9;4444:48:0;;;;;;;4209:290;;:::o;5430:320::-;5599:41;666:10:5;5632:7:0;5599:18;:41::i;:::-;5591:103;;;;-1:-1:-1;;;5591:103:0;;;;;;;:::i;:::-;5704:39;5718:4;5724:2;5728:7;5737:5;5704:13;:39::i;:::-;5430:320;;;;:::o;2744:329::-;7287:4;7310:16;;;:7;:16;;;;;;2817:13;;-1:-1:-1;;;;;7310:16:0;2842:76;;;;-1:-1:-1;;;2842:76:0;;9140:2:9;2842:76:0;;;9122:21:9;9179:2;9159:18;;;9152:30;9218:34;9198:18;;;9191:62;-1:-1:-1;;;9269:18:9;;;9262:45;9324:19;;2842:76:0;8938:411:9;2842:76:0;2929:21;2953:10;3390:9;;;;;;;;;-1:-1:-1;3390:9:0;;;3314:92;2953:10;2929:34;;3004:1;2986:7;2980:21;:25;:86;;;;;;;;;;;;;;;;;3032:7;3041:18;:7;:16;:18::i;:::-;3015:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2980:86;2973:93;2744:329;-1:-1:-1;;;2744:329:0:o;11073:171::-;11147:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11147:29:0;-1:-1:-1;;;;;11147:29:0;;;;;;;;:24;;11200:23;11147:24;11200:14;:23::i;:::-;-1:-1:-1;;;;;11191:46:0;;;;;;;;;;;11073:171;;:::o;7505:344::-;7598:4;7310:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7310:16:0;7614:73;;;;-1:-1:-1;;;7614:73:0;;6658:2:9;7614:73:0;;;6640:21:9;6697:2;6677:18;;;6670:30;6736:34;6716:18;;;6709:62;-1:-1:-1;;;6787:18:9;;;6780:42;6839:19;;7614:73:0;6456:408:9;7614:73:0;7697:13;7713:23;7728:7;7713:14;:23::i;:::-;7697:39;;7765:5;-1:-1:-1;;;;;7754:16:0;:7;-1:-1:-1;;;;;7754:16:0;;:51;;;;7798:7;-1:-1:-1;;;;;7774:31:0;:20;7786:7;7774:11;:20::i;:::-;-1:-1:-1;;;;;7774:31:0;;7754:51;:87;;;-1:-1:-1;;;;;;4685:25:0;;;4662:4;4685:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7809:32;7746:96;7505:344;-1:-1:-1;;;;7505:344:0:o;10402:560::-;10556:4;-1:-1:-1;;;;;10529:31:0;:23;10544:7;10529:14;:23::i;:::-;-1:-1:-1;;;;;10529:31:0;;10521:85;;;;-1:-1:-1;;;10521:85:0;;8730:2:9;10521:85:0;;;8712:21:9;8769:2;8749:18;;;8742:30;8808:34;8788:18;;;8781:62;-1:-1:-1;;;8859:18:9;;;8852:39;8908:19;;10521:85:0;8528:405:9;10521:85:0;-1:-1:-1;;;;;10624:16:0;;10616:65;;;;-1:-1:-1;;;10616:65:0;;5899:2:9;10616:65:0;;;5881:21:9;5938:2;5918:18;;;5911:30;5977:34;5957:18;;;5950:62;-1:-1:-1;;;6028:18:9;;;6021:34;6072:19;;10616:65:0;5697:400:9;10616:65:0;10793:29;10810:1;10814:7;10793:8;:29::i;:::-;-1:-1:-1;;;;;10833:15:0;;;;;;:9;:15;;;;;:20;;10852:1;;10833:15;:20;;10852:1;;10833:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10863:13:0;;;;;;:9;:13;;;;;:18;;10880:1;;10863:13;:18;;10880:1;;10863:18;:::i;:::-;;;;-1:-1:-1;;10891:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10891:21:0;-1:-1:-1;;;;;10891:21:0;;;;;;;;;10928:27;;10891:16;;10928:27;;;;;;;10402:560;;;:::o;6612:307::-;6763:28;6773:4;6779:2;6783:7;6763:9;:28::i;:::-;6809:48;6832:4;6838:2;6842:7;6851:5;6809:22;:48::i;:::-;6801:111;;;;-1:-1:-1;;;6801:111:0;;;;;;;:::i;275:703:6:-;331:13;548:10;544:51;;-1:-1:-1;;574:10:6;;;;;;;;;;;;-1:-1:-1;;;574:10:6;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:6;;-1:-1:-1;720:2:6;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:6;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:6;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;849:56:6;;;;;;;;-1:-1:-1;919:11:6;928:2;919:11;;:::i;:::-;;;791:150;;11797:778:0;11947:4;-1:-1:-1;;;;;11967:13:0;;1034:20:4;1080:8;11963:606:0;;12002:72;;-1:-1:-1;;;12002:72:0;;-1:-1:-1;;;;;12002:36:0;;;;;:72;;666:10:5;;12053:4:0;;12059:7;;12068:5;;12002:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12002:72:0;;;;;;;;-1:-1:-1;;12002:72:0;;;;;;;;;;;;:::i;:::-;;;11998:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12241:13:0;;12237:266;;12283:60;;-1:-1:-1;;;12283:60:0;;;;;;;:::i;12237:266::-;12455:6;12449:13;12440:6;12436:2;12432:15;12425:38;11998:519;-1:-1:-1;;;;;;12124:51:0;-1:-1:-1;;;12124:51:0;;-1:-1:-1;12117:58:0;;11963:606;-1:-1:-1;12554:4:0;11797:778;;;;;;:::o;14:173:9:-;82:20;;-1:-1:-1;;;;;131:31:9;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:9;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:9:o;2735:245::-;2793:6;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:30;2944:5;2920:30;:::i;2985:249::-;3054:6;3107:2;3095:9;3086:7;3082:23;3078:32;3075:52;;;3123:1;3120;3113:12;3075:52;3155:9;3149:16;3174:30;3198:5;3174:30;:::i;3239:180::-;3298:6;3351:2;3339:9;3330:7;3326:23;3322:32;3319:52;;;3367:1;3364;3357:12;3319:52;-1:-1:-1;3390:23:9;;3239:180;-1:-1:-1;3239:180:9:o;3424:257::-;3465:3;3503:5;3497:12;3530:6;3525:3;3518:19;3546:63;3602:6;3595:4;3590:3;3586:14;3579:4;3572:5;3568:16;3546:63;:::i;:::-;3663:2;3642:15;-1:-1:-1;;3638:29:9;3629:39;;;;3670:4;3625:50;;3424:257;-1:-1:-1;;3424:257:9:o;3686:470::-;3865:3;3903:6;3897:13;3919:53;3965:6;3960:3;3953:4;3945:6;3941:17;3919:53;:::i;:::-;4035:13;;3994:16;;;;4057:57;4035:13;3994:16;4091:4;4079:17;;4057:57;:::i;:::-;4130:20;;3686:470;-1:-1:-1;;;;3686:470:9:o;4369:488::-;-1:-1:-1;;;;;4638:15:9;;;4620:34;;4690:15;;4685:2;4670:18;;4663:43;4737:2;4722:18;;4715:34;;;4785:3;4780:2;4765:18;;4758:31;;;4563:4;;4806:45;;4831:19;;4823:6;4806:45;:::i;:::-;4798:53;4369:488;-1:-1:-1;;;;;;4369:488:9:o;5054:219::-;5203:2;5192:9;5185:21;5166:4;5223:44;5263:2;5252:9;5248:18;5240:6;5223:44;:::i;5278:414::-;5480:2;5462:21;;;5519:2;5499:18;;;5492:30;5558:34;5553:2;5538:18;;5531:62;-1:-1:-1;;;5624:2:9;5609:18;;5602:48;5682:3;5667:19;;5278:414::o;9756:413::-;9958:2;9940:21;;;9997:2;9977:18;;;9970:30;10036:34;10031:2;10016:18;;10009:62;-1:-1:-1;;;10102:2:9;10087:18;;10080:47;10159:3;10144:19;;9756:413::o;10356:128::-;10396:3;10427:1;10423:6;10420:1;10417:13;10414:39;;;10433:18;;:::i;:::-;-1:-1:-1;10469:9:9;;10356:128::o;10489:120::-;10529:1;10555;10545:35;;10560:18;;:::i;:::-;-1:-1:-1;10594:9:9;;10489:120::o;10614:125::-;10654:4;10682:1;10679;10676:8;10673:34;;;10687:18;;:::i;:::-;-1:-1:-1;10724:9:9;;10614:125::o;10744:258::-;10816:1;10826:113;10840:6;10837:1;10834:13;10826:113;;;10916:11;;;10910:18;10897:11;;;10890:39;10862:2;10855:10;10826:113;;;10957:6;10954:1;10951:13;10948:48;;;-1:-1:-1;;10992:1:9;10974:16;;10967:27;10744:258::o;11007:380::-;11086:1;11082:12;;;;11129;;;11150:61;;11204:4;11196:6;11192:17;11182:27;;11150:61;11257:2;11249:6;11246:14;11226:18;11223:38;11220:161;;;11303:10;11298:3;11294:20;11291:1;11284:31;11338:4;11335:1;11328:15;11366:4;11363:1;11356:15;11220:161;;11007:380;;;:::o;11392:135::-;11431:3;-1:-1:-1;;11452:17:9;;11449:43;;;11472:18;;:::i;:::-;-1:-1:-1;11519:1:9;11508:13;;11392:135::o;11532:112::-;11564:1;11590;11580:35;;11595:18;;:::i;:::-;-1:-1:-1;11629:9:9;;11532:112::o;11649:127::-;11710:10;11705:3;11701:20;11698:1;11691:31;11741:4;11738:1;11731:15;11765:4;11762:1;11755:15;11781:127;11842:10;11837:3;11833:20;11830:1;11823:31;11873:4;11870:1;11863:15;11897:4;11894:1;11887:15;11913:127;11974:10;11969:3;11965:20;11962:1;11955:31;12005:4;12002:1;11995:15;12029:4;12026:1;12019:15;12045:127;12106:10;12101:3;12097:20;12094:1;12087:31;12137:4;12134:1;12127:15;12161:4;12158:1;12151:15;12177:131;-1:-1:-1;;;;;;12251:32:9;;12241:43;;12231:71;;12298:1;12295;12288:12;12231:71;12177:131;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "935600",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"approve(address,uint256)": "infinite",
"balanceOf(address)": "2634",
"getApproved(uint256)": "4737",
"isApprovedForAll(address,address)": "infinite",
"name()": "infinite",
"ownerOf(uint256)": "2579",
"safeTransferFrom(address,address,uint256)": "infinite",
"safeTransferFrom(address,address,uint256,bytes)": "infinite",
"setApprovalForAll(address,bool)": "26650",
"supportsInterface(bytes4)": "511",
"symbol()": "infinite",
"tokenURI(uint256)": "infinite",
"transferFrom(address,address,uint256)": "infinite"
},
"internal": {
"_approve(address,uint256)": "infinite",
"_baseURI()": "infinite",
"_beforeTokenTransfer(address,address,uint256)": "infinite",
"_burn(uint256)": "infinite",
"_checkOnERC721Received(address,address,uint256,bytes memory)": "infinite",
"_exists(uint256)": "infinite",
"_isApprovedOrOwner(address,uint256)": "infinite",
"_mint(address,uint256)": "infinite",
"_safeMint(address,uint256)": "infinite",
"_safeMint(address,uint256,bytes memory)": "infinite",
"_safeTransfer(address,address,uint256,bytes memory)": "infinite",
"_transfer(address,address,uint256)": "infinite"
}
},
"methodIdentifiers": {
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"getApproved(uint256)": "081812fc",
"isApprovedForAll(address,address)": "e985e9c5",
"name()": "06fdde03",
"ownerOf(uint256)": "6352211e",
"safeTransferFrom(address,address,uint256)": "42842e0e",
"safeTransferFrom(address,address,uint256,bytes)": "b88d4fde",
"setApprovalForAll(address,bool)": "a22cb465",
"supportsInterface(bytes4)": "01ffc9a7",
"symbol()": "95d89b41",
"tokenURI(uint256)": "c87b56dd",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "name_",
"type": "string"
},
{
"internalType": "string",
"name": "symbol_",
"type": "string"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"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": [
{
"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"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "name_",
"type": "string"
},
{
"internalType": "string",
"name": "symbol_",
"type": "string"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"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": [
{
"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, but not including the Enumerable extension, which is available separately as {ERC721Enumerable}.",
"kind": "dev",
"methods": {
"approve(address,uint256)": {
"details": "See {IERC721-approve}."
},
"balanceOf(address)": {
"details": "See {IERC721-balanceOf}."
},
"constructor": {
"details": "Initializes the contract by setting a `name` and a `symbol` to the token collection."
},
"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}."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC721-transferFrom}."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
".deps/npm/@openzeppelin/contracts@4.3.2/token/ERC721/ERC721.sol": "ERC721"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": []
},
"sources": {
".deps/npm/@openzeppelin/contracts@4.3.2/token/ERC721/ERC721.sol": {
"keccak256": "0x7d2b8ba4b256bfcac347991b75242f9bc37f499c5236af50cf09d0b35943dc0c",
"license": "MIT",
"urls": [
"bzz-raw://d8eeaf6afe00229af4c232ca058bb08b7a24cc3886f0b387159ac49ffd8b5312",
"dweb:/ipfs/QmdnVKmDDWDvdRr6vtrxy3G6WafqA2TAhUZv1UFMsm4B4r"
]
},
".deps/npm/@openzeppelin/contracts@4.3.2/token/ERC721/IERC721.sol": {
"keccak256": "0xf101e8720213560fab41104d53b3cc7ba0456ef3a98455aa7f022391783144a0",
"license": "MIT",
"urls": [
"bzz-raw://3e7820bcf567e6892d937c3cb10db263a4042e446799bca602535868d822384e",
"dweb:/ipfs/QmPG2oeDjKncqsEeyYGjAN7CwAJmMgHterXGGnpzhha4z7"
]
},
".deps/npm/@openzeppelin/contracts@4.3.2/token/ERC721/IERC721Receiver.sol": {
"keccak256": "0xd9517254724276e2e8de3769183c1f738f445f0095c26fd9b86d3c6687e887b9",
"license": "MIT",
"urls": [
"bzz-raw://0e604bcdcd5e5b2fb299ad09769cde6db19d5aa1929d1b5e939234a0f10d7eb8",
"dweb:/ipfs/Qmd8hXE3GZfBHuWx3RNiYgFW2ci7KvHtib8DiwzJ2dgo9V"
]
},
".deps/npm/@openzeppelin/contracts@4.3.2/token/ERC721/extensions/IERC721Metadata.sol": {
"keccak256": "0xd32fb7f530a914b1083d10a6bed3a586f2451952fec04fe542bcc670a82f7ba5",
"license": "MIT",
"urls": [
"bzz-raw://af63ab940a34687c45f0ad84960b048fc5f49330c92ccb422db7822a444733b9",
"dweb:/ipfs/QmUShaQEu8HS1GjDnsMJQ8jkZEBrecn6NuDZ3pfjY1gVck"
]
},
".deps/npm/@openzeppelin/contracts@4.3.2/utils/Address.sol": {
"keccak256": "0x3336baae5cf23e94274d75336e2d412193be508504aee185e61dc7d58cd05c8a",
"license": "MIT",
"urls": [
"bzz-raw://39a05eec7083dfa0cc7e0cbfe6cd1bd085a340af1ede93fdff3ad047c5fb3d8e",
"dweb:/ipfs/QmVApz5fCUq2QC8gKTsNNdCmcedJ3ETHp68zR5N3WUKS4r"
]
},
".deps/npm/@openzeppelin/contracts@4.3.2/utils/Context.sol": {
"keccak256": "0x90565a39ae45c80f0468dc96c7b20d0afc3055f344c8203a0c9258239f350b9f",
"license": "MIT",
"urls": [
"bzz-raw://26e8b38a7ac8e7b4463af00cf7fff1bf48ae9875765bf4f7751e100124d0bc8c",
"dweb:/ipfs/QmWcsmkVr24xmmjfnBQZoemFniXjj3vwT78Cz6uqZW1Hux"
]
},
".deps/npm/@openzeppelin/contracts@4.3.2/utils/Strings.sol": {
"keccak256": "0x391d3ba97ab6856a16b225d6ee29617ad15ff00db70f3b4df1ab5ea33aa47c9d",
"license": "MIT",
"urls": [
"bzz-raw://d636ba90bbbeed04a1ea7fe9ec2466757e30fd38ba2ca173636dbf69a518735e",
"dweb:/ipfs/QmQwCB2BHnEuYR22PYt9HkpbgeFDhq4rHmaYqAZbX3WRC7"
]
},
".deps/npm/@openzeppelin/contracts@4.3.2/utils/introspection/ERC165.sol": {
"keccak256": "0x5718c5df9bd67ac68a796961df938821bb5dc0cd4c6118d77e9145afb187409b",
"license": "MIT",
"urls": [
"bzz-raw://d10e1d9b26042424789246603906ad06143bf9a928f4e99de8b5e3bdc662f549",
"dweb:/ipfs/Qmejonoaj5MLekPus229rJQHcC6E9dz2xorjHJR84fMfmn"
]
},
".deps/npm/@openzeppelin/contracts@4.3.2/utils/introspection/IERC165.sol": {
"keccak256": "0xa28007762d9da9db878dd421960c8cb9a10471f47ab5c1b3309bfe48e9e79ff4",
"license": "MIT",
"urls": [
"bzz-raw://796ab6e88af7bf0e78def0f059310c903af6a312b565344e0ff524a0f26e81c6",
"dweb:/ipfs/QmcsVgLgzWdor3UnAztUkXKNGcysm1MPneWksF72AvnwBx"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"getApproved(uint256)": "081812fc",
"isApprovedForAll(address,address)": "e985e9c5",
"ownerOf(uint256)": "6352211e",
"safeTransferFrom(address,address,uint256)": "42842e0e",
"safeTransferFrom(address,address,uint256,bytes)": "b88d4fde",
"setApprovalForAll(address,bool)": "a22cb465",
"supportsInterface(bytes4)": "01ffc9a7",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"abi": [
{
"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": "balance",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "getApproved",
"outputs": [
{
"internalType": "address",
"name": "operator",
"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": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "ownerOf",
"outputs": [
{
"internalType": "address",
"name": "owner",
"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": [
{
"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"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"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": "balance",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "getApproved",
"outputs": [
{
"internalType": "address",
"name": "operator",
"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": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "ownerOf",
"outputs": [
{
"internalType": "address",
"name": "owner",
"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": [
{
"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": "Required interface of an ERC721 compliant contract.",
"events": {
"Approval(address,address,uint256)": {
"details": "Emitted when `owner` enables `approved` to manage the `tokenId` token."
},
"ApprovalForAll(address,address,bool)": {
"details": "Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets."
},
"Transfer(address,address,uint256)": {
"details": "Emitted when `tokenId` token is transferred from `from` to `to`."
}
},
"kind": "dev",
"methods": {
"approve(address,uint256)": {
"details": "Gives permission to `to` to transfer `tokenId` token to another account. The approval is cleared when the token is transferred. Only a single account can be approved at a time, so approving the zero address clears previous approvals. Requirements: - The caller must own the token or be an approved operator. - `tokenId` must exist. Emits an {Approval} event."
},
"balanceOf(address)": {
"details": "Returns the number of tokens in ``owner``'s account."
},
"getApproved(uint256)": {
"details": "Returns the account approved for `tokenId` token. Requirements: - `tokenId` must exist."
},
"isApprovedForAll(address,address)": {
"details": "Returns if the `operator` is allowed to manage all of the assets of `owner`. See {setApprovalForAll}"
},
"ownerOf(uint256)": {
"details": "Returns the owner of the `tokenId` token. Requirements: - `tokenId` must exist."
},
"safeTransferFrom(address,address,uint256)": {
"details": "Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients are aware of the ERC721 protocol to prevent tokens from being forever locked. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. Emits a {Transfer} event."
},
"safeTransferFrom(address,address,uint256,bytes)": {
"details": "Safely transfers `tokenId` token from `from` to `to`. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. Emits a {Transfer} event."
},
"setApprovalForAll(address,bool)": {
"details": "Approve or remove `operator` as an operator for the caller. Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. Requirements: - The `operator` cannot be the caller. Emits an {ApprovalForAll} event."
},
"supportsInterface(bytes4)": {
"details": "Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] to learn more about how these ids are created. This function call must use less than 30 000 gas."
},
"transferFrom(address,address,uint256)": {
"details": "Transfers `tokenId` token from `from` to `to`. WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. Emits a {Transfer} event."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
".deps/npm/@openzeppelin/contracts@4.3.2/token/ERC721/IERC721.sol": "IERC721"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": []
},
"sources": {
".deps/npm/@openzeppelin/contracts@4.3.2/token/ERC721/IERC721.sol": {
"keccak256": "0xf101e8720213560fab41104d53b3cc7ba0456ef3a98455aa7f022391783144a0",
"license": "MIT",
"urls": [
"bzz-raw://3e7820bcf567e6892d937c3cb10db263a4042e446799bca602535868d822384e",
"dweb:/ipfs/QmPG2oeDjKncqsEeyYGjAN7CwAJmMgHterXGGnpzhha4z7"
]
},
".deps/npm/@openzeppelin/contracts@4.3.2/utils/introspection/IERC165.sol": {
"keccak256": "0xa28007762d9da9db878dd421960c8cb9a10471f47ab5c1b3309bfe48e9e79ff4",
"license": "MIT",
"urls": [
"bzz-raw://796ab6e88af7bf0e78def0f059310c903af6a312b565344e0ff524a0f26e81c6",
"dweb:/ipfs/QmcsVgLgzWdor3UnAztUkXKNGcysm1MPneWksF72AvnwBx"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: balance query for the zero address");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _owners[tokenId];
require(owner != address(0), "ERC721: owner query for nonexistent token");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
require(_exists(tokenId), "ERC721: approved query for nonexistent token");
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
require(operator != _msgSender(), "ERC721: approve to caller");
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_safeTransfer(from, to, tokenId, _data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `_data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _owners[tokenId] != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
require(_exists(tokenId), "ERC721: operator query for nonexistent token");
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, _data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"getApproved(uint256)": "081812fc",
"isApprovedForAll(address,address)": "e985e9c5",
"name()": "06fdde03",
"ownerOf(uint256)": "6352211e",
"safeTransferFrom(address,address,uint256)": "42842e0e",
"safeTransferFrom(address,address,uint256,bytes)": "b88d4fde",
"setApprovalForAll(address,bool)": "a22cb465",
"supportsInterface(bytes4)": "01ffc9a7",
"symbol()": "95d89b41",
"tokenURI(uint256)": "c87b56dd",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"abi": [
{
"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": [
{
"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"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"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": [
{
"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": "ERC721 token with storage based token URI management.",
"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}."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC721-transferFrom}."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
".deps/npm/@openzeppelin/contracts@4.3.2/token/ERC721/extensions/ERC721URIStorage.sol": "ERC721URIStorage"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": []
},
"sources": {
".deps/npm/@openzeppelin/contracts@4.3.2/token/ERC721/ERC721.sol": {
"keccak256": "0x7d2b8ba4b256bfcac347991b75242f9bc37f499c5236af50cf09d0b35943dc0c",
"license": "MIT",
"urls": [
"bzz-raw://d8eeaf6afe00229af4c232ca058bb08b7a24cc3886f0b387159ac49ffd8b5312",
"dweb:/ipfs/QmdnVKmDDWDvdRr6vtrxy3G6WafqA2TAhUZv1UFMsm4B4r"
]
},
".deps/npm/@openzeppelin/contracts@4.3.2/token/ERC721/IERC721.sol": {
"keccak256": "0xf101e8720213560fab41104d53b3cc7ba0456ef3a98455aa7f022391783144a0",
"license": "MIT",
"urls": [
"bzz-raw://3e7820bcf567e6892d937c3cb10db263a4042e446799bca602535868d822384e",
"dweb:/ipfs/QmPG2oeDjKncqsEeyYGjAN7CwAJmMgHterXGGnpzhha4z7"
]
},
".deps/npm/@openzeppelin/contracts@4.3.2/token/ERC721/IERC721Receiver.sol": {
"keccak256": "0xd9517254724276e2e8de3769183c1f738f445f0095c26fd9b86d3c6687e887b9",
"license": "MIT",
"urls": [
"bzz-raw://0e604bcdcd5e5b2fb299ad09769cde6db19d5aa1929d1b5e939234a0f10d7eb8",
"dweb:/ipfs/Qmd8hXE3GZfBHuWx3RNiYgFW2ci7KvHtib8DiwzJ2dgo9V"
]
},
".deps/npm/@openzeppelin/contracts@4.3.2/token/ERC721/extensions/ERC721URIStorage.sol": {
"keccak256": "0x188d038a65a945481cc13fe30db334472dfbed61f7959d4478d05feb6303b1ea",
"license": "MIT",
"urls": [
"bzz-raw://7aec4efa22389811ffa393463569410bbca1ecaa551bc94d69020bc9567e9277",
"dweb:/ipfs/QmPwk5uVSHPQkepebrZSQ9xqgXdPABKqHwJZ2HkzNByLRE"
]
},
".deps/npm/@openzeppelin/contracts@4.3.2/token/ERC721/extensions/IERC721Metadata.sol": {
"keccak256": "0xd32fb7f530a914b1083d10a6bed3a586f2451952fec04fe542bcc670a82f7ba5",
"license": "MIT",
"urls": [
"bzz-raw://af63ab940a34687c45f0ad84960b048fc5f49330c92ccb422db7822a444733b9",
"dweb:/ipfs/QmUShaQEu8HS1GjDnsMJQ8jkZEBrecn6NuDZ3pfjY1gVck"
]
},
".deps/npm/@openzeppelin/contracts@4.3.2/utils/Address.sol": {
"keccak256": "0x3336baae5cf23e94274d75336e2d412193be508504aee185e61dc7d58cd05c8a",
"license": "MIT",
"urls": [
"bzz-raw://39a05eec7083dfa0cc7e0cbfe6cd1bd085a340af1ede93fdff3ad047c5fb3d8e",
"dweb:/ipfs/QmVApz5fCUq2QC8gKTsNNdCmcedJ3ETHp68zR5N3WUKS4r"
]
},
".deps/npm/@openzeppelin/contracts@4.3.2/utils/Context.sol": {
"keccak256": "0x90565a39ae45c80f0468dc96c7b20d0afc3055f344c8203a0c9258239f350b9f",
"license": "MIT",
"urls": [
"bzz-raw://26e8b38a7ac8e7b4463af00cf7fff1bf48ae9875765bf4f7751e100124d0bc8c",
"dweb:/ipfs/QmWcsmkVr24xmmjfnBQZoemFniXjj3vwT78Cz6uqZW1Hux"
]
},
".deps/npm/@openzeppelin/contracts@4.3.2/utils/Strings.sol": {
"keccak256": "0x391d3ba97ab6856a16b225d6ee29617ad15ff00db70f3b4df1ab5ea33aa47c9d",
"license": "MIT",
"urls": [
"bzz-raw://d636ba90bbbeed04a1ea7fe9ec2466757e30fd38ba2ca173636dbf69a518735e",
"dweb:/ipfs/QmQwCB2BHnEuYR22PYt9HkpbgeFDhq4rHmaYqAZbX3WRC7"
]
},
".deps/npm/@openzeppelin/contracts@4.3.2/utils/introspection/ERC165.sol": {
"keccak256": "0x5718c5df9bd67ac68a796961df938821bb5dc0cd4c6118d77e9145afb187409b",
"license": "MIT",
"urls": [
"bzz-raw://d10e1d9b26042424789246603906ad06143bf9a928f4e99de8b5e3bdc662f549",
"dweb:/ipfs/Qmejonoaj5MLekPus229rJQHcC6E9dz2xorjHJR84fMfmn"
]
},
".deps/npm/@openzeppelin/contracts@4.3.2/utils/introspection/IERC165.sol": {
"keccak256": "0xa28007762d9da9db878dd421960c8cb9a10471f47ab5c1b3309bfe48e9e79ff4",
"license": "MIT",
"urls": [
"bzz-raw://796ab6e88af7bf0e78def0f059310c903af6a312b565344e0ff524a0f26e81c6",
"dweb:/ipfs/QmcsVgLgzWdor3UnAztUkXKNGcysm1MPneWksF72AvnwBx"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../ERC721.sol";
import "./IERC721Enumerable.sol";
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;
// Array with all token ids, used for enumeration
uint256[] private _allTokens;
// Mapping from token id to position in the allTokens array
mapping(uint256 => uint256) private _allTokensIndex;
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
return _ownedTokens[owner][index];
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _allTokens.length;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
return _allTokens[index];
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual override {
super._beforeTokenTransfer(from, to, tokenId);
if (from == address(0)) {
_addTokenToAllTokensEnumeration(tokenId);
} else if (from != to) {
_removeTokenFromOwnerEnumeration(from, tokenId);
}
if (to == address(0)) {
_removeTokenFromAllTokensEnumeration(tokenId);
} else if (to != from) {
_addTokenToOwnerEnumeration(to, tokenId);
}
}
/**
* @dev Private function to add a token to this extension's ownership-tracking data structures.
* @param to address representing the new owner of the given token ID
* @param tokenId uint256 ID of the token to be added to the tokens list of the given address
*/
function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
uint256 length = ERC721.balanceOf(to);
_ownedTokens[to][length] = tokenId;
_ownedTokensIndex[tokenId] = length;
}
/**
* @dev Private function to add a token to this extension's token tracking data structures.
* @param tokenId uint256 ID of the token to be added to the tokens list
*/
function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
_allTokensIndex[tokenId] = _allTokens.length;
_allTokens.push(tokenId);
}
/**
* @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
* while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
* gas optimizations e.g. when performing a transfer operation (avoiding double writes).
* This has O(1) time complexity, but alters the order of the _ownedTokens array.
* @param from address representing the previous owner of the given token ID
* @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
*/
function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
// To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
uint256 tokenIndex = _ownedTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary
if (tokenIndex != lastTokenIndex) {
uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];
_ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
}
// This also deletes the contents at the last position of the array
delete _ownedTokensIndex[tokenId];
delete _ownedTokens[from][lastTokenIndex];
}
/**
* @dev Private function to remove a token from this extension's token tracking data structures.
* This has O(1) time complexity, but alters the order of the _allTokens array.
* @param tokenId uint256 ID of the token to be removed from the tokens list
*/
function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
// To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = _allTokens.length - 1;
uint256 tokenIndex = _allTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
// rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
// an 'if' statement (like in _removeTokenFromOwnerEnumeration)
uint256 lastTokenId = _allTokens[lastTokenIndex];
_allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
// This also deletes the contents at the last position of the array
delete _allTokensIndex[tokenId];
_allTokens.pop();
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../ERC721.sol";
/**
* @dev ERC721 token with storage based token URI management.
*/
abstract contract ERC721URIStorage is ERC721 {
using Strings for uint256;
// Optional mapping for token URIs
mapping(uint256 => string) private _tokenURIs;
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token");
string memory _tokenURI = _tokenURIs[tokenId];
string memory base = _baseURI();
// If there is no base URI, return the token URI.
if (bytes(base).length == 0) {
return _tokenURI;
}
// If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
if (bytes(_tokenURI).length > 0) {
return string(abi.encodePacked(base, _tokenURI));
}
return super.tokenURI(tokenId);
}
/**
* @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
_tokenURIs[tokenId] = _tokenURI;
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual override {
super._burn(tokenId);
if (bytes(_tokenURIs[tokenId]).length != 0) {
delete _tokenURIs[tokenId];
}
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev 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.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev 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.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;
import "@openzeppelin/contracts@4.3.2/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts@4.3.2/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts@4.3.2/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts@4.3.2/access/Ownable.sol";
import "@openzeppelin/contracts@4.3.2/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts@4.3.2/interfaces/IERC2981.sol";
/*
* Art by skymagic.eth
*/
contract SkyMagic is ERC721, ERC721Enumerable, ERC721URIStorage, Ownable {
address private _royaltiesReceiver;
uint256 private _royaltiesPercentage;
string private _baseTokenURI;
constructor(address initRoyaltiesReceiver, uint256 initRoyaltiesPercentage, string memory initBaseURI) ERC721("Sky Magic", "SKY") {
_royaltiesReceiver = initRoyaltiesReceiver;
_royaltiesPercentage = initRoyaltiesPercentage;
_baseTokenURI = initBaseURI;
}
function safeMint(address to, uint256 tokenId, string memory _tokenURI) public onlyOwner {
_safeMint(to, tokenId);
_setTokenURI(tokenId, _tokenURI);
}
function _beforeTokenTransfer(address from, address to, uint256 tokenId)
internal
override(ERC721, ERC721Enumerable)
{
super._beforeTokenTransfer(from, to, tokenId);
}
function tokenURI(uint256 tokenId)
public
view
override(ERC721, ERC721URIStorage)
returns (string memory)
{
return super.tokenURI(tokenId);
}
function supportsInterface(bytes4 interfaceId)
public
view
override(ERC721, ERC721Enumerable)
returns (bool)
{
return interfaceId == type(IERC2981).interfaceId ||
super.supportsInterface(interfaceId);
}
function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) {
super._burn(tokenId);
}
function royaltiesReceiver() external view returns(address) {
return _royaltiesReceiver;
}
function setRoyaltiesReceiver(address newRoyaltiesReceiver)
external onlyOwner {
require(newRoyaltiesReceiver != _royaltiesReceiver); // dev: Same address
_royaltiesReceiver = newRoyaltiesReceiver;
}
function royaltiesPercentage() external view returns(uint256) {
return _royaltiesPercentage;
}
function setRoyaltiesPercentage(uint256 newRoyaltiesPercentage)
external onlyOwner {
require(newRoyaltiesPercentage != _royaltiesPercentage);
_royaltiesPercentage = newRoyaltiesPercentage;
}
function royaltyInfo(uint256, uint256 _salePrice) external view
returns (address receiver, uint256 royaltyAmount) {
uint256 _royalties = (_salePrice * _royaltiesPercentage) / 100;
return (_royaltiesReceiver, _royalties);
}
function _baseURI() internal view virtual override returns (string memory) {
return _baseTokenURI;
}
function setBaseURI(string memory baseURI) external onlyOwner {
_baseTokenURI = baseURI;
}
function withdraw() external onlyOwner {
uint256 balance = address(this).balance;
Address.sendValue(payable(owner()), balance);
}
function withdrawERC20(address _tracker, uint256 amount) external onlyOwner {
IERC20(_tracker).transfer(msg.sender, amount);
}
function withdraw721(address _tracker, uint256 id) external onlyOwner {
IERC721(_tracker).transferFrom(address(this), msg.sender, id);
}
function walletOfOwner(address _owner) public view returns (uint256[] memory) {
uint256 tokenCount = balanceOf(_owner);
uint256[] memory tokensId = new uint256[](tokenCount);
for (uint256 i; i < tokenCount; i++) {
tokensId[i] = tokenOfOwnerByIndex(_owner, i);
}
return tokensId;
}
}
This file has been truncated, but you can view the full file.
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_2283": {
"entryPoint": null,
"id": 2283,
"parameterSlots": 3,
"returnSlots": 0
},
"@_23": {
"entryPoint": null,
"id": 23,
"parameterSlots": 0,
"returnSlots": 0
},
"@_266": {
"entryPoint": null,
"id": 266,
"parameterSlots": 2,
"returnSlots": 0
},
"@_msgSender_1986": {
"entryPoint": 242,
"id": 1986,
"parameterSlots": 0,
"returnSlots": 1
},
"@_setOwner_102": {
"entryPoint": 246,
"id": 102,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_tuple_t_addresst_uint256t_string_memory_ptr_fromMemory": {
"entryPoint": 494,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"extract_byte_array_length": {
"entryPoint": 759,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x41": {
"entryPoint": 820,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:1848:17",
"statements": [
{
"nodeType": "YulBlock",
"src": "6:3:17",
"statements": []
},
{
"body": {
"nodeType": "YulBlock",
"src": "139:1190:17",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "185:16:17",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:17",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:17",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:17"
},
"nodeType": "YulFunctionCall",
"src": "187:12:17"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:17"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "160:7:17"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "169:9:17"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "156:3:17"
},
"nodeType": "YulFunctionCall",
"src": "156:23:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "181:2:17",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "152:3:17"
},
"nodeType": "YulFunctionCall",
"src": "152:32:17"
},
"nodeType": "YulIf",
"src": "149:52:17"
},
{
"nodeType": "YulVariableDeclaration",
"src": "210:29:17",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "229:9:17"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "223:5:17"
},
"nodeType": "YulFunctionCall",
"src": "223:16:17"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "214:5:17",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "302:16:17",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "311:1:17",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "314:1:17",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "304:6:17"
},
"nodeType": "YulFunctionCall",
"src": "304:12:17"
},
"nodeType": "YulExpressionStatement",
"src": "304:12:17"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "261:5:17"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "272:5:17"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "287:3:17",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "292:1:17",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "283:3:17"
},
"nodeType": "YulFunctionCall",
"src": "283:11:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "296:1:17",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "279:3:17"
},
"nodeType": "YulFunctionCall",
"src": "279:19:17"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "268:3:17"
},
"nodeType": "YulFunctionCall",
"src": "268:31:17"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "258:2:17"
},
"nodeType": "YulFunctionCall",
"src": "258:42:17"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "251:6:17"
},
"nodeType": "YulFunctionCall",
"src": "251:50:17"
},
"nodeType": "YulIf",
"src": "248:70:17"
},
{
"nodeType": "YulAssignment",
"src": "327:15:17",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "337:5:17"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "327:6:17"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "351:12:17",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "361:2:17",
"type": "",
"value": "32"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "355:2:17",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "372:35:17",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "392:9:17"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "403:2:17"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "388:3:17"
},
"nodeType": "YulFunctionCall",
"src": "388:18:17"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "382:5:17"
},
"nodeType": "YulFunctionCall",
"src": "382:25:17"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "372:6:17"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "416:39:17",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "440:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "451:2:17",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "436:3:17"
},
"nodeType": "YulFunctionCall",
"src": "436:18:17"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "430:5:17"
},
"nodeType": "YulFunctionCall",
"src": "430:25:17"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "420:6:17",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "464:28:17",
"value": {
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "482:2:17",
"type": "",
"value": "64"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "486:1:17",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "478:3:17"
},
"nodeType": "YulFunctionCall",
"src": "478:10:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "490:1:17",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "474:3:17"
},
"nodeType": "YulFunctionCall",
"src": "474:18:17"
},
"variables": [
{
"name": "_2",
"nodeType": "YulTypedName",
"src": "468:2:17",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "519:16:17",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "528:1:17",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "531:1:17",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "521:6:17"
},
"nodeType": "YulFunctionCall",
"src": "521:12:17"
},
"nodeType": "YulExpressionStatement",
"src": "521:12:17"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "507:6:17"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "515:2:17"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "504:2:17"
},
"nodeType": "YulFunctionCall",
"src": "504:14:17"
},
"nodeType": "YulIf",
"src": "501:34:17"
},
{
"nodeType": "YulVariableDeclaration",
"src": "544:32:17",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "558:9:17"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "569:6:17"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "554:3:17"
},
"nodeType": "YulFunctionCall",
"src": "554:22:17"
},
"variables": [
{
"name": "_3",
"nodeType": "YulTypedName",
"src": "548:2:17",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "624:16:17",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "633:1:17",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "636:1:17",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "626:6:17"
},
"nodeType": "YulFunctionCall",
"src": "626:12:17"
},
"nodeType": "YulExpressionStatement",
"src": "626:12:17"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "603:2:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "607:4:17",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "599:3:17"
},
"nodeType": "YulFunctionCall",
"src": "599:13:17"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "614:7:17"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "595:3:17"
},
"nodeType": "YulFunctionCall",
"src": "595:27:17"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "588:6:17"
},
"nodeType": "YulFunctionCall",
"src": "588:35:17"
},
"nodeType": "YulIf",
"src": "585:55:17"
},
{
"nodeType": "YulVariableDeclaration",
"src": "649:19:17",
"value": {
"arguments": [
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "665:2:17"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "659:5:17"
},
"nodeType": "YulFunctionCall",
"src": "659:9:17"
},
"variables": [
{
"name": "_4",
"nodeType": "YulTypedName",
"src": "653:2:17",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "691:22:17",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "693:16:17"
},
"nodeType": "YulFunctionCall",
"src": "693:18:17"
},
"nodeType": "YulExpressionStatement",
"src": "693:18:17"
}
]
},
"condition": {
"arguments": [
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "683:2:17"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "687:2:17"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "680:2:17"
},
"nodeType": "YulFunctionCall",
"src": "680:10:17"
},
"nodeType": "YulIf",
"src": "677:36:17"
},
{
"nodeType": "YulVariableDeclaration",
"src": "722:17:17",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "736:2:17",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "732:3:17"
},
"nodeType": "YulFunctionCall",
"src": "732:7:17"
},
"variables": [
{
"name": "_5",
"nodeType": "YulTypedName",
"src": "726:2:17",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "748:23:17",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "768:2:17",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "762:5:17"
},
"nodeType": "YulFunctionCall",
"src": "762:9:17"
},
"variables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "752:6:17",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "780:71:17",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "802:6:17"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "826:2:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "830:4:17",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "822:3:17"
},
"nodeType": "YulFunctionCall",
"src": "822:13:17"
},
{
"name": "_5",
"nodeType": "YulIdentifier",
"src": "837:2:17"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "818:3:17"
},
"nodeType": "YulFunctionCall",
"src": "818:22:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "842:2:17",
"type": "",
"value": "63"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "814:3:17"
},
"nodeType": "YulFunctionCall",
"src": "814:31:17"
},
{
"name": "_5",
"nodeType": "YulIdentifier",
"src": "847:2:17"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "810:3:17"
},
"nodeType": "YulFunctionCall",
"src": "810:40:17"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "798:3:17"
},
"nodeType": "YulFunctionCall",
"src": "798:53:17"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "784:10:17",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "910:22:17",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "912:16:17"
},
"nodeType": "YulFunctionCall",
"src": "912:18:17"
},
"nodeType": "YulExpressionStatement",
"src": "912:18:17"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "869:10:17"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "881:2:17"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "866:2:17"
},
"nodeType": "YulFunctionCall",
"src": "866:18:17"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "889:10:17"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "901:6:17"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "886:2:17"
},
"nodeType": "YulFunctionCall",
"src": "886:22:17"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "863:2:17"
},
"nodeType": "YulFunctionCall",
"src": "863:46:17"
},
"nodeType": "YulIf",
"src": "860:72:17"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "948:2:17",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "952:10:17"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "941:6:17"
},
"nodeType": "YulFunctionCall",
"src": "941:22:17"
},
"nodeType": "YulExpressionStatement",
"src": "941:22:17"
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "979:6:17"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "987:2:17"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "972:6:17"
},
"nodeType": "YulFunctionCall",
"src": "972:18:17"
},
"nodeType": "YulExpressionStatement",
"src": "972:18:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1036:16:17",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1045:1:17",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1048:1:17",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1038:6:17"
},
"nodeType": "YulFunctionCall",
"src": "1038:12:17"
},
"nodeType": "YulExpressionStatement",
"src": "1038:12:17"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "1013:2:17"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "1017:2:17"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1009:3:17"
},
"nodeType": "YulFunctionCall",
"src": "1009:11:17"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1022:2:17"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1005:3:17"
},
"nodeType": "YulFunctionCall",
"src": "1005:20:17"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1027:7:17"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1002:2:17"
},
"nodeType": "YulFunctionCall",
"src": "1002:33:17"
},
"nodeType": "YulIf",
"src": "999:53:17"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1061:10:17",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1070:1:17",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "1065:1:17",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1126:83:17",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1155:6:17"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1163:1:17"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1151:3:17"
},
"nodeType": "YulFunctionCall",
"src": "1151:14:17"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1167:2:17"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1147:3:17"
},
"nodeType": "YulFunctionCall",
"src": "1147:23:17"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "1186:2:17"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1190:1:17"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1182:3:17"
},
"nodeType": "YulFunctionCall",
"src": "1182:10:17"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1194:2:17"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1178:3:17"
},
"nodeType": "YulFunctionCall",
"src": "1178:19:17"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1172:5:17"
},
"nodeType": "YulFunctionCall",
"src": "1172:26:17"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1140:6:17"
},
"nodeType": "YulFunctionCall",
"src": "1140:59:17"
},
"nodeType": "YulExpressionStatement",
"src": "1140:59:17"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1091:1:17"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "1094:2:17"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1088:2:17"
},
"nodeType": "YulFunctionCall",
"src": "1088:9:17"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "1098:19:17",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1100:15:17",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1109:1:17"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1112:2:17"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1105:3:17"
},
"nodeType": "YulFunctionCall",
"src": "1105:10:17"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1100:1:17"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "1084:3:17",
"statements": []
},
"src": "1080:129:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1239:59:17",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1268:6:17"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "1276:2:17"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1264:3:17"
},
"nodeType": "YulFunctionCall",
"src": "1264:15:17"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1281:2:17"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1260:3:17"
},
"nodeType": "YulFunctionCall",
"src": "1260:24:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1286:1:17",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1253:6:17"
},
"nodeType": "YulFunctionCall",
"src": "1253:35:17"
},
"nodeType": "YulExpressionStatement",
"src": "1253:35:17"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1224:1:17"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "1227:2:17"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1221:2:17"
},
"nodeType": "YulFunctionCall",
"src": "1221:9:17"
},
"nodeType": "YulIf",
"src": "1218:80:17"
},
{
"nodeType": "YulAssignment",
"src": "1307:16:17",
"value": {
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1317:6:17"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1307:6:17"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "89:9:17",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "100:7:17",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "112:6:17",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "120:6:17",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "128:6:17",
"type": ""
}
],
"src": "14:1315:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1389:325:17",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1399:22:17",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1413:1:17",
"type": "",
"value": "1"
},
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "1416:4:17"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "1409:3:17"
},
"nodeType": "YulFunctionCall",
"src": "1409:12:17"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1399:6:17"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1430:38:17",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "1460:4:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1466:1:17",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1456:3:17"
},
"nodeType": "YulFunctionCall",
"src": "1456:12:17"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "1434:18:17",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1507:31:17",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1509:27:17",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1523:6:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1531:4:17",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1519:3:17"
},
"nodeType": "YulFunctionCall",
"src": "1519:17:17"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1509:6:17"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "1487:18:17"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1480:6:17"
},
"nodeType": "YulFunctionCall",
"src": "1480:26:17"
},
"nodeType": "YulIf",
"src": "1477:61:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1597:111:17",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1618:1:17",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1625:3:17",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1630:10:17",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "1621:3:17"
},
"nodeType": "YulFunctionCall",
"src": "1621:20:17"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1611:6:17"
},
"nodeType": "YulFunctionCall",
"src": "1611:31:17"
},
"nodeType": "YulExpressionStatement",
"src": "1611:31:17"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1662:1:17",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1665:4:17",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1655:6:17"
},
"nodeType": "YulFunctionCall",
"src": "1655:15:17"
},
"nodeType": "YulExpressionStatement",
"src": "1655:15:17"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1690:1:17",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1693:4:17",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1683:6:17"
},
"nodeType": "YulFunctionCall",
"src": "1683:15:17"
},
"nodeType": "YulExpressionStatement",
"src": "1683:15:17"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "1553:18:17"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1576:6:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1584:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1573:2:17"
},
"nodeType": "YulFunctionCall",
"src": "1573:14:17"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "1550:2:17"
},
"nodeType": "YulFunctionCall",
"src": "1550:38:17"
},
"nodeType": "YulIf",
"src": "1547:161:17"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "1369:4:17",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1378:6:17",
"type": ""
}
],
"src": "1334:380:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1751:95:17",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1768:1:17",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1775:3:17",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1780:10:17",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "1771:3:17"
},
"nodeType": "YulFunctionCall",
"src": "1771:20:17"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1761:6:17"
},
"nodeType": "YulFunctionCall",
"src": "1761:31:17"
},
"nodeType": "YulExpressionStatement",
"src": "1761:31:17"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1808:1:17",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1811:4:17",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1801:6:17"
},
"nodeType": "YulFunctionCall",
"src": "1801:15:17"
},
"nodeType": "YulExpressionStatement",
"src": "1801:15:17"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1832:1:17",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1835:4:17",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1825:6:17"
},
"nodeType": "YulFunctionCall",
"src": "1825:15:17"
},
"nodeType": "YulExpressionStatement",
"src": "1825:15:17"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "1719:127:17"
}
]
},
"contents": "{\n { }\n function abi_decode_tuple_t_addresst_uint256t_string_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1, value2\n {\n if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n let value := mload(headStart)\n if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n value0 := value\n let _1 := 32\n value1 := mload(add(headStart, _1))\n let offset := mload(add(headStart, 64))\n let _2 := sub(shl(64, 1), 1)\n if gt(offset, _2) { revert(0, 0) }\n let _3 := add(headStart, offset)\n if iszero(slt(add(_3, 0x1f), dataEnd)) { revert(0, 0) }\n let _4 := mload(_3)\n if gt(_4, _2) { panic_error_0x41() }\n let _5 := not(31)\n let memPtr := mload(64)\n let newFreePtr := add(memPtr, and(add(and(add(_4, 0x1f), _5), 63), _5))\n if or(gt(newFreePtr, _2), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n mstore(memPtr, _4)\n if gt(add(add(_3, _4), _1), dataEnd) { revert(0, 0) }\n let i := 0\n for { } lt(i, _4) { i := add(i, _1) }\n {\n mstore(add(add(memPtr, i), _1), mload(add(add(_3, i), _1)))\n }\n if gt(i, _4)\n {\n mstore(add(add(memPtr, _4), _1), 0)\n }\n value2 := memPtr\n }\n function extract_byte_array_length(data) -> length\n {\n length := shr(1, data)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n if eq(outOfPlaceEncoding, lt(length, 32))\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n }\n function panic_error_0x41()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n}",
"id": 17,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b506040516200273e3803806200273e8339810160408190526200003491620001ee565b6040805180820182526009815268536b79204d6167696360b81b602080830191825283518085019094526003845262534b5960e81b908401528151919291620000809160009162000148565b5080516200009690600190602084019062000148565b505050620000b3620000ad620000f260201b60201c565b620000f6565b600c80546001600160a01b0319166001600160a01b038516179055600d8290558051620000e890600e90602084019062000148565b505050506200034a565b3390565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015690620002f7565b90600052602060002090601f0160209004810192826200017a5760008555620001c5565b82601f106200019557805160ff1916838001178555620001c5565b82800160010185558215620001c5579182015b82811115620001c5578251825591602001919060010190620001a8565b50620001d3929150620001d7565b5090565b5b80821115620001d35760008155600101620001d8565b6000806000606084860312156200020457600080fd5b83516001600160a01b03811681146200021c57600080fd5b60208581015160408701519295509350906001600160401b03808211156200024357600080fd5b818701915087601f8301126200025857600080fd5b8151818111156200026d576200026d62000334565b604051601f8201601f19908116603f0116810190838211818310171562000298576200029862000334565b816040528281528a86848701011115620002b157600080fd5b600093505b82841015620002d55784840186015181850187015292850192620002b6565b82841115620002e75760008684830101525b8096505050505050509250925092565b600181811c908216806200030c57607f821691505b602082108114156200032e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6123e4806200035a6000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c8063715018a611610104578063b5143715116100a2578063cd279c7c11610071578063cd279c7c146103f9578063e985e9c51461040c578063f07a380e14610448578063f2fde38b1461045b57600080fd5b8063b5143715146103b8578063b88d4fde146103cb578063c87b56dd146103de578063cafa8dfe146103f157600080fd5b806395d89b41116100de57806395d89b4114610379578063a1db978214610381578063a22cb46514610394578063a3a51bd5146103a757600080fd5b8063715018a61461034d5780638da5cb5b146103555780639466d2061461036657600080fd5b80632f745c591161017c5780634f6ccce71161014b5780634f6ccce71461030157806355f804b3146103145780636352211e1461032757806370a082311461033a57600080fd5b80632f745c59146102b35780633ccfd60b146102c657806342842e0e146102ce578063438b6300146102e157600080fd5b8063095ea7b3116101b8578063095ea7b31461024757806318160ddd1461025c57806323b872dd1461026e5780632a55205a1461028157600080fd5b806301ffc9a7146101df57806306fdde0314610207578063081812fc1461021c575b600080fd5b6101f26101ed366004611fb3565b61046e565b60405190151581526020015b60405180910390f35b61020f610499565b6040516101fe9190612139565b61022f61022a366004612022565b61052b565b6040516001600160a01b0390911681526020016101fe565b61025a610255366004611f15565b6105b8565b005b6008545b6040519081526020016101fe565b61025a61027c366004611e26565b6106ce565b61029461028f36600461203b565b6106ff565b604080516001600160a01b0390931683526020830191909152016101fe565b6102606102c1366004611f15565b610735565b61025a6107cb565b61025a6102dc366004611e26565b610814565b6102f46102ef366004611dd8565b61082f565b6040516101fe91906120f5565b61026061030f366004612022565b6108d1565b61025a610322366004611fed565b610964565b61022f610335366004612022565b6109a5565b610260610348366004611dd8565b610a1c565b61025a610aa3565b600b546001600160a01b031661022f565b61025a610374366004612022565b610ad9565b61020f610b17565b61025a61038f366004611f15565b610b26565b61025a6103a2366004611ede565b610bd0565b600c546001600160a01b031661022f565b61025a6103c6366004611dd8565b610c95565b61025a6103d9366004611e62565b610cfc565b61020f6103ec366004612022565b610d34565b600d54610260565b61025a610407366004611f3f565b610d3f565b6101f261041a366004611df3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61025a610456366004611f15565b610d7d565b61025a610469366004611dd8565b610e11565b60006001600160e01b0319821663152a902d60e11b1480610493575061049382610ea9565b92915050565b6060600080546104a8906122b2565b80601f01602080910402602001604051908101604052809291908181526020018280546104d4906122b2565b80156105215780601f106104f657610100808354040283529160200191610521565b820191906000526020600020905b81548152906001019060200180831161050457829003601f168201915b5050505050905090565b600061053682610ece565b61059c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105c3826109a5565b9050806001600160a01b0316836001600160a01b031614156106315760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610593565b336001600160a01b038216148061064d575061064d813361041a565b6106bf5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610593565b6106c98383610eeb565b505050565b6106d83382610f59565b6106f45760405162461bcd60e51b8152600401610593906121d3565b6106c9838383611043565b60008060006064600d54856107149190612250565b61071e919061223c565b600c546001600160a01b0316969095509350505050565b600061074083610a1c565b82106107a25760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610593565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b031633146107f55760405162461bcd60e51b81526004016105939061219e565b4761081161080b600b546001600160a01b031690565b826111ee565b50565b6106c983838360405180602001604052806000815250610cfc565b6060600061083c83610a1c565b905060008167ffffffffffffffff81111561085957610859612374565b604051908082528060200260200182016040528015610882578160200160208202803683370190505b50905060005b828110156108c95761089a8582610735565b8282815181106108ac576108ac61235e565b6020908102919091010152806108c1816122ed565b915050610888565b509392505050565b60006108dc60085490565b821061093f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610593565b600882815481106109525761095261235e565b90600052602060002001549050919050565b600b546001600160a01b0316331461098e5760405162461bcd60e51b81526004016105939061219e565b80516109a190600e906020840190611c8d565b5050565b6000818152600260205260408120546001600160a01b0316806104935760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610593565b60006001600160a01b038216610a875760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610593565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314610acd5760405162461bcd60e51b81526004016105939061219e565b610ad76000611307565b565b600b546001600160a01b03163314610b035760405162461bcd60e51b81526004016105939061219e565b600d54811415610b1257600080fd5b600d55565b6060600180546104a8906122b2565b600b546001600160a01b03163314610b505760405162461bcd60e51b81526004016105939061219e565b60405163a9059cbb60e01b8152336004820152602481018290526001600160a01b0383169063a9059cbb90604401602060405180830381600087803b158015610b9857600080fd5b505af1158015610bac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106c99190611f96565b6001600160a01b038216331415610c295760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610593565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b546001600160a01b03163314610cbf5760405162461bcd60e51b81526004016105939061219e565b600c546001600160a01b0382811691161415610cda57600080fd5b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b610d063383610f59565b610d225760405162461bcd60e51b8152600401610593906121d3565b610d2e84848484611359565b50505050565b60606104938261138c565b600b546001600160a01b03163314610d695760405162461bcd60e51b81526004016105939061219e565b610d7383836114ee565b6106c98282611508565b600b546001600160a01b03163314610da75760405162461bcd60e51b81526004016105939061219e565b6040516323b872dd60e01b8152306004820152336024820152604481018290526001600160a01b038316906323b872dd90606401600060405180830381600087803b158015610df557600080fd5b505af1158015610e09573d6000803e3d6000fd5b505050505050565b600b546001600160a01b03163314610e3b5760405162461bcd60e51b81526004016105939061219e565b6001600160a01b038116610ea05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610593565b61081181611307565b60006001600160e01b0319821663780e9d6360e01b1480610493575061049382611593565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f20826109a5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610f6482610ece565b610fc55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610593565b6000610fd0836109a5565b9050806001600160a01b0316846001600160a01b0316148061100b5750836001600160a01b03166110008461052b565b6001600160a01b0316145b8061103b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611056826109a5565b6001600160a01b0316146110be5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610593565b6001600160a01b0382166111205760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610593565b61112b8383836115e3565b611136600082610eeb565b6001600160a01b038316600090815260036020526040812080546001929061115f90849061226f565b90915550506001600160a01b038216600090815260036020526040812080546001929061118d908490612224565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b8047101561123e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610593565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461128b576040519150601f19603f3d011682016040523d82523d6000602084013e611290565b606091505b50509050806106c95760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610593565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611364848484611043565b611370848484846115ee565b610d2e5760405162461bcd60e51b81526004016105939061214c565b606061139782610ece565b6113fd5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610593565b6000828152600a602052604081208054611416906122b2565b80601f0160208091040260200160405190810160405280929190818152602001828054611442906122b2565b801561148f5780601f106114645761010080835404028352916020019161148f565b820191906000526020600020905b81548152906001019060200180831161147257829003601f168201915b5050505050905060006114a06116fb565b90508051600014156114b3575092915050565b8151156114e55780826040516020016114cd929190612089565b60405160208183030381529060405292505050919050565b61103b8461170a565b6109a18282604051806020016040528060008152506117d5565b61151182610ece565b6115745760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610593565b6000828152600a6020908152604090912082516106c992840190611c8d565b60006001600160e01b031982166380ac58cd60e01b14806115c457506001600160e01b03198216635b5e139f60e01b145b8061049357506301ffc9a760e01b6001600160e01b0319831614610493565b6106c9838383611808565b60006001600160a01b0384163b156116f057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906116329033908990889088906004016120b8565b602060405180830381600087803b15801561164c57600080fd5b505af192505050801561167c575060408051601f3d908101601f1916820190925261167991810190611fd0565b60015b6116d6573d8080156116aa576040519150601f19603f3d011682016040523d82523d6000602084013e6116af565b606091505b5080516116ce5760405162461bcd60e51b81526004016105939061214c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061103b565b506001949350505050565b6060600e80546104a8906122b2565b606061171582610ece565b6117795760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610593565b60006117836116fb565b905060008151116117a357604051806020016040528060008152506117ce565b806117ad846118c0565b6040516020016117be929190612089565b6040516020818303038152906040525b9392505050565b6117df83836119be565b6117ec60008484846115ee565b6106c95760405162461bcd60e51b81526004016105939061214c565b6001600160a01b0383166118635761185e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611886565b816001600160a01b0316836001600160a01b031614611886576118868382611afd565b6001600160a01b03821661189d576106c981611b9a565b826001600160a01b0316826001600160a01b0316146106c9576106c98282611c49565b6060816118e45750506040805180820190915260018152600360fc1b602082015290565b8160005b811561190e57806118f8816122ed565b91506119079050600a8361223c565b91506118e8565b60008167ffffffffffffffff81111561192957611929612374565b6040519080825280601f01601f191660200182016040528015611953576020820181803683370190505b5090505b841561103b5761196860018361226f565b9150611975600a86612308565b611980906030612224565b60f81b8183815181106119955761199561235e565b60200101906001600160f81b031916908160001a9053506119b7600a8661223c565b9450611957565b6001600160a01b038216611a145760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610593565b611a1d81610ece565b15611a6a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610593565b611a76600083836115e3565b6001600160a01b0382166000908152600360205260408120805460019290611a9f908490612224565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611b0a84610a1c565b611b14919061226f565b600083815260076020526040902054909150808214611b67576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611bac9060019061226f565b60008381526009602052604081205460088054939450909284908110611bd457611bd461235e565b906000526020600020015490508060088381548110611bf557611bf561235e565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611c2d57611c2d612348565b6001900381819060005260206000200160009055905550505050565b6000611c5483610a1c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611c99906122b2565b90600052602060002090601f016020900481019282611cbb5760008555611d01565b82601f10611cd457805160ff1916838001178555611d01565b82800160010185558215611d01579182015b82811115611d01578251825591602001919060010190611ce6565b50611d0d929150611d11565b5090565b5b80821115611d0d5760008155600101611d12565b600067ffffffffffffffff80841115611d4157611d41612374565b604051601f8501601f19908116603f01168101908282118183101715611d6957611d69612374565b81604052809350858152868686011115611d8257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611db357600080fd5b919050565b600082601f830112611dc957600080fd5b6117ce83833560208501611d26565b600060208284031215611dea57600080fd5b6117ce82611d9c565b60008060408385031215611e0657600080fd5b611e0f83611d9c565b9150611e1d60208401611d9c565b90509250929050565b600080600060608486031215611e3b57600080fd5b611e4484611d9c565b9250611e5260208501611d9c565b9150604084013590509250925092565b60008060008060808587031215611e7857600080fd5b611e8185611d9c565b9350611e8f60208601611d9c565b925060408501359150606085013567ffffffffffffffff811115611eb257600080fd5b8501601f81018713611ec357600080fd5b611ed287823560208401611d26565b91505092959194509250565b60008060408385031215611ef157600080fd5b611efa83611d9c565b91506020830135611f0a8161238a565b809150509250929050565b60008060408385031215611f2857600080fd5b611f3183611d9c565b946020939093013593505050565b600080600060608486031215611f5457600080fd5b611f5d84611d9c565b925060208401359150604084013567ffffffffffffffff811115611f8057600080fd5b611f8c86828701611db8565b9150509250925092565b600060208284031215611fa857600080fd5b81516117ce8161238a565b600060208284031215611fc557600080fd5b81356117ce81612398565b600060208284031215611fe257600080fd5b81516117ce81612398565b600060208284031215611fff57600080fd5b813567ffffffffffffffff81111561201657600080fd5b61103b84828501611db8565b60006020828403121561203457600080fd5b5035919050565b6000806040838503121561204e57600080fd5b50508035926020909101359150565b60008151808452612075816020860160208601612286565b601f01601f19169290920160200192915050565b6000835161209b818460208801612286565b8351908301906120af818360208801612286565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120eb9083018461205d565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561212d57835183529284019291840191600101612111565b50909695505050505050565b6020815260006117ce602083018461205d565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156122375761223761231c565b500190565b60008261224b5761224b612332565b500490565b600081600019048311821515161561226a5761226a61231c565b500290565b6000828210156122815761228161231c565b500390565b60005b838110156122a1578181015183820152602001612289565b83811115610d2e5750506000910152565b600181811c908216806122c657607f821691505b602082108114156122e757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123015761230161231c565b5060010190565b60008261231757612317612332565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b801515811461081157600080fd5b6001600160e01b03198116811461081157600080fdfea26469706673582212202728dbb711c7070bf554efc32e9fd54c1fa95bd09b09a20208adfec2cb0b5e3264736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x273E CODESIZE SUB DUP1 PUSH3 0x273E DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x1EE JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD DUP3 MSTORE PUSH1 0x9 DUP2 MSTORE PUSH9 0x536B79204D61676963 PUSH1 0xB8 SHL PUSH1 0x20 DUP1 DUP4 ADD SWAP2 DUP3 MSTORE DUP4 MLOAD DUP1 DUP6 ADD SWAP1 SWAP5 MSTORE PUSH1 0x3 DUP5 MSTORE PUSH3 0x534B59 PUSH1 0xE8 SHL SWAP1 DUP5 ADD MSTORE DUP2 MLOAD SWAP2 SWAP3 SWAP2 PUSH3 0x80 SWAP2 PUSH1 0x0 SWAP2 PUSH3 0x148 JUMP JUMPDEST POP DUP1 MLOAD PUSH3 0x96 SWAP1 PUSH1 0x1 SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH3 0x148 JUMP JUMPDEST POP POP POP PUSH3 0xB3 PUSH3 0xAD PUSH3 0xF2 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0xF6 JUMP JUMPDEST PUSH1 0xC DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND OR SWAP1 SSTORE PUSH1 0xD DUP3 SWAP1 SSTORE DUP1 MLOAD PUSH3 0xE8 SWAP1 PUSH1 0xE SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH3 0x148 JUMP JUMPDEST POP POP POP POP PUSH3 0x34A JUMP JUMPDEST CALLER SWAP1 JUMP JUMPDEST PUSH1 0xB DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR SWAP1 SWAP4 SSTORE PUSH1 0x40 MLOAD SWAP2 AND SWAP2 SWAP1 DUP3 SWAP1 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP1 PUSH1 0x0 SWAP1 LOG3 POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x156 SWAP1 PUSH3 0x2F7 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x17A JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x1C5 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x195 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x1C5 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x1C5 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x1C5 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x1A8 JUMP JUMPDEST POP PUSH3 0x1D3 SWAP3 SWAP2 POP PUSH3 0x1D7 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x1D3 JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0x1D8 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH3 0x204 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH3 0x21C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP6 DUP2 ADD MLOAD PUSH1 0x40 DUP8 ADD MLOAD SWAP3 SWAP6 POP SWAP4 POP SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x243 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP8 ADD SWAP2 POP DUP8 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x258 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP2 DUP2 GT ISZERO PUSH3 0x26D JUMPI PUSH3 0x26D PUSH3 0x334 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP4 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH3 0x298 JUMPI PUSH3 0x298 PUSH3 0x334 JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP3 DUP2 MSTORE DUP11 DUP7 DUP5 DUP8 ADD ADD GT ISZERO PUSH3 0x2B1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP4 POP JUMPDEST DUP3 DUP5 LT ISZERO PUSH3 0x2D5 JUMPI DUP5 DUP5 ADD DUP7 ADD MLOAD DUP2 DUP6 ADD DUP8 ADD MSTORE SWAP3 DUP6 ADD SWAP3 PUSH3 0x2B6 JUMP JUMPDEST DUP3 DUP5 GT ISZERO PUSH3 0x2E7 JUMPI PUSH1 0x0 DUP7 DUP5 DUP4 ADD ADD MSTORE JUMPDEST DUP1 SWAP7 POP POP POP POP POP POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH3 0x30C JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x32E JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x23E4 DUP1 PUSH3 0x35A 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 0x1DA JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 GT PUSH2 0x104 JUMPI DUP1 PUSH4 0xB5143715 GT PUSH2 0xA2 JUMPI DUP1 PUSH4 0xCD279C7C GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xCD279C7C EQ PUSH2 0x3F9 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x40C JUMPI DUP1 PUSH4 0xF07A380E EQ PUSH2 0x448 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x45B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xB5143715 EQ PUSH2 0x3B8 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x3CB JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x3DE JUMPI DUP1 PUSH4 0xCAFA8DFE EQ PUSH2 0x3F1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x95D89B41 GT PUSH2 0xDE JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x379 JUMPI DUP1 PUSH4 0xA1DB9782 EQ PUSH2 0x381 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x394 JUMPI DUP1 PUSH4 0xA3A51BD5 EQ PUSH2 0x3A7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x715018A6 EQ PUSH2 0x34D JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x355 JUMPI DUP1 PUSH4 0x9466D206 EQ PUSH2 0x366 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x2F745C59 GT PUSH2 0x17C JUMPI DUP1 PUSH4 0x4F6CCCE7 GT PUSH2 0x14B JUMPI DUP1 PUSH4 0x4F6CCCE7 EQ PUSH2 0x301 JUMPI DUP1 PUSH4 0x55F804B3 EQ PUSH2 0x314 JUMPI DUP1 PUSH4 0x6352211E EQ PUSH2 0x327 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x33A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x2F745C59 EQ PUSH2 0x2B3 JUMPI DUP1 PUSH4 0x3CCFD60B EQ PUSH2 0x2C6 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x2CE JUMPI DUP1 PUSH4 0x438B6300 EQ PUSH2 0x2E1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x95EA7B3 GT PUSH2 0x1B8 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x247 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x25C JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x26E JUMPI DUP1 PUSH4 0x2A55205A EQ PUSH2 0x281 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x1DF JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x207 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x21C JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1F2 PUSH2 0x1ED CALLDATASIZE PUSH1 0x4 PUSH2 0x1FB3 JUMP JUMPDEST PUSH2 0x46E JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x20F PUSH2 0x499 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1FE SWAP2 SWAP1 PUSH2 0x2139 JUMP JUMPDEST PUSH2 0x22F PUSH2 0x22A CALLDATASIZE PUSH1 0x4 PUSH2 0x2022 JUMP JUMPDEST PUSH2 0x52B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1FE JUMP JUMPDEST PUSH2 0x25A PUSH2 0x255 CALLDATASIZE PUSH1 0x4 PUSH2 0x1F15 JUMP JUMPDEST PUSH2 0x5B8 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x8 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1FE JUMP JUMPDEST PUSH2 0x25A PUSH2 0x27C CALLDATASIZE PUSH1 0x4 PUSH2 0x1E26 JUMP JUMPDEST PUSH2 0x6CE JUMP JUMPDEST PUSH2 0x294 PUSH2 0x28F CALLDATASIZE PUSH1 0x4 PUSH2 0x203B JUMP JUMPDEST PUSH2 0x6FF JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP4 AND DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE ADD PUSH2 0x1FE JUMP JUMPDEST PUSH2 0x260 PUSH2 0x2C1 CALLDATASIZE PUSH1 0x4 PUSH2 0x1F15 JUMP JUMPDEST PUSH2 0x735 JUMP JUMPDEST PUSH2 0x25A PUSH2 0x7CB JUMP JUMPDEST PUSH2 0x25A PUSH2 0x2DC CALLDATASIZE PUSH1 0x4 PUSH2 0x1E26 JUMP JUMPDEST PUSH2 0x814 JUMP JUMPDEST PUSH2 0x2F4 PUSH2 0x2EF CALLDATASIZE PUSH1 0x4 PUSH2 0x1DD8 JUMP JUMPDEST PUSH2 0x82F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1FE SWAP2 SWAP1 PUSH2 0x20F5 JUMP JUMPDEST PUSH2 0x260 PUSH2 0x30F CALLDATASIZE PUSH1 0x4 PUSH2 0x2022 JUMP JUMPDEST PUSH2 0x8D1 JUMP JUMPDEST PUSH2 0x25A PUSH2 0x322 CALLDATASIZE PUSH1 0x4 PUSH2 0x1FED JUMP JUMPDEST PUSH2 0x964 JUMP JUMPDEST PUSH2 0x22F PUSH2 0x335 CALLDATASIZE PUSH1 0x4 PUSH2 0x2022 JUMP JUMPDEST PUSH2 0x9A5 JUMP JUMPDEST PUSH2 0x260 PUSH2 0x348 CALLDATASIZE PUSH1 0x4 PUSH2 0x1DD8 JUMP JUMPDEST PUSH2 0xA1C JUMP JUMPDEST PUSH2 0x25A PUSH2 0xAA3 JUMP JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x22F JUMP JUMPDEST PUSH2 0x25A PUSH2 0x374 CALLDATASIZE PUSH1 0x4 PUSH2 0x2022 JUMP JUMPDEST PUSH2 0xAD9 JUMP JUMPDEST PUSH2 0x20F PUSH2 0xB17 JUMP JUMPDEST PUSH2 0x25A PUSH2 0x38F CALLDATASIZE PUSH1 0x4 PUSH2 0x1F15 JUMP JUMPDEST PUSH2 0xB26 JUMP JUMPDEST PUSH2 0x25A PUSH2 0x3A2 CALLDATASIZE PUSH1 0x4 PUSH2 0x1EDE JUMP JUMPDEST PUSH2 0xBD0 JUMP JUMPDEST PUSH1 0xC SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x22F JUMP JUMPDEST PUSH2 0x25A PUSH2 0x3C6 CALLDATASIZE PUSH1 0x4 PUSH2 0x1DD8 JUMP JUMPDEST PUSH2 0xC95 JUMP JUMPDEST PUSH2 0x25A PUSH2 0x3D9 CALLDATASIZE PUSH1 0x4 PUSH2 0x1E62 JUMP JUMPDEST PUSH2 0xCFC JUMP JUMPDEST PUSH2 0x20F PUSH2 0x3EC CALLDATASIZE PUSH1 0x4 PUSH2 0x2022 JUMP JUMPDEST PUSH2 0xD34 JUMP JUMPDEST PUSH1 0xD SLOAD PUSH2 0x260 JUMP JUMPDEST PUSH2 0x25A PUSH2 0x407 CALLDATASIZE PUSH1 0x4 PUSH2 0x1F3F JUMP JUMPDEST PUSH2 0xD3F JUMP JUMPDEST PUSH2 0x1F2 PUSH2 0x41A CALLDATASIZE PUSH1 0x4 PUSH2 0x1DF3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH2 0x25A PUSH2 0x456 CALLDATASIZE PUSH1 0x4 PUSH2 0x1F15 JUMP JUMPDEST PUSH2 0xD7D JUMP JUMPDEST PUSH2 0x25A PUSH2 0x469 CALLDATASIZE PUSH1 0x4 PUSH2 0x1DD8 JUMP JUMPDEST PUSH2 0xE11 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x152A902D PUSH1 0xE1 SHL EQ DUP1 PUSH2 0x493 JUMPI POP PUSH2 0x493 DUP3 PUSH2 0xEA9 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x4A8 SWAP1 PUSH2 0x22B2 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 0x4D4 SWAP1 PUSH2 0x22B2 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x521 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x4F6 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x521 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 0x504 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x536 DUP3 PUSH2 0xECE JUMP JUMPDEST PUSH2 0x59C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76656420717565727920666F72206E6F6E6578 PUSH1 0x44 DUP3 ADD MSTORE PUSH12 0x34B9BA32B73A103A37B5B2B7 PUSH1 0xA1 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5C3 DUP3 PUSH2 0x9A5 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x631 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x39 PUSH1 0xF9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x593 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND EQ DUP1 PUSH2 0x64D JUMPI POP PUSH2 0x64D DUP2 CALLER PUSH2 0x41A JUMP JUMPDEST PUSH2 0x6BF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x38 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F74206F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6E6572206E6F7220617070726F76656420666F7220616C6C0000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x593 JUMP JUMPDEST PUSH2 0x6C9 DUP4 DUP4 PUSH2 0xEEB JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x6D8 CALLER DUP3 PUSH2 0xF59 JUMP JUMPDEST PUSH2 0x6F4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x593 SWAP1 PUSH2 0x21D3 JUMP JUMPDEST PUSH2 0x6C9 DUP4 DUP4 DUP4 PUSH2 0x1043 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x64 PUSH1 0xD SLOAD DUP6 PUSH2 0x714 SWAP2 SWAP1 PUSH2 0x2250 JUMP JUMPDEST PUSH2 0x71E SWAP2 SWAP1 PUSH2 0x223C JUMP JUMPDEST PUSH1 0xC SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP7 SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x740 DUP4 PUSH2 0xA1C JUMP JUMPDEST DUP3 LT PUSH2 0x7A2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243373231456E756D657261626C653A206F776E657220696E646578206F75 PUSH1 0x44 DUP3 ADD MSTORE PUSH11 0x74206F6620626F756E6473 PUSH1 0xA8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x593 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x7F5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x593 SWAP1 PUSH2 0x219E JUMP JUMPDEST SELFBALANCE PUSH2 0x811 PUSH2 0x80B PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST DUP3 PUSH2 0x11EE JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x6C9 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0xCFC JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0x83C DUP4 PUSH2 0xA1C JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x859 JUMPI PUSH2 0x859 PUSH2 0x2374 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x882 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x8C9 JUMPI PUSH2 0x89A DUP6 DUP3 PUSH2 0x735 JUMP JUMPDEST DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x8AC JUMPI PUSH2 0x8AC PUSH2 0x235E JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0x8C1 DUP2 PUSH2 0x22ED JUMP JUMPDEST SWAP2 POP POP PUSH2 0x888 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8DC PUSH1 0x8 SLOAD SWAP1 JUMP JUMPDEST DUP3 LT PUSH2 0x93F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243373231456E756D657261626C653A20676C6F62616C20696E646578206F PUSH1 0x44 DUP3 ADD MSTORE PUSH12 0x7574206F6620626F756E6473 PUSH1 0xA0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x593 JUMP JUMPDEST PUSH1 0x8 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x952 JUMPI PUSH2 0x952 PUSH2 0x235E JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x98E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x593 SWAP1 PUSH2 0x219E JUMP JUMPDEST DUP1 MLOAD PUSH2 0x9A1 SWAP1 PUSH1 0xE SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH2 0x1C8D JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP1 PUSH2 0x493 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A206F776E657220717565727920666F72206E6F6E6578697374 PUSH1 0x44 DUP3 ADD MSTORE PUSH9 0x32B73A103A37B5B2B7 PUSH1 0xB9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x593 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xA87 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A2062616C616E636520717565727920666F7220746865207A65 PUSH1 0x44 DUP3 ADD MSTORE PUSH10 0x726F2061646472657373 PUSH1 0xB0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x593 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xACD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x593 SWAP1 PUSH2 0x219E JUMP JUMPDEST PUSH2 0xAD7 PUSH1 0x0 PUSH2 0x1307 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xB03 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x593 SWAP1 PUSH2 0x219E JUMP JUMPDEST PUSH1 0xD SLOAD DUP2 EQ ISZERO PUSH2 0xB12 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0xD SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x4A8 SWAP1 PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xB50 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x593 SWAP1 PUSH2 0x219E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xA9059CBB PUSH1 0xE0 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0xA9059CBB SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xB98 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xBAC JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x6C9 SWAP2 SWAP1 PUSH2 0x1F96 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND CALLER EQ ISZERO PUSH2 0xC29 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x19 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x593 JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP1 DUP6 MSTORE SWAP1 DUP4 MSTORE SWAP3 DUP2 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND DUP7 ISZERO ISZERO SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP1 MLOAD SWAP1 DUP2 MSTORE SWAP2 SWAP3 SWAP2 PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xCBF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x593 SWAP1 PUSH2 0x219E JUMP JUMPDEST PUSH1 0xC SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND SWAP2 AND EQ ISZERO PUSH2 0xCDA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0xC DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH2 0xD06 CALLER DUP4 PUSH2 0xF59 JUMP JUMPDEST PUSH2 0xD22 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x593 SWAP1 PUSH2 0x21D3 JUMP JUMPDEST PUSH2 0xD2E DUP5 DUP5 DUP5 DUP5 PUSH2 0x1359 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x493 DUP3 PUSH2 0x138C JUMP JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xD69 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x593 SWAP1 PUSH2 0x219E JUMP JUMPDEST PUSH2 0xD73 DUP4 DUP4 PUSH2 0x14EE JUMP JUMPDEST PUSH2 0x6C9 DUP3 DUP3 PUSH2 0x1508 JUMP JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xDA7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x593 SWAP1 PUSH2 0x219E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x23B872DD PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE CALLER PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0x23B872DD SWAP1 PUSH1 0x64 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xDF5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xE09 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xE3B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x593 SWAP1 PUSH2 0x219E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xEA0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x44 DUP3 ADD MSTORE PUSH6 0x646472657373 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x593 JUMP JUMPDEST PUSH2 0x811 DUP2 PUSH2 0x1307 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x780E9D63 PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x493 JUMPI POP PUSH2 0x493 DUP3 PUSH2 0x1593 JUMP JUMPDEST PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO ISZERO SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE DUP2 SWAP1 PUSH2 0xF20 DUP3 PUSH2 0x9A5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF64 DUP3 PUSH2 0xECE JUMP JUMPDEST PUSH2 0xFC5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A206F70657261746F7220717565727920666F72206E6F6E6578 PUSH1 0x44 DUP3 ADD MSTORE PUSH12 0x34B9BA32B73A103A37B5B2B7 PUSH1 0xA1 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x593 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xFD0 DUP4 PUSH2 0x9A5 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x100B JUMPI POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1000 DUP5 PUSH2 0x52B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST DUP1 PUSH2 0x103B JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP9 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1056 DUP3 PUSH2 0x9A5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x10BE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E73666572206F6620746F6B656E20746861742069 PUSH1 0x44 DUP3 ADD MSTORE PUSH9 0x39903737BA1037BBB7 PUSH1 0xB9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x593 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1120 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E7366657220746F20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH4 0x72657373 PUSH1 0xE0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x593 JUMP JUMPDEST PUSH2 0x112B DUP4 DUP4 DUP4 PUSH2 0x15E3 JUMP JUMPDEST PUSH2 0x1136 PUSH1 0x0 DUP3 PUSH2 0xEEB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0x115F SWAP1 DUP5 SWAP1 PUSH2 0x226F JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0x118D SWAP1 DUP5 SWAP1 PUSH2 0x2224 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE SWAP2 MLOAD DUP5 SWAP4 SWAP2 DUP8 AND SWAP2 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 LOG4 POP POP POP JUMP JUMPDEST DUP1 SELFBALANCE LT ISZERO PUSH2 0x123E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A20696E73756666696369656E742062616C616E6365000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x593 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x128B 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 0x1290 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0x6C9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x3A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A20756E61626C6520746F2073656E642076616C75652C2072 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6563697069656E74206D61792068617665207265766572746564000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x593 JUMP JUMPDEST PUSH1 0xB DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR SWAP1 SWAP4 SSTORE PUSH1 0x40 MLOAD SWAP2 AND SWAP2 SWAP1 DUP3 SWAP1 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP1 PUSH1 0x0 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0x1364 DUP5 DUP5 DUP5 PUSH2 0x1043 JUMP JUMPDEST PUSH2 0x1370 DUP5 DUP5 DUP5 DUP5 PUSH2 0x15EE JUMP JUMPDEST PUSH2 0xD2E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x593 SWAP1 PUSH2 0x214C JUMP JUMPDEST PUSH1 0x60 PUSH2 0x1397 DUP3 PUSH2 0xECE JUMP JUMPDEST PUSH2 0x13FD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x31 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524337323155524953746F726167653A2055524920717565727920666F7220 PUSH1 0x44 DUP3 ADD MSTORE PUSH17 0x3737B732BC34B9BA32B73A103A37B5B2B7 PUSH1 0x79 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x593 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0xA PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH2 0x1416 SWAP1 PUSH2 0x22B2 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 0x1442 SWAP1 PUSH2 0x22B2 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x148F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1464 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x148F 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 0x1472 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP PUSH1 0x0 PUSH2 0x14A0 PUSH2 0x16FB JUMP JUMPDEST SWAP1 POP DUP1 MLOAD PUSH1 0x0 EQ ISZERO PUSH2 0x14B3 JUMPI POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP2 MLOAD ISZERO PUSH2 0x14E5 JUMPI DUP1 DUP3 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x14CD SWAP3 SWAP2 SWAP1 PUSH2 0x2089 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP3 POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x103B DUP5 PUSH2 0x170A JUMP JUMPDEST PUSH2 0x9A1 DUP3 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x17D5 JUMP JUMPDEST PUSH2 0x1511 DUP3 PUSH2 0xECE JUMP JUMPDEST PUSH2 0x1574 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524337323155524953746F726167653A2055524920736574206F66206E6F6E PUSH1 0x44 DUP3 ADD MSTORE PUSH14 0x32BC34B9BA32B73A103A37B5B2B7 PUSH1 0x91 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x593 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0xA PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 DUP3 MLOAD PUSH2 0x6C9 SWAP3 DUP5 ADD SWAP1 PUSH2 0x1C8D JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x80AC58CD PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x15C4 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x5B5E139F PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x493 JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ PUSH2 0x493 JUMP JUMPDEST PUSH2 0x6C9 DUP4 DUP4 DUP4 PUSH2 0x1808 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO PUSH2 0x16F0 JUMPI PUSH1 0x40 MLOAD PUSH4 0xA85BD01 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0x150B7A02 SWAP1 PUSH2 0x1632 SWAP1 CALLER SWAP1 DUP10 SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH2 0x20B8 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x164C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x167C JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x1679 SWAP2 DUP2 ADD SWAP1 PUSH2 0x1FD0 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x16D6 JUMPI RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0x16AA 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 0x16AF JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP DUP1 MLOAD PUSH2 0x16CE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x593 SWAP1 PUSH2 0x214C JUMP JUMPDEST DUP1 MLOAD DUP2 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND PUSH4 0xA85BD01 PUSH1 0xE1 SHL EQ SWAP1 POP PUSH2 0x103B JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0xE DUP1 SLOAD PUSH2 0x4A8 SWAP1 PUSH2 0x22B2 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x1715 DUP3 PUSH2 0xECE JUMP JUMPDEST PUSH2 0x1779 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732314D657461646174613A2055524920717565727920666F72206E6F PUSH1 0x44 DUP3 ADD MSTORE PUSH15 0x3732BC34B9BA32B73A103A37B5B2B7 PUSH1 0x89 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x593 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1783 PUSH2 0x16FB JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x17A3 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x17CE JUMP JUMPDEST DUP1 PUSH2 0x17AD DUP5 PUSH2 0x18C0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x17BE SWAP3 SWAP2 SWAP1 PUSH2 0x2089 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x17DF DUP4 DUP4 PUSH2 0x19BE JUMP JUMPDEST PUSH2 0x17EC PUSH1 0x0 DUP5 DUP5 DUP5 PUSH2 0x15EE JUMP JUMPDEST PUSH2 0x6C9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x593 SWAP1 PUSH2 0x214C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x1863 JUMPI PUSH2 0x185E DUP2 PUSH1 0x8 DUP1 SLOAD PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP3 SWAP1 SSTORE PUSH1 0x1 DUP3 ADD DUP4 SSTORE SWAP2 SWAP1 SWAP2 MSTORE PUSH32 0xF3F7A9FE364FAAB93B216DA50A3214154F22A0A2B415B23A84C8169E8B636EE3 ADD SSTORE JUMP JUMPDEST PUSH2 0x1886 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1886 JUMPI PUSH2 0x1886 DUP4 DUP3 PUSH2 0x1AFD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x189D JUMPI PUSH2 0x6C9 DUP2 PUSH2 0x1B9A JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x6C9 JUMPI PUSH2 0x6C9 DUP3 DUP3 PUSH2 0x1C49 JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH2 0x18E4 JUMPI POP POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x1 DUP2 MSTORE PUSH1 0x3 PUSH1 0xFC SHL PUSH1 0x20 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x0 JUMPDEST DUP2 ISZERO PUSH2 0x190E JUMPI DUP1 PUSH2 0x18F8 DUP2 PUSH2 0x22ED JUMP JUMPDEST SWAP2 POP PUSH2 0x1907 SWAP1 POP PUSH1 0xA DUP4 PUSH2 0x223C JUMP JUMPDEST SWAP2 POP PUSH2 0x18E8 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1929 JUMPI PUSH2 0x1929 PUSH2 0x2374 JUMP 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 0x1953 JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP JUMPDEST DUP5 ISZERO PUSH2 0x103B JUMPI PUSH2 0x1968 PUSH1 0x1 DUP4 PUSH2 0x226F JUMP JUMPDEST SWAP2 POP PUSH2 0x1975 PUSH1 0xA DUP7 PUSH2 0x2308 JUMP JUMPDEST PUSH2 0x1980 SWAP1 PUSH1 0x30 PUSH2 0x2224 JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x1995 JUMPI PUSH2 0x1995 PUSH2 0x235E JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH2 0x19B7 PUSH1 0xA DUP7 PUSH2 0x223C JUMP JUMPDEST SWAP5 POP PUSH2 0x1957 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1A14 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A206D696E7420746F20746865207A65726F2061646472657373 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x593 JUMP JUMPDEST PUSH2 0x1A1D DUP2 PUSH2 0xECE JUMP JUMPDEST ISZERO PUSH2 0x1A6A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20746F6B656E20616C7265616479206D696E74656400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x593 JUMP JUMPDEST PUSH2 0x1A76 PUSH1 0x0 DUP4 DUP4 PUSH2 0x15E3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0x1A9F SWAP1 DUP5 SWAP1 PUSH2 0x2224 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP1 MLOAD DUP4 SWAP3 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 DUP3 SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH2 0x1B0A DUP5 PUSH2 0xA1C JUMP JUMPDEST PUSH2 0x1B14 SWAP2 SWAP1 PUSH2 0x226F JUMP JUMPDEST PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 SWAP2 POP DUP1 DUP3 EQ PUSH2 0x1B67 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP6 DUP5 MSTORE DUP3 MSTORE DUP1 DUP4 KECCAK256 SLOAD DUP5 DUP5 MSTORE DUP2 DUP5 KECCAK256 DUP2 SWAP1 SSTORE DUP4 MSTORE PUSH1 0x7 SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP2 SWAP1 SSTORE JUMPDEST POP PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x7 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 DUP5 SWAP1 SSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP5 AND DUP4 MSTORE PUSH1 0x6 DUP2 MSTORE DUP4 DUP4 KECCAK256 SWAP2 DUP4 MSTORE MSTORE SWAP1 DUP2 KECCAK256 SSTORE JUMP JUMPDEST PUSH1 0x8 SLOAD PUSH1 0x0 SWAP1 PUSH2 0x1BAC SWAP1 PUSH1 0x1 SWAP1 PUSH2 0x226F JUMP JUMPDEST PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x8 DUP1 SLOAD SWAP4 SWAP5 POP SWAP1 SWAP3 DUP5 SWAP1 DUP2 LT PUSH2 0x1BD4 JUMPI PUSH2 0x1BD4 PUSH2 0x235E JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP DUP1 PUSH1 0x8 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x1BF5 JUMPI PUSH2 0x1BF5 PUSH2 0x235E JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 KECCAK256 SWAP1 SWAP2 ADD SWAP3 SWAP1 SWAP3 SSTORE DUP3 DUP2 MSTORE PUSH1 0x9 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP5 SWAP1 SSTORE DUP6 DUP3 MSTORE DUP2 KECCAK256 SSTORE PUSH1 0x8 DUP1 SLOAD DUP1 PUSH2 0x1C2D JUMPI PUSH2 0x1C2D PUSH2 0x2348 JUMP JUMPDEST PUSH1 0x1 SWAP1 SUB DUP2 DUP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SSTORE SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1C54 DUP4 PUSH2 0xA1C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP7 DUP5 MSTORE DUP3 MSTORE DUP1 DUP4 KECCAK256 DUP6 SWAP1 SSTORE SWAP4 DUP3 MSTORE PUSH1 0x7 SWAP1 MSTORE SWAP2 SWAP1 SWAP2 KECCAK256 SWAP2 SWAP1 SWAP2 SSTORE POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x1C99 SWAP1 PUSH2 0x22B2 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x1CBB JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x1D01 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x1CD4 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x1D01 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x1D01 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x1D01 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x1CE6 JUMP JUMPDEST POP PUSH2 0x1D0D SWAP3 SWAP2 POP PUSH2 0x1D11 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x1D0D JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x1D12 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP5 GT ISZERO PUSH2 0x1D41 JUMPI PUSH2 0x1D41 PUSH2 0x2374 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP6 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP3 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH2 0x1D69 JUMPI PUSH2 0x1D69 PUSH2 0x2374 JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP1 SWAP4 POP DUP6 DUP2 MSTORE DUP7 DUP7 DUP7 ADD GT ISZERO PUSH2 0x1D82 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 DUP6 PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH1 0x0 PUSH1 0x20 DUP8 DUP4 ADD ADD MSTORE POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1DB3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1DC9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x17CE DUP4 DUP4 CALLDATALOAD PUSH1 0x20 DUP6 ADD PUSH2 0x1D26 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1DEA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x17CE DUP3 PUSH2 0x1D9C JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1E06 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1E0F DUP4 PUSH2 0x1D9C JUMP JUMPDEST SWAP2 POP PUSH2 0x1E1D PUSH1 0x20 DUP5 ADD PUSH2 0x1D9C JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1E3B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1E44 DUP5 PUSH2 0x1D9C JUMP JUMPDEST SWAP3 POP PUSH2 0x1E52 PUSH1 0x20 DUP6 ADD PUSH2 0x1D9C JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1E78 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1E81 DUP6 PUSH2 0x1D9C JUMP JUMPDEST SWAP4 POP PUSH2 0x1E8F PUSH1 0x20 DUP7 ADD PUSH2 0x1D9C JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1EB2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 ADD PUSH1 0x1F DUP2 ADD DUP8 SGT PUSH2 0x1EC3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1ED2 DUP8 DUP3 CALLDATALOAD PUSH1 0x20 DUP5 ADD PUSH2 0x1D26 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 0x1EF1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1EFA DUP4 PUSH2 0x1D9C JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x1F0A DUP2 PUSH2 0x238A JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1F28 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1F31 DUP4 PUSH2 0x1D9C JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1F54 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1F5D DUP5 PUSH2 0x1D9C JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1F80 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1F8C DUP7 DUP3 DUP8 ADD PUSH2 0x1DB8 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1FA8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x17CE DUP2 PUSH2 0x238A JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1FC5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x17CE DUP2 PUSH2 0x2398 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1FE2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x17CE DUP2 PUSH2 0x2398 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1FFF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2016 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x103B DUP5 DUP3 DUP6 ADD PUSH2 0x1DB8 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2034 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x204E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP POP DUP1 CALLDATALOAD SWAP3 PUSH1 0x20 SWAP1 SWAP2 ADD CALLDATALOAD SWAP2 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x2075 DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x2286 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP4 MLOAD PUSH2 0x209B DUP2 DUP5 PUSH1 0x20 DUP9 ADD PUSH2 0x2286 JUMP JUMPDEST DUP4 MLOAD SWAP1 DUP4 ADD SWAP1 PUSH2 0x20AF DUP2 DUP4 PUSH1 0x20 DUP9 ADD PUSH2 0x2286 JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND DUP3 MSTORE DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x80 PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH2 0x20EB SWAP1 DUP4 ADD DUP5 PUSH2 0x205D JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 DUP5 DUP3 ADD SWAP1 PUSH1 0x40 DUP6 ADD SWAP1 DUP5 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x212D JUMPI DUP4 MLOAD DUP4 MSTORE SWAP3 DUP5 ADD SWAP3 SWAP2 DUP5 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x2111 JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x17CE PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x205D JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x32 SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x40 DUP3 ADD MSTORE PUSH18 0x31B2B4BB32B91034B6B83632B6B2B73A32B9 PUSH1 0x71 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP2 DUP2 ADD MSTORE PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x31 SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E736665722063616C6C6572206973206E6F74206F PUSH1 0x40 DUP3 ADD MSTORE PUSH17 0x1DDB995C881B9BDC88185C1C1C9BDD9959 PUSH1 0x7A SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x2237 JUMPI PUSH2 0x2237 PUSH2 0x231C JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x224B JUMPI PUSH2 0x224B PUSH2 0x2332 JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 NOT DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x226A JUMPI PUSH2 0x226A PUSH2 0x231C JUMP JUMPDEST POP MUL SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x2281 JUMPI PUSH2 0x2281 PUSH2 0x231C JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x22A1 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x2289 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0xD2E JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x22C6 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x22E7 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x2301 JUMPI PUSH2 0x2301 PUSH2 0x231C JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x2317 JUMPI PUSH2 0x2317 PUSH2 0x2332 JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x31 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x811 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x811 JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x27 0x28 0xDB 0xB7 GT 0xC7 SMOD SIGNEXTEND CREATE2 SLOAD 0xEF 0xC3 0x2E SWAP16 0xD5 0x4C 0x1F 0xA9 JUMPDEST 0xD0 SWAP12 MULMOD LOG2 MUL ADDMOD 0xAD INVALID 0xC2 0xCB SIGNEXTEND 0x5E ORIGIN PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "507:3415:16:-:0;;;707:282;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1316:113:4;;;;;;;;;;;-1:-1:-1;;;1316:113:4;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1316:113:4;;;;1382:13;;1316:113;;;1382:13;;-1:-1:-1;;1382:13:4;:::i;:::-;-1:-1:-1;1405:17:4;;;;:7;;:17;;;;;:::i;:::-;;1316:113;;867:23:0;877:12;:10;;;:12;;:::i;:::-;867:9;:23::i;:::-;847:18:16::1;:42:::0;;-1:-1:-1;;;;;;847:42:16::1;-1:-1:-1::0;;;;;847:42:16;::::1;;::::0;;899:20:::1;:46:::0;;;955:27;;::::1;::::0;:13:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;:::-;;707:282:::0;;;507:3415;;587:96:12;666:10;;587:96::o;2041:169:0:-;2115:6;;;-1:-1:-1;;;;;2131:17:0;;;-1:-1:-1;;;;;;2131:17:0;;;;;;;2163:40;;2115:6;;;2131:17;2115:6;;2163:40;;2096:16;;2163:40;2086:124;2041:169;:::o;507:3415:16:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;507:3415:16;;;-1:-1:-1;507:3415:16;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:1315:17;112:6;120;128;181:2;169:9;160:7;156:23;152:32;149:52;;;197:1;194;187:12;149:52;223:16;;-1:-1:-1;;;;;268:31:17;;258:42;;248:70;;314:1;311;304:12;248:70;361:2;388:18;;;382:25;451:2;436:18;;430:25;337:5;;-1:-1:-1;382:25:17;-1:-1:-1;361:2:17;-1:-1:-1;;;;;504:14:17;;;501:34;;;531:1;528;521:12;501:34;569:6;558:9;554:22;544:32;;614:7;607:4;603:2;599:13;595:27;585:55;;636:1;633;626:12;585:55;665:2;659:9;687:2;683;680:10;677:36;;;693:18;;:::i;:::-;768:2;762:9;736:2;822:13;;-1:-1:-1;;818:22:17;;;842:2;814:31;810:40;798:53;;;866:18;;;886:22;;;863:46;860:72;;;912:18;;:::i;:::-;952:10;948:2;941:22;987:2;979:6;972:18;1027:7;1022:2;1017;1013;1009:11;1005:20;1002:33;999:53;;;1048:1;1045;1038:12;999:53;1070:1;1061:10;;1080:129;1094:2;1091:1;1088:9;1080:129;;;1182:10;;;1178:19;;1172:26;1151:14;;;1147:23;;1140:59;1105:10;;;;1080:129;;;1227:2;1224:1;1221:9;1218:80;;;1286:1;1281:2;1276;1268:6;1264:15;1260:24;1253:35;1218:80;1317:6;1307:16;;;;;;;;14:1315;;;;;:::o;1334:380::-;1413:1;1409:12;;;;1456;;;1477:61;;1531:4;1523:6;1519:17;1509:27;;1477:61;1584:2;1576:6;1573:14;1553:18;1550:38;1547:161;;;1630:10;1625:3;1621:20;1618:1;1611:31;1665:4;1662:1;1655:15;1693:4;1690:1;1683:15;1547:161;;1334:380;;;:::o;1719:127::-;1780:10;1775:3;1771:20;1768:1;1761:31;1811:4;1808:1;1801:15;1835:4;1832:1;1825:15;1719:127;507:3415:16;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_addTokenToAllTokensEnumeration_1379": {
"entryPoint": null,
"id": 1379,
"parameterSlots": 1,
"returnSlots": 0
},
"@_addTokenToOwnerEnumeration_1359": {
"entryPoint": 7241,
"id": 1359,
"parameterSlots": 2,
"returnSlots": 0
},
"@_approve_945": {
"entryPoint": 3819,
"id": 945,
"parameterSlots": 2,
"returnSlots": 0
},
"@_baseURI_2466": {
"entryPoint": 5883,
"id": 2466,
"parameterSlots": 0,
"returnSlots": 1
},
"@_beforeTokenTransfer_1018": {
"entryPoint": null,
"id": 1018,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_1329": {
"entryPoint": 6152,
"id": 1329,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_2326": {
"entryPoint": 5603,
"id": 2326,
"parameterSlots": 3,
"returnSlots": 0
},
"@_checkOnERC721Received_1007": {
"entryPoint": 5614,
"id": 1007,
"parameterSlots": 4,
"returnSlots": 1
},
"@_exists_659": {
"entryPoint": 3790,
"id": 659,
"parameterSlots": 1,
"returnSlots": 1
},
"@_isApprovedOrOwner_700": {
"entryPoint": 3929,
"id": 700,
"parameterSlots": 2,
"returnSlots": 1
},
"@_mint_801": {
"entryPoint": 6590,
"id": 801,
"parameterSlots": 2,
"returnSlots": 0
},
"@_msgSender_1986": {
"entryPoint": null,
"id": 1986,
"parameterSlots": 0,
"returnSlots": 1
},
"@_removeTokenFromAllTokensEnumeration_1490": {
"entryPoint": 7066,
"id": 1490,
"parameterSlots": 1,
"returnSlots": 0
},
"@_removeTokenFromOwnerEnumeration_1442": {
"entryPoint": 6909,
"id": 1442,
"parameterSlots": 2,
"returnSlots": 0
},
"@_safeMint_715": {
"entryPoint": 5358,
"id": 715,
"parameterSlots": 2,
"returnSlots": 0
},
"@_safeMint_744": {
"entryPoint": 6101,
"id": 744,
"parameterSlots": 3,
"returnSlots": 0
},
"@_safeTransfer_641": {
"entryPoint": 4953,
"id": 641,
"parameterSlots": 4,
"returnSlots": 0
},
"@_setOwner_102": {
"entryPoint": 4871,
"id": 102,
"parameterSlots": 1,
"returnSlots": 0
},
"@_setTokenURI_1588": {
"entryPoint": 5384,
"id": 1588,
"parameterSlots": 2,
"returnSlots": 0
},
"@_transfer_921": {
"entryPoint": 4163,
"id": 921,
"parameterSlots": 3,
"returnSlots": 0
},
"@approve_463": {
"entryPoint": 1464,
"id": 463,
"parameterSlots": 2,
"returnSlots": 0
},
"@balanceOf_321": {
"entryPoint": 2588,
"id": 321,
"parameterSlots": 1,
"returnSlots": 1
},
"@getApproved_484": {
"entryPoint": 1323,
"id": 484,
"parameterSlots": 1,
"returnSlots": 1
},
"@isApprovedForAll_536": {
"entryPoint": null,
"id": 536,
"parameterSlots": 2,
"returnSlots": 1
},
"@isContract_1697": {
"entryPoint": null,
"id": 1697,
"parameterSlots": 1,
"returnSlots": 1
},
"@name_359": {
"entryPoint": 1177,
"id": 359,
"parameterSlots": 0,
"returnSlots": 1
},
"@ownerOf_349": {
"entryPoint": 2469,
"id": 349,
"parameterSlots": 1,
"returnSlots": 1
},
"@owner_32": {
"entryPoint": null,
"id": 32,
"parameterSlots": 0,
"returnSlots": 1
},
"@renounceOwnership_60": {
"entryPoint": 2723,
"id": 60,
"parameterSlots": 0,
"returnSlots": 0
},
"@royaltiesPercentage_2414": {
"entryPoint": null,
"id": 2414,
"parameterSlots": 0,
"returnSlots": 1
},
"@royaltiesReceiver_2388": {
"entryPoint": null,
"id": 2388,
"parameterSlots": 0,
"returnSlots": 1
},
"@royaltyInfo_2457": {
"entryPoint": 1791,
"id": 2457,
"parameterSlots": 2,
"returnSlots": 2
},
"@safeMint_2305": {
"entryPoint": 3391,
"id": 2305,
"parameterSlots": 3,
"returnSlots": 0
},
"@safeTransferFrom_582": {
"entryPoint": 2068,
"id": 582,
"parameterSlots": 3,
"returnSlots": 0
},
"@safeTransferFrom_612": {
"entryPoint": 3324,
"id": 612,
"parameterSlots": 4,
"returnSlots": 0
},
"@sendValue_1731": {
"entryPoint": 4590,
"id": 1731,
"parameterSlots": 2,
"returnSlots": 0
},
"@setApprovalForAll_518": {
"entryPoint": 3024,
"id": 518,
"parameterSlots": 2,
"returnSlots": 0
},
"@setBaseURI_2478": {
"entryPoint": 2404,
"id": 2478,
"parameterSlots": 1,
"returnSlots": 0
},
"@setRoyaltiesPercentage_2432": {
"entryPoint": 2777,
"id": 2432,
"parameterSlots": 1,
"returnSlots": 0
},
"@setRoyaltiesReceiver_2406": {
"entryPoint": 3221,
"id": 2406,
"parameterSlots": 1,
"returnSlots": 0
},
"@supportsInterface_1203": {
"entryPoint": 3753,
"id": 1203,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_2222": {
"entryPoint": null,
"id": 2222,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_2365": {
"entryPoint": 1134,
"id": 2365,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_297": {
"entryPoint": 5523,
"id": 297,
"parameterSlots": 1,
"returnSlots": 1
},
"@symbol_369": {
"entryPoint": 2839,
"id": 369,
"parameterSlots": 0,
"returnSlots": 1
},
"@toString_2081": {
"entryPoint": 6336,
"id": 2081,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenByIndex_1265": {
"entryPoint": 2257,
"id": 1265,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenOfOwnerByIndex_1231": {
"entryPoint": 1845,
"id": 1231,
"parameterSlots": 2,
"returnSlots": 1
},
"@tokenURI_1566": {
"entryPoint": 5004,
"id": 1566,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenURI_2342": {
"entryPoint": 3380,
"id": 2342,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenURI_411": {
"entryPoint": 5898,
"id": 411,
"parameterSlots": 1,
"returnSlots": 1
},
"@totalSupply_1242": {
"entryPoint": null,
"id": 1242,
"parameterSlots": 0,
"returnSlots": 1
},
"@transferFrom_563": {
"entryPoint": 1742,
"id": 563,
"parameterSlots": 3,
"returnSlots": 0
},
"@transferOwnership_83": {
"entryPoint": 3601,
"id": 83,
"parameterSlots": 1,
"returnSlots": 0
},
"@walletOfOwner_2593": {
"entryPoint": 2095,
"id": 2593,
"parameterSlots": 1,
"returnSlots": 1
},
"@withdraw721_2545": {
"entryPoint": 3453,
"id": 2545,
"parameterSlots": 2,
"returnSlots": 0
},
"@withdrawERC20_2522": {
"entryPoint": 2854,
"id": 2522,
"parameterSlots": 2,
"returnSlots": 0
},
"@withdraw_2503": {
"entryPoint": 1995,
"id": 2503,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_decode_address": {
"entryPoint": 7580,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_decode_available_length_bytes": {
"entryPoint": 7462,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_string": {
"entryPoint": 7608,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 7640,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 7667,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 7718,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr": {
"entryPoint": 7778,
"id": null,
"parameterSlots": 2,
"returnSlots": 4
},
"abi_decode_tuple_t_addresst_bool": {
"entryPoint": 7902,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 7957,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_uint256t_string_memory_ptr": {
"entryPoint": 7999,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_bool_fromMemory": {
"entryPoint": 8086,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes4": {
"entryPoint": 8115,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes4_fromMemory": {
"entryPoint": 8144,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptr": {
"entryPoint": 8173,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 8226,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256t_uint256": {
"entryPoint": 8251,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_encode_bytes": {
"entryPoint": 8285,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"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": 8329,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_packed_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 4,
"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": 8376,
"id": null,
"parameterSlots": 5,
"returnSlots": 1
},
"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed": {
"entryPoint": 8437,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8505,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8524,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_51ddaa38748c0a1144620fb5bfe8edab31ea437571ad591a7734bbfd0429aeae__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_5597a22abd0ef5332f8053862eb236db7590f17e2b93a53f63a103becfb561f9__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_8e9ed1638ba7e2d59e03d0957c9339381732ac84d73f65c86c45db1467eafa2a__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8606,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8659,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 8740,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_div_t_uint256": {
"entryPoint": 8764,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_mul_t_uint256": {
"entryPoint": 8784,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 8815,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"copy_memory_to_memory": {
"entryPoint": 8838,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 8882,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"increment_t_uint256": {
"entryPoint": 8941,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mod_t_uint256": {
"entryPoint": 8968,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 8988,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x12": {
"entryPoint": 9010,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x31": {
"entryPoint": 9032,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 9054,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 9076,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"validator_revert_bool": {
"entryPoint": 9098,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_bytes4": {
"entryPoint": 9112,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:19830:17",
"statements": [
{
"nodeType": "YulBlock",
"src": "6:3:17",
"statements": []
},
{
"body": {
"nodeType": "YulBlock",
"src": "88:557:17",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "98:28:17",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "108:18:17",
"type": "",
"value": "0xffffffffffffffff"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "102:2:17",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "153:22:17",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "155:16:17"
},
"nodeType": "YulFunctionCall",
"src": "155:18:17"
},
"nodeType": "YulExpressionStatement",
"src": "155:18:17"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "141:6:17"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "149:2:17"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "138:2:17"
},
"nodeType": "YulFunctionCall",
"src": "138:14:17"
},
"nodeType": "YulIf",
"src": "135:40:17"
},
{
"nodeType": "YulVariableDeclaration",
"src": "184:17:17",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "198:2:17",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "194:3:17"
},
"nodeType": "YulFunctionCall",
"src": "194:7:17"
},
"variables": [
{
"name": "_2",
"nodeType": "YulTypedName",
"src": "188:2:17",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "210:23:17",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "230:2:17",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "224:5:17"
},
"nodeType": "YulFunctionCall",
"src": "224:9:17"
},
"variables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "214:6:17",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "242:73:17",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "264:6:17"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "288:6:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "296:2:17",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "284:3:17"
},
"nodeType": "YulFunctionCall",
"src": "284:15:17"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "301:2:17"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "280:3:17"
},
"nodeType": "YulFunctionCall",
"src": "280:24:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "306:2:17",
"type": "",
"value": "63"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "276:3:17"
},
"nodeType": "YulFunctionCall",
"src": "276:33:17"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "311:2:17"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "272:3:17"
},
"nodeType": "YulFunctionCall",
"src": "272:42:17"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "260:3:17"
},
"nodeType": "YulFunctionCall",
"src": "260:55:17"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "246:10:17",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "374:22:17",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "376:16:17"
},
"nodeType": "YulFunctionCall",
"src": "376:18:17"
},
"nodeType": "YulExpressionStatement",
"src": "376:18:17"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "333:10:17"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "345:2:17"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "330:2:17"
},
"nodeType": "YulFunctionCall",
"src": "330:18:17"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "353:10:17"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "365:6:17"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "350:2:17"
},
"nodeType": "YulFunctionCall",
"src": "350:22:17"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "327:2:17"
},
"nodeType": "YulFunctionCall",
"src": "327:46:17"
},
"nodeType": "YulIf",
"src": "324:72:17"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "412:2:17",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "416:10:17"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "405:6:17"
},
"nodeType": "YulFunctionCall",
"src": "405:22:17"
},
"nodeType": "YulExpressionStatement",
"src": "405:22:17"
},
{
"nodeType": "YulAssignment",
"src": "436:15:17",
"value": {
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "445:6:17"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "436:5:17"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "467:6:17"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "475:6:17"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "460:6:17"
},
"nodeType": "YulFunctionCall",
"src": "460:22:17"
},
"nodeType": "YulExpressionStatement",
"src": "460:22:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "520:16:17",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "529:1:17",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "532:1:17",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "522:6:17"
},
"nodeType": "YulFunctionCall",
"src": "522:12:17"
},
"nodeType": "YulExpressionStatement",
"src": "522:12:17"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "501:3:17"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "506:6:17"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "497:3:17"
},
"nodeType": "YulFunctionCall",
"src": "497:16:17"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "515:3:17"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "494:2:17"
},
"nodeType": "YulFunctionCall",
"src": "494:25:17"
},
"nodeType": "YulIf",
"src": "491:45:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "562:6:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "570:4:17",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "558:3:17"
},
"nodeType": "YulFunctionCall",
"src": "558:17:17"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "577:3:17"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "582:6:17"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "545:12:17"
},
"nodeType": "YulFunctionCall",
"src": "545:44:17"
},
"nodeType": "YulExpressionStatement",
"src": "545:44:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "613:6:17"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "621:6:17"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "609:3:17"
},
"nodeType": "YulFunctionCall",
"src": "609:19:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "630:4:17",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "605:3:17"
},
"nodeType": "YulFunctionCall",
"src": "605:30:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "637:1:17",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "598:6:17"
},
"nodeType": "YulFunctionCall",
"src": "598:41:17"
},
"nodeType": "YulExpressionStatement",
"src": "598:41:17"
}
]
},
"name": "abi_decode_available_length_bytes",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "57:3:17",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "62:6:17",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "70:3:17",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "78:5:17",
"type": ""
}
],
"src": "14:631:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "699:124:17",
"statements": [
{
"nodeType": "YulAssignment",
"src": "709:29:17",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "731:6:17"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "718:12:17"
},
"nodeType": "YulFunctionCall",
"src": "718:20:17"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "709:5:17"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "801:16:17",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "810:1:17",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "813:1:17",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "803:6:17"
},
"nodeType": "YulFunctionCall",
"src": "803:12:17"
},
"nodeType": "YulExpressionStatement",
"src": "803:12:17"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "760:5:17"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "771:5:17"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "786:3:17",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "791:1:17",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "782:3:17"
},
"nodeType": "YulFunctionCall",
"src": "782:11:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "795:1:17",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "778:3:17"
},
"nodeType": "YulFunctionCall",
"src": "778:19:17"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "767:3:17"
},
"nodeType": "YulFunctionCall",
"src": "767:31:17"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "757:2:17"
},
"nodeType": "YulFunctionCall",
"src": "757:42:17"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "750:6:17"
},
"nodeType": "YulFunctionCall",
"src": "750:50:17"
},
"nodeType": "YulIf",
"src": "747:70:17"
}
]
},
"name": "abi_decode_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "678:6:17",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "689:5:17",
"type": ""
}
],
"src": "650:173:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "881:168:17",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "930:16:17",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "939:1:17",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "942:1:17",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "932:6:17"
},
"nodeType": "YulFunctionCall",
"src": "932:12:17"
},
"nodeType": "YulExpressionStatement",
"src": "932:12:17"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "909:6:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "917:4:17",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "905:3:17"
},
"nodeType": "YulFunctionCall",
"src": "905:17:17"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "924:3:17"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "901:3:17"
},
"nodeType": "YulFunctionCall",
"src": "901:27:17"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "894:6:17"
},
"nodeType": "YulFunctionCall",
"src": "894:35:17"
},
"nodeType": "YulIf",
"src": "891:55:17"
},
{
"nodeType": "YulAssignment",
"src": "955:88:17",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1002:6:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1010:4:17",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "998:3:17"
},
"nodeType": "YulFunctionCall",
"src": "998:17:17"
},
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1030:6:17"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1017:12:17"
},
"nodeType": "YulFunctionCall",
"src": "1017:20:17"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1039:3:17"
}
],
"functionName": {
"name": "abi_decode_available_length_bytes",
"nodeType": "YulIdentifier",
"src": "964:33:17"
},
"nodeType": "YulFunctionCall",
"src": "964:79:17"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "955:5:17"
}
]
}
]
},
"name": "abi_decode_string",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "855:6:17",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "863:3:17",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "871:5:17",
"type": ""
}
],
"src": "828:221:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1124:116:17",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1170:16:17",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1179:1:17",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1182:1:17",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1172:6:17"
},
"nodeType": "YulFunctionCall",
"src": "1172:12:17"
},
"nodeType": "YulExpressionStatement",
"src": "1172:12:17"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1145:7:17"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1154:9:17"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1141:3:17"
},
"nodeType": "YulFunctionCall",
"src": "1141:23:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1166:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1137:3:17"
},
"nodeType": "YulFunctionCall",
"src": "1137:32:17"
},
"nodeType": "YulIf",
"src": "1134:52:17"
},
{
"nodeType": "YulAssignment",
"src": "1195:39:17",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1224:9:17"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "1205:18:17"
},
"nodeType": "YulFunctionCall",
"src": "1205:29:17"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1195:6:17"
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1090:9:17",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1101:7:17",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1113:6:17",
"type": ""
}
],
"src": "1054:186:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1332:173:17",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1378:16:17",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1387:1:17",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1390:1:17",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1380:6:17"
},
"nodeType": "YulFunctionCall",
"src": "1380:12:17"
},
"nodeType": "YulExpressionStatement",
"src": "1380:12:17"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1353:7:17"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1362:9:17"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1349:3:17"
},
"nodeType": "YulFunctionCall",
"src": "1349:23:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1374:2:17",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1345:3:17"
},
"nodeType": "YulFunctionCall",
"src": "1345:32:17"
},
"nodeType": "YulIf",
"src": "1342:52:17"
},
{
"nodeType": "YulAssignment",
"src": "1403:39:17",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1432:9:17"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "1413:18:17"
},
"nodeType": "YulFunctionCall",
"src": "1413:29:17"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1403:6:17"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1451:48:17",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1484:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1495:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1480:3:17"
},
"nodeType": "YulFunctionCall",
"src": "1480:18:17"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "1461:18:17"
},
"nodeType": "YulFunctionCall",
"src": "1461:38:17"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1451:6:17"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1290:9:17",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1301:7:17",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1313:6:17",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1321:6:17",
"type": ""
}
],
"src": "1245:260:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1614:224:17",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1660:16:17",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1669:1:17",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1672:1:17",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1662:6:17"
},
"nodeType": "YulFunctionCall",
"src": "1662:12:17"
},
"nodeType": "YulExpressionStatement",
"src": "1662:12:17"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1635:7:17"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1644:9:17"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1631:3:17"
},
"nodeType": "YulFunctionCall",
"src": "1631:23:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1656:2:17",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1627:3:17"
},
"nodeType": "YulFunctionCall",
"src": "1627:32:17"
},
"nodeType": "YulIf",
"src": "1624:52:17"
},
{
"nodeType": "YulAssignment",
"src": "1685:39:17",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1714:9:17"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "1695:18:17"
},
"nodeType": "YulFunctionCall",
"src": "1695:29:17"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1685:6:17"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1733:48:17",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1766:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1777:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1762:3:17"
},
"nodeType": "YulFunctionCall",
"src": "1762:18:17"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "1743:18:17"
},
"nodeType": "YulFunctionCall",
"src": "1743:38:17"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1733:6:17"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1790:42:17",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1817:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1828:2:17",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1813:3:17"
},
"nodeType": "YulFunctionCall",
"src": "1813:18:17"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1800:12:17"
},
"nodeType": "YulFunctionCall",
"src": "1800:32:17"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1790:6:17"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1564:9:17",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1575:7:17",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1587:6:17",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1595:6:17",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1603:6:17",
"type": ""
}
],
"src": "1510:328:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1973:536:17",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2020:16:17",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2029:1:17",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2032:1:17",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2022:6:17"
},
"nodeType": "YulFunctionCall",
"src": "2022:12:17"
},
"nodeType": "YulExpressionStatement",
"src": "2022:12:17"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1994:7:17"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2003:9:17"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1990:3:17"
},
"nodeType": "YulFunctionCall",
"src": "1990:23:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2015:3:17",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1986:3:17"
},
"nodeType": "YulFunctionCall",
"src": "1986:33:17"
},
"nodeType": "YulIf",
"src": "1983:53:17"
},
{
"nodeType": "YulAssignment",
"src": "2045:39:17",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2074:9:17"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "2055:18:17"
},
"nodeType": "YulFunctionCall",
"src": "2055:29:17"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2045:6:17"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2093:48:17",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2126:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2137:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2122:3:17"
},
"nodeType": "YulFunctionCall",
"src": "2122:18:17"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "2103:18:17"
},
"nodeType": "YulFunctionCall",
"src": "2103:38:17"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2093:6:17"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2150:42:17",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2177:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2188:2:17",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2173:3:17"
},
"nodeType": "YulFunctionCall",
"src": "2173:18:17"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2160:12:17"
},
"nodeType": "YulFunctionCall",
"src": "2160:32:17"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "2150:6:17"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2201:46:17",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2232:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2243:2:17",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2228:3:17"
},
"nodeType": "YulFunctionCall",
"src": "2228:18:17"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2215:12:17"
},
"nodeType": "YulFunctionCall",
"src": "2215:32:17"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2205:6:17",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2290:16:17",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2299:1:17",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2302:1:17",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2292:6:17"
},
"nodeType": "YulFunctionCall",
"src": "2292:12:17"
},
"nodeType": "YulExpressionStatement",
"src": "2292:12:17"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2262:6:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2270:18:17",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2259:2:17"
},
"nodeType": "YulFunctionCall",
"src": "2259:30:17"
},
"nodeType": "YulIf",
"src": "2256:50:17"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2315:32:17",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2329:9:17"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2340:6:17"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2325:3:17"
},
"nodeType": "YulFunctionCall",
"src": "2325:22:17"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "2319:2:17",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2395:16:17",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2404:1:17",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2407:1:17",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2397:6:17"
},
"nodeType": "YulFunctionCall",
"src": "2397:12:17"
},
"nodeType": "YulExpressionStatement",
"src": "2397:12:17"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "2374:2:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2378:4:17",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2370:3:17"
},
"nodeType": "YulFunctionCall",
"src": "2370:13:17"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2385:7:17"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2366:3:17"
},
"nodeType": "YulFunctionCall",
"src": "2366:27:17"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2359:6:17"
},
"nodeType": "YulFunctionCall",
"src": "2359:35:17"
},
"nodeType": "YulIf",
"src": "2356:55:17"
},
{
"nodeType": "YulAssignment",
"src": "2420:83:17",
"value": {
"arguments": [
{
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "2468:2:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2472:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2464:3:17"
},
"nodeType": "YulFunctionCall",
"src": "2464:11:17"
},
{
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "2490:2:17"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2477:12:17"
},
"nodeType": "YulFunctionCall",
"src": "2477:16:17"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2495:7:17"
}
],
"functionName": {
"name": "abi_decode_available_length_bytes",
"nodeType": "YulIdentifier",
"src": "2430:33:17"
},
"nodeType": "YulFunctionCall",
"src": "2430:73:17"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "2420:6:17"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1915:9:17",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1926:7:17",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1938:6:17",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1946:6:17",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1954:6:17",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "1962:6:17",
"type": ""
}
],
"src": "1843:666:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2598:231:17",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2644:16:17",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2653:1:17",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2656:1:17",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2646:6:17"
},
"nodeType": "YulFunctionCall",
"src": "2646:12:17"
},
"nodeType": "YulExpressionStatement",
"src": "2646:12:17"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2619:7:17"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2628:9:17"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2615:3:17"
},
"nodeType": "YulFunctionCall",
"src": "2615:23:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2640:2:17",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2611:3:17"
},
"nodeType": "YulFunctionCall",
"src": "2611:32:17"
},
"nodeType": "YulIf",
"src": "2608:52:17"
},
{
"nodeType": "YulAssignment",
"src": "2669:39:17",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2698:9:17"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "2679:18:17"
},
"nodeType": "YulFunctionCall",
"src": "2679:29:17"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2669:6:17"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2717:45:17",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2747:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2758:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2743:3:17"
},
"nodeType": "YulFunctionCall",
"src": "2743:18:17"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2730:12:17"
},
"nodeType": "YulFunctionCall",
"src": "2730:32:17"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2721:5:17",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2793:5:17"
}
],
"functionName": {
"name": "validator_revert_bool",
"nodeType": "YulIdentifier",
"src": "2771:21:17"
},
"nodeType": "YulFunctionCall",
"src": "2771:28:17"
},
"nodeType": "YulExpressionStatement",
"src": "2771:28:17"
},
{
"nodeType": "YulAssignment",
"src": "2808:15:17",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "2818:5:17"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2808:6:17"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2556:9:17",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2567:7:17",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2579:6:17",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2587:6:17",
"type": ""
}
],
"src": "2514:315:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2921:167:17",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2967:16:17",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2976:1:17",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2979:1:17",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2969:6:17"
},
"nodeType": "YulFunctionCall",
"src": "2969:12:17"
},
"nodeType": "YulExpressionStatement",
"src": "2969:12:17"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2942:7:17"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2951:9:17"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2938:3:17"
},
"nodeType": "YulFunctionCall",
"src": "2938:23:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2963:2:17",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2934:3:17"
},
"nodeType": "YulFunctionCall",
"src": "2934:32:17"
},
"nodeType": "YulIf",
"src": "2931:52:17"
},
{
"nodeType": "YulAssignment",
"src": "2992:39:17",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3021:9:17"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "3002:18:17"
},
"nodeType": "YulFunctionCall",
"src": "3002:29:17"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2992:6:17"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3040:42:17",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3067:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3078:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3063:3:17"
},
"nodeType": "YulFunctionCall",
"src": "3063:18:17"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3050:12:17"
},
"nodeType": "YulFunctionCall",
"src": "3050:32:17"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3040:6:17"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2879:9:17",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2890:7:17",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2902:6:17",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2910:6:17",
"type": ""
}
],
"src": "2834:254:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3207:350:17",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3253:16:17",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3262:1:17",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3265:1:17",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3255:6:17"
},
"nodeType": "YulFunctionCall",
"src": "3255:12:17"
},
"nodeType": "YulExpressionStatement",
"src": "3255:12:17"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3228:7:17"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3237:9:17"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3224:3:17"
},
"nodeType": "YulFunctionCall",
"src": "3224:23:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3249:2:17",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3220:3:17"
},
"nodeType": "YulFunctionCall",
"src": "3220:32:17"
},
"nodeType": "YulIf",
"src": "3217:52:17"
},
{
"nodeType": "YulAssignment",
"src": "3278:39:17",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3307:9:17"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "3288:18:17"
},
"nodeType": "YulFunctionCall",
"src": "3288:29:17"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3278:6:17"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3326:42:17",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3353:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3364:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3349:3:17"
},
"nodeType": "YulFunctionCall",
"src": "3349:18:17"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3336:12:17"
},
"nodeType": "YulFunctionCall",
"src": "3336:32:17"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3326:6:17"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "3377:46:17",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3408:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3419:2:17",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3404:3:17"
},
"nodeType": "YulFunctionCall",
"src": "3404:18:17"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3391:12:17"
},
"nodeType": "YulFunctionCall",
"src": "3391:32:17"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3381:6:17",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3466:16:17",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3475:1:17",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3478:1:17",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3468:6:17"
},
"nodeType": "YulFunctionCall",
"src": "3468:12:17"
},
"nodeType": "YulExpressionStatement",
"src": "3468:12:17"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3438:6:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3446:18:17",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3435:2:17"
},
"nodeType": "YulFunctionCall",
"src": "3435:30:17"
},
"nodeType": "YulIf",
"src": "3432:50:17"
},
{
"nodeType": "YulAssignment",
"src": "3491:60:17",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3523:9:17"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3534:6:17"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3519:3:17"
},
"nodeType": "YulFunctionCall",
"src": "3519:22:17"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3543:7:17"
}
],
"functionName": {
"name": "abi_decode_string",
"nodeType": "YulIdentifier",
"src": "3501:17:17"
},
"nodeType": "YulFunctionCall",
"src": "3501:50:17"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "3491:6:17"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3157:9:17",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3168:7:17",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3180:6:17",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3188:6:17",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "3196:6:17",
"type": ""
}
],
"src": "3093:464:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3640:167:17",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3686:16:17",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3695:1:17",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3698:1:17",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3688:6:17"
},
"nodeType": "YulFunctionCall",
"src": "3688:12:17"
},
"nodeType": "YulExpressionStatement",
"src": "3688:12:17"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3661:7:17"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3670:9:17"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3657:3:17"
},
"nodeType": "YulFunctionCall",
"src": "3657:23:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3682:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3653:3:17"
},
"nodeType": "YulFunctionCall",
"src": "3653:32:17"
},
"nodeType": "YulIf",
"src": "3650:52:17"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3711:29:17",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3730:9:17"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3724:5:17"
},
"nodeType": "YulFunctionCall",
"src": "3724:16:17"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3715:5:17",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3771:5:17"
}
],
"functionName": {
"name": "validator_revert_bool",
"nodeType": "YulIdentifier",
"src": "3749:21:17"
},
"nodeType": "YulFunctionCall",
"src": "3749:28:17"
},
"nodeType": "YulExpressionStatement",
"src": "3749:28:17"
},
{
"nodeType": "YulAssignment",
"src": "3786:15:17",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "3796:5:17"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3786:6:17"
}
]
}
]
},
"name": "abi_decode_tuple_t_bool_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3606:9:17",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3617:7:17",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3629:6:17",
"type": ""
}
],
"src": "3562:245:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3881:176:17",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3927:16:17",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3936:1:17",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3939:1:17",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3929:6:17"
},
"nodeType": "YulFunctionCall",
"src": "3929:12:17"
},
"nodeType": "YulExpressionStatement",
"src": "3929:12:17"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3902:7:17"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3911:9:17"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3898:3:17"
},
"nodeType": "YulFunctionCall",
"src": "3898:23:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3923:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3894:3:17"
},
"nodeType": "YulFunctionCall",
"src": "3894:32:17"
},
"nodeType": "YulIf",
"src": "3891:52:17"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3952:36:17",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3978:9:17"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3965:12:17"
},
"nodeType": "YulFunctionCall",
"src": "3965:23:17"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3956:5:17",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4021:5:17"
}
],
"functionName": {
"name": "validator_revert_bytes4",
"nodeType": "YulIdentifier",
"src": "3997:23:17"
},
"nodeType": "YulFunctionCall",
"src": "3997:30:17"
},
"nodeType": "YulExpressionStatement",
"src": "3997:30:17"
},
{
"nodeType": "YulAssignment",
"src": "4036:15:17",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "4046:5:17"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4036:6:17"
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3847:9:17",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3858:7:17",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3870:6:17",
"type": ""
}
],
"src": "3812:245:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4142:169:17",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4188:16:17",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4197:1:17",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4200:1:17",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4190:6:17"
},
"nodeType": "YulFunctionCall",
"src": "4190:12:17"
},
"nodeType": "YulExpressionStatement",
"src": "4190:12:17"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4163:7:17"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4172:9:17"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4159:3:17"
},
"nodeType": "YulFunctionCall",
"src": "4159:23:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4184:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4155:3:17"
},
"nodeType": "YulFunctionCall",
"src": "4155:32:17"
},
"nodeType": "YulIf",
"src": "4152:52:17"
},
{
"nodeType": "YulVariableDeclaration",
"src": "4213:29:17",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4232:9:17"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4226:5:17"
},
"nodeType": "YulFunctionCall",
"src": "4226:16:17"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4217:5:17",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4275:5:17"
}
],
"functionName": {
"name": "validator_revert_bytes4",
"nodeType": "YulIdentifier",
"src": "4251:23:17"
},
"nodeType": "YulFunctionCall",
"src": "4251:30:17"
},
"nodeType": "YulExpressionStatement",
"src": "4251:30:17"
},
{
"nodeType": "YulAssignment",
"src": "4290:15:17",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "4300:5:17"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4290:6:17"
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4108:9:17",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4119:7:17",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4131:6:17",
"type": ""
}
],
"src": "4062:249:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4396:242:17",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4442:16:17",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4451:1:17",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4454:1:17",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4444:6:17"
},
"nodeType": "YulFunctionCall",
"src": "4444:12:17"
},
"nodeType": "YulExpressionStatement",
"src": "4444:12:17"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4417:7:17"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4426:9:17"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4413:3:17"
},
"nodeType": "YulFunctionCall",
"src": "4413:23:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4438:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4409:3:17"
},
"nodeType": "YulFunctionCall",
"src": "4409:32:17"
},
"nodeType": "YulIf",
"src": "4406:52:17"
},
{
"nodeType": "YulVariableDeclaration",
"src": "4467:37:17",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4494:9:17"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "4481:12:17"
},
"nodeType": "YulFunctionCall",
"src": "4481:23:17"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4471:6:17",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4547:16:17",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4556:1:17",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4559:1:17",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4549:6:17"
},
"nodeType": "YulFunctionCall",
"src": "4549:12:17"
},
"nodeType": "YulExpressionStatement",
"src": "4549:12:17"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4519:6:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4527:18:17",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4516:2:17"
},
"nodeType": "YulFunctionCall",
"src": "4516:30:17"
},
"nodeType": "YulIf",
"src": "4513:50:17"
},
{
"nodeType": "YulAssignment",
"src": "4572:60:17",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4604:9:17"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4615:6:17"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4600:3:17"
},
"nodeType": "YulFunctionCall",
"src": "4600:22:17"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4624:7:17"
}
],
"functionName": {
"name": "abi_decode_string",
"nodeType": "YulIdentifier",
"src": "4582:17:17"
},
"nodeType": "YulFunctionCall",
"src": "4582:50:17"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4572:6:17"
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4362:9:17",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4373:7:17",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4385:6:17",
"type": ""
}
],
"src": "4316:322:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4713:110:17",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4759:16:17",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4768:1:17",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4771:1:17",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4761:6:17"
},
"nodeType": "YulFunctionCall",
"src": "4761:12:17"
},
"nodeType": "YulExpressionStatement",
"src": "4761:12:17"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4734:7:17"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4743:9:17"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4730:3:17"
},
"nodeType": "YulFunctionCall",
"src": "4730:23:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4755:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4726:3:17"
},
"nodeType": "YulFunctionCall",
"src": "4726:32:17"
},
"nodeType": "YulIf",
"src": "4723:52:17"
},
{
"nodeType": "YulAssignment",
"src": "4784:33:17",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4807:9:17"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "4794:12:17"
},
"nodeType": "YulFunctionCall",
"src": "4794:23:17"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4784:6:17"
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4679:9:17",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4690:7:17",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4702:6:17",
"type": ""
}
],
"src": "4643:180:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4915:161:17",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4961:16:17",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4970:1:17",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4973:1:17",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4963:6:17"
},
"nodeType": "YulFunctionCall",
"src": "4963:12:17"
},
"nodeType": "YulExpressionStatement",
"src": "4963:12:17"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4936:7:17"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4945:9:17"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4932:3:17"
},
"nodeType": "YulFunctionCall",
"src": "4932:23:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4957:2:17",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4928:3:17"
},
"nodeType": "YulFunctionCall",
"src": "4928:32:17"
},
"nodeType": "YulIf",
"src": "4925:52:17"
},
{
"nodeType": "YulAssignment",
"src": "4986:33:17",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5009:9:17"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "4996:12:17"
},
"nodeType": "YulFunctionCall",
"src": "4996:23:17"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4986:6:17"
}
]
},
{
"nodeType": "YulAssignment",
"src": "5028:42:17",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5055:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5066:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5051:3:17"
},
"nodeType": "YulFunctionCall",
"src": "5051:18:17"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "5038:12:17"
},
"nodeType": "YulFunctionCall",
"src": "5038:32:17"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5028:6:17"
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4873:9:17",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4884:7:17",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4896:6:17",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4904:6:17",
"type": ""
}
],
"src": "4828:248:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5130:208:17",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5140:26:17",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5160:5:17"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "5154:5:17"
},
"nodeType": "YulFunctionCall",
"src": "5154:12:17"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5144:6:17",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5182:3:17"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5187:6:17"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5175:6:17"
},
"nodeType": "YulFunctionCall",
"src": "5175:19:17"
},
"nodeType": "YulExpressionStatement",
"src": "5175:19:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5229:5:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5236:4:17",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5225:3:17"
},
"nodeType": "YulFunctionCall",
"src": "5225:16:17"
},
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5247:3:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5252:4:17",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5243:3:17"
},
"nodeType": "YulFunctionCall",
"src": "5243:14:17"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5259:6:17"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "5203:21:17"
},
"nodeType": "YulFunctionCall",
"src": "5203:63:17"
},
"nodeType": "YulExpressionStatement",
"src": "5203:63:17"
},
{
"nodeType": "YulAssignment",
"src": "5275:57:17",
"value": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5290:3:17"
},
{
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5303:6:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5311:2:17",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5299:3:17"
},
"nodeType": "YulFunctionCall",
"src": "5299:15:17"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5320:2:17",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "5316:3:17"
},
"nodeType": "YulFunctionCall",
"src": "5316:7:17"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5295:3:17"
},
"nodeType": "YulFunctionCall",
"src": "5295:29:17"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5286:3:17"
},
"nodeType": "YulFunctionCall",
"src": "5286:39:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5327:4:17",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5282:3:17"
},
"nodeType": "YulFunctionCall",
"src": "5282:50:17"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5275:3:17"
}
]
}
]
},
"name": "abi_encode_bytes",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5107:5:17",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5114:3:17",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5122:3:17",
"type": ""
}
],
"src": "5081:257:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5530:283:17",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5540:27:17",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5560:6:17"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "5554:5:17"
},
"nodeType": "YulFunctionCall",
"src": "5554:13:17"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5544:6:17",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5602:6:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5610:4:17",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5598:3:17"
},
"nodeType": "YulFunctionCall",
"src": "5598:17:17"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5617:3:17"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5622:6:17"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "5576:21:17"
},
"nodeType": "YulFunctionCall",
"src": "5576:53:17"
},
"nodeType": "YulExpressionStatement",
"src": "5576:53:17"
},
{
"nodeType": "YulVariableDeclaration",
"src": "5638:29:17",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5655:3:17"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5660:6:17"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5651:3:17"
},
"nodeType": "YulFunctionCall",
"src": "5651:16:17"
},
"variables": [
{
"name": "end_1",
"nodeType": "YulTypedName",
"src": "5642:5:17",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5676:29:17",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5698:6:17"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "5692:5:17"
},
"nodeType": "YulFunctionCall",
"src": "5692:13:17"
},
"variables": [
{
"name": "length_1",
"nodeType": "YulTypedName",
"src": "5680:8:17",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5740:6:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5748:4:17",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5736:3:17"
},
"nodeType": "YulFunctionCall",
"src": "5736:17:17"
},
{
"name": "end_1",
"nodeType": "YulIdentifier",
"src": "5755:5:17"
},
{
"name": "length_1",
"nodeType": "YulIdentifier",
"src": "5762:8:17"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "5714:21:17"
},
"nodeType": "YulFunctionCall",
"src": "5714:57:17"
},
"nodeType": "YulExpressionStatement",
"src": "5714:57:17"
},
{
"nodeType": "YulAssignment",
"src": "5780:27:17",
"value": {
"arguments": [
{
"name": "end_1",
"nodeType": "YulIdentifier",
"src": "5791:5:17"
},
{
"name": "length_1",
"nodeType": "YulIdentifier",
"src": "5798:8:17"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5787:3:17"
},
"nodeType": "YulFunctionCall",
"src": "5787:20:17"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5780:3:17"
}
]
}
]
},
"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": "5498:3:17",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5503:6:17",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5511:6:17",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5522:3:17",
"type": ""
}
],
"src": "5343:470:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6009:14:17",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6011:10:17",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6018:3:17"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6011:3:17"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5993:3:17",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6001:3:17",
"type": ""
}
],
"src": "5818:205:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6129:102:17",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6139:26:17",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6151:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6162:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6147:3:17"
},
"nodeType": "YulFunctionCall",
"src": "6147:18:17"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6139:4:17"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6181:9:17"
},
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6196:6:17"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6212:3:17",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6217:1:17",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "6208:3:17"
},
"nodeType": "YulFunctionCall",
"src": "6208:11:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6221:1:17",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6204:3:17"
},
"nodeType": "YulFunctionCall",
"src": "6204:19:17"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6192:3:17"
},
"nodeType": "YulFunctionCall",
"src": "6192:32:17"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6174:6:17"
},
"nodeType": "YulFunctionCall",
"src": "6174:51:17"
},
"nodeType": "YulExpressionStatement",
"src": "6174:51:17"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6098:9:17",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6109:6:17",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6120:4:17",
"type": ""
}
],
"src": "6028:203:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6393:218:17",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6403:26:17",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6415:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6426:2:17",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6411:3:17"
},
"nodeType": "YulFunctionCall",
"src": "6411:18:17"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6403:4:17"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "6438:29:17",
"value": {
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6456:3:17",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6461:1:17",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "6452:3:17"
},
"nodeType": "YulFunctionCall",
"src": "6452:11:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6465:1:17",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6448:3:17"
},
"nodeType": "YulFunctionCall",
"src": "6448:19:17"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "6442:2:17",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6483:9:17"
},
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6498:6:17"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "6506:2:17"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6494:3:17"
},
"nodeType": "YulFunctionCall",
"src": "6494:15:17"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6476:6:17"
},
"nodeType": "YulFunctionCall",
"src": "6476:34:17"
},
"nodeType": "YulExpressionStatement",
"src": "6476:34:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6530:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6541:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6526:3:17"
},
"nodeType": "YulFunctionCall",
"src": "6526:18:17"
},
{
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "6550:6:17"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "6558:2:17"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6546:3:17"
},
"nodeType": "YulFunctionCall",
"src": "6546:15:17"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6519:6:17"
},
"nodeType": "YulFunctionCall",
"src": "6519:43:17"
},
"nodeType": "YulExpressionStatement",
"src": "6519:43:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6582:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6593:2:17",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6578:3:17"
},
"nodeType": "YulFunctionCall",
"src": "6578:18:17"
},
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "6598:6:17"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6571:6:17"
},
"nodeType": "YulFunctionCall",
"src": "6571:34:17"
},
"nodeType": "YulExpressionStatement",
"src": "6571:34:17"
}
]
},
"name": "abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6346:9:17",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "6357:6:17",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "6365:6:17",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6373:6:17",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6384:4:17",
"type": ""
}
],
"src": "6236:375:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6819:285:17",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6829:29:17",
"value": {
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6847:3:17",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6852:1:17",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "6843:3:17"
},
"nodeType": "YulFunctionCall",
"src": "6843:11:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6856:1:17",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6839:3:17"
},
"nodeType": "YulFunctionCall",
"src": "6839:19:17"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "6833:2:17",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6874:9:17"
},
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6889:6:17"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "6897:2:17"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6885:3:17"
},
"nodeType": "YulFunctionCall",
"src": "6885:15:17"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6867:6:17"
},
"nodeType": "YulFunctionCall",
"src": "6867:34:17"
},
"nodeType": "YulExpressionStatement",
"src": "6867:34:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6921:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6932:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6917:3:17"
},
"nodeType": "YulFunctionCall",
"src": "6917:18:17"
},
{
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "6941:6:17"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "6949:2:17"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6937:3:17"
},
"nodeType": "YulFunctionCall",
"src": "6937:15:17"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6910:6:17"
},
"nodeType": "YulFunctionCall",
"src": "6910:43:17"
},
"nodeType": "YulExpressionStatement",
"src": "6910:43:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6973:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6984:2:17",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6969:3:17"
},
"nodeType": "YulFunctionCall",
"src": "6969:18:17"
},
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "6989:6:17"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6962:6:17"
},
"nodeType": "YulFunctionCall",
"src": "6962:34:17"
},
"nodeType": "YulExpressionStatement",
"src": "6962:34:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7016:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7027:2:17",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7012:3:17"
},
"nodeType": "YulFunctionCall",
"src": "7012:18:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7032:3:17",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7005:6:17"
},
"nodeType": "YulFunctionCall",
"src": "7005:31:17"
},
"nodeType": "YulExpressionStatement",
"src": "7005:31:17"
},
{
"nodeType": "YulAssignment",
"src": "7045:53:17",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "7070:6:17"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7082:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7093:3:17",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7078:3:17"
},
"nodeType": "YulFunctionCall",
"src": "7078:19:17"
}
],
"functionName": {
"name": "abi_encode_bytes",
"nodeType": "YulIdentifier",
"src": "7053:16:17"
},
"nodeType": "YulFunctionCall",
"src": "7053:45:17"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7045:4:17"
}
]
}
]
},
"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": "6764:9:17",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "6775:6:17",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "6783:6:17",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "6791:6:17",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6799:6:17",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6810:4:17",
"type": ""
}
],
"src": "6616:488:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7238:145:17",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7248:26:17",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7260:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7271:2:17",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7256:3:17"
},
"nodeType": "YulFunctionCall",
"src": "7256:18:17"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7248:4:17"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7290:9:17"
},
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7305:6:17"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7321:3:17",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7326:1:17",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "7317:3:17"
},
"nodeType": "YulFunctionCall",
"src": "7317:11:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7330:1:17",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7313:3:17"
},
"nodeType": "YulFunctionCall",
"src": "7313:19:17"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7301:3:17"
},
"nodeType": "YulFunctionCall",
"src": "7301:32:17"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7283:6:17"
},
"nodeType": "YulFunctionCall",
"src": "7283:51:17"
},
"nodeType": "YulExpressionStatement",
"src": "7283:51:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7354:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7365:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7350:3:17"
},
"nodeType": "YulFunctionCall",
"src": "7350:18:17"
},
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "7370:6:17"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7343:6:17"
},
"nodeType": "YulFunctionCall",
"src": "7343:34:17"
},
"nodeType": "YulExpressionStatement",
"src": "7343:34:17"
}
]
},
"name": "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7199:9:17",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "7210:6:17",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7218:6:17",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7229:4:17",
"type": ""
}
],
"src": "7109:274:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7539:481:17",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7549:12:17",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7559:2:17",
"type": "",
"value": "32"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "7553:2:17",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "7570:32:17",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7588:9:17"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "7599:2:17"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7584:3:17"
},
"nodeType": "YulFunctionCall",
"src": "7584:18:17"
},
"variables": [
{
"name": "tail_1",
"nodeType": "YulTypedName",
"src": "7574:6:17",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7618:9:17"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "7629:2:17"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7611:6:17"
},
"nodeType": "YulFunctionCall",
"src": "7611:21:17"
},
"nodeType": "YulExpressionStatement",
"src": "7611:21:17"
},
{
"nodeType": "YulVariableDeclaration",
"src": "7641:17:17",
"value": {
"name": "tail_1",
"nodeType": "YulIdentifier",
"src": "7652:6:17"
},
"variables": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7645:3:17",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "7667:27:17",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7687:6:17"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "7681:5:17"
},
"nodeType": "YulFunctionCall",
"src": "7681:13:17"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "7671:6:17",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "tail_1",
"nodeType": "YulIdentifier",
"src": "7710:6:17"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7718:6:17"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7703:6:17"
},
"nodeType": "YulFunctionCall",
"src": "7703:22:17"
},
"nodeType": "YulExpressionStatement",
"src": "7703:22:17"
},
{
"nodeType": "YulAssignment",
"src": "7734:25:17",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7745:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7756:2:17",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7741:3:17"
},
"nodeType": "YulFunctionCall",
"src": "7741:18:17"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7734:3:17"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "7768:29:17",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7786:6:17"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "7794:2:17"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7782:3:17"
},
"nodeType": "YulFunctionCall",
"src": "7782:15:17"
},
"variables": [
{
"name": "srcPtr",
"nodeType": "YulTypedName",
"src": "7772:6:17",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "7806:10:17",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7815:1:17",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "7810:1:17",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7874:120:17",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7895:3:17"
},
{
"arguments": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "7906:6:17"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "7900:5:17"
},
"nodeType": "YulFunctionCall",
"src": "7900:13:17"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7888:6:17"
},
"nodeType": "YulFunctionCall",
"src": "7888:26:17"
},
"nodeType": "YulExpressionStatement",
"src": "7888:26:17"
},
{
"nodeType": "YulAssignment",
"src": "7927:19:17",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7938:3:17"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "7943:2:17"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7934:3:17"
},
"nodeType": "YulFunctionCall",
"src": "7934:12:17"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7927:3:17"
}
]
},
{
"nodeType": "YulAssignment",
"src": "7959:25:17",
"value": {
"arguments": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "7973:6:17"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "7981:2:17"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7969:3:17"
},
"nodeType": "YulFunctionCall",
"src": "7969:15:17"
},
"variableNames": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "7959:6:17"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "7836:1:17"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7839:6:17"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "7833:2:17"
},
"nodeType": "YulFunctionCall",
"src": "7833:13:17"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "7847:18:17",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7849:14:17",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "7858:1:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7861:1:17",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7854:3:17"
},
"nodeType": "YulFunctionCall",
"src": "7854:9:17"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "7849:1:17"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "7829:3:17",
"statements": []
},
"src": "7825:169:17"
},
{
"nodeType": "YulAssignment",
"src": "8003:11:17",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8011:3:17"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8003:4:17"
}
]
}
]
},
"name": "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7508:9:17",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7519:6:17",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7530:4:17",
"type": ""
}
],
"src": "7388:632:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8120:92:17",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8130:26:17",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8142:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8153:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8138:3:17"
},
"nodeType": "YulFunctionCall",
"src": "8138:18:17"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8130:4:17"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8172:9:17"
},
{
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8197:6:17"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "8190:6:17"
},
"nodeType": "YulFunctionCall",
"src": "8190:14:17"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "8183:6:17"
},
"nodeType": "YulFunctionCall",
"src": "8183:22:17"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8165:6:17"
},
"nodeType": "YulFunctionCall",
"src": "8165:41:17"
},
"nodeType": "YulExpressionStatement",
"src": "8165:41:17"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8089:9:17",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "8100:6:17",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8111:4:17",
"type": ""
}
],
"src": "8025:187:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8338:98:17",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8355:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8366:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8348:6:17"
},
"nodeType": "YulFunctionCall",
"src": "8348:21:17"
},
"nodeType": "YulExpressionStatement",
"src": "8348:21:17"
},
{
"nodeType": "YulAssignment",
"src": "8378:52:17",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8403:6:17"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8415:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8426:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8411:3:17"
},
"nodeType": "YulFunctionCall",
"src": "8411:18:17"
}
],
"functionName": {
"name": "abi_encode_bytes",
"nodeType": "YulIdentifier",
"src": "8386:16:17"
},
"nodeType": "YulFunctionCall",
"src": "8386:44:17"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8378:4:17"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8307:9:17",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "8318:6:17",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8329:4:17",
"type": ""
}
],
"src": "8217:219:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8615:233:17",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8632:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8643:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8625:6:17"
},
"nodeType": "YulFunctionCall",
"src": "8625:21:17"
},
"nodeType": "YulExpressionStatement",
"src": "8625:21:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8666:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8677:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8662:3:17"
},
"nodeType": "YulFunctionCall",
"src": "8662:18:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8682:2:17",
"type": "",
"value": "43"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8655:6:17"
},
"nodeType": "YulFunctionCall",
"src": "8655:30:17"
},
"nodeType": "YulExpressionStatement",
"src": "8655:30:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8705:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8716:2:17",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8701:3:17"
},
"nodeType": "YulFunctionCall",
"src": "8701:18:17"
},
{
"hexValue": "455243373231456e756d657261626c653a206f776e657220696e646578206f75",
"kind": "string",
"nodeType": "YulLiteral",
"src": "8721:34:17",
"type": "",
"value": "ERC721Enumerable: owner index ou"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8694:6:17"
},
"nodeType": "YulFunctionCall",
"src": "8694:62:17"
},
"nodeType": "YulExpressionStatement",
"src": "8694:62:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8776:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8787:2:17",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8772:3:17"
},
"nodeType": "YulFunctionCall",
"src": "8772:18:17"
},
{
"hexValue": "74206f6620626f756e6473",
"kind": "string",
"nodeType": "YulLiteral",
"src": "8792:13:17",
"type": "",
"value": "t of bounds"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8765:6:17"
},
"nodeType": "YulFunctionCall",
"src": "8765:41:17"
},
"nodeType": "YulExpressionStatement",
"src": "8765:41:17"
},
{
"nodeType": "YulAssignment",
"src": "8815:27:17",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8827:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8838:3:17",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8823:3:17"
},
"nodeType": "YulFunctionCall",
"src": "8823:19:17"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8815:4:17"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8592:9:17",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8606:4:17",
"type": ""
}
],
"src": "8441:407:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9027:240:17",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9044:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9055:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9037:6:17"
},
"nodeType": "YulFunctionCall",
"src": "9037:21:17"
},
"nodeType": "YulExpressionStatement",
"src": "9037:21:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9078:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9089:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9074:3:17"
},
"nodeType": "YulFunctionCall",
"src": "9074:18:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9094:2:17",
"type": "",
"value": "50"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9067:6:17"
},
"nodeType": "YulFunctionCall",
"src": "9067:30:17"
},
"nodeType": "YulExpressionStatement",
"src": "9067:30:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9117:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9128:2:17",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9113:3:17"
},
"nodeType": "YulFunctionCall",
"src": "9113:18:17"
},
{
"hexValue": "4552433732313a207472616e7366657220746f206e6f6e204552433732315265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9133:34:17",
"type": "",
"value": "ERC721: transfer to non ERC721Re"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9106:6:17"
},
"nodeType": "YulFunctionCall",
"src": "9106:62:17"
},
"nodeType": "YulExpressionStatement",
"src": "9106:62:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9188:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9199:2:17",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9184:3:17"
},
"nodeType": "YulFunctionCall",
"src": "9184:18:17"
},
{
"hexValue": "63656976657220696d706c656d656e746572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9204:20:17",
"type": "",
"value": "ceiver implementer"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9177:6:17"
},
"nodeType": "YulFunctionCall",
"src": "9177:48:17"
},
"nodeType": "YulExpressionStatement",
"src": "9177:48:17"
},
{
"nodeType": "YulAssignment",
"src": "9234:27:17",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9246:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9257:3:17",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9242:3:17"
},
"nodeType": "YulFunctionCall",
"src": "9242:19:17"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9234:4:17"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9004:9:17",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9018:4:17",
"type": ""
}
],
"src": "8853:414:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9446:228:17",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9463:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9474:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9456:6:17"
},
"nodeType": "YulFunctionCall",
"src": "9456:21:17"
},
"nodeType": "YulExpressionStatement",
"src": "9456:21:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9497:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9508:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9493:3:17"
},
"nodeType": "YulFunctionCall",
"src": "9493:18:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9513:2:17",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9486:6:17"
},
"nodeType": "YulFunctionCall",
"src": "9486:30:17"
},
"nodeType": "YulExpressionStatement",
"src": "9486:30:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9536:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9547:2:17",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9532:3:17"
},
"nodeType": "YulFunctionCall",
"src": "9532:18:17"
},
{
"hexValue": "4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9552:34:17",
"type": "",
"value": "Ownable: new owner is the zero a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9525:6:17"
},
"nodeType": "YulFunctionCall",
"src": "9525:62:17"
},
"nodeType": "YulExpressionStatement",
"src": "9525:62:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9607:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9618:2:17",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9603:3:17"
},
"nodeType": "YulFunctionCall",
"src": "9603:18:17"
},
{
"hexValue": "646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9623:8:17",
"type": "",
"value": "ddress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9596:6:17"
},
"nodeType": "YulFunctionCall",
"src": "9596:36:17"
},
"nodeType": "YulExpressionStatement",
"src": "9596:36:17"
},
{
"nodeType": "YulAssignment",
"src": "9641:27:17",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9653:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9664:3:17",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9649:3:17"
},
"nodeType": "YulFunctionCall",
"src": "9649:19:17"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9641:4:17"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9423:9:17",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9437:4:17",
"type": ""
}
],
"src": "9272:402:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9853:178:17",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9870:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9881:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9863:6:17"
},
"nodeType": "YulFunctionCall",
"src": "9863:21:17"
},
"nodeType": "YulExpressionStatement",
"src": "9863:21:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9904:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9915:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9900:3:17"
},
"nodeType": "YulFunctionCall",
"src": "9900:18:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9920:2:17",
"type": "",
"value": "28"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9893:6:17"
},
"nodeType": "YulFunctionCall",
"src": "9893:30:17"
},
"nodeType": "YulExpressionStatement",
"src": "9893:30:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9943:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9954:2:17",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9939:3:17"
},
"nodeType": "YulFunctionCall",
"src": "9939:18:17"
},
{
"hexValue": "4552433732313a20746f6b656e20616c7265616479206d696e746564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9959:30:17",
"type": "",
"value": "ERC721: token already minted"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9932:6:17"
},
"nodeType": "YulFunctionCall",
"src": "9932:58:17"
},
"nodeType": "YulExpressionStatement",
"src": "9932:58:17"
},
{
"nodeType": "YulAssignment",
"src": "9999:26:17",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10011:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10022:2:17",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10007:3:17"
},
"nodeType": "YulFunctionCall",
"src": "10007:18:17"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9999:4:17"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9830:9:17",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9844:4:17",
"type": ""
}
],
"src": "9679:352:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10210:226:17",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10227:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10238:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10220:6:17"
},
"nodeType": "YulFunctionCall",
"src": "10220:21:17"
},
"nodeType": "YulExpressionStatement",
"src": "10220:21:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10261:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10272:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10257:3:17"
},
"nodeType": "YulFunctionCall",
"src": "10257:18:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10277:2:17",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10250:6:17"
},
"nodeType": "YulFunctionCall",
"src": "10250:30:17"
},
"nodeType": "YulExpressionStatement",
"src": "10250:30:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10300:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10311:2:17",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10296:3:17"
},
"nodeType": "YulFunctionCall",
"src": "10296:18:17"
},
{
"hexValue": "4552433732313a207472616e7366657220746f20746865207a65726f20616464",
"kind": "string",
"nodeType": "YulLiteral",
"src": "10316:34:17",
"type": "",
"value": "ERC721: transfer to the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10289:6:17"
},
"nodeType": "YulFunctionCall",
"src": "10289:62:17"
},
"nodeType": "YulExpressionStatement",
"src": "10289:62:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10371:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10382:2:17",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10367:3:17"
},
"nodeType": "YulFunctionCall",
"src": "10367:18:17"
},
{
"hexValue": "72657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "10387:6:17",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10360:6:17"
},
"nodeType": "YulFunctionCall",
"src": "10360:34:17"
},
"nodeType": "YulExpressionStatement",
"src": "10360:34:17"
},
{
"nodeType": "YulAssignment",
"src": "10403:27:17",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10415:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10426:3:17",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10411:3:17"
},
"nodeType": "YulFunctionCall",
"src": "10411:19:17"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10403:4:17"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10187:9:17",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10201:4:17",
"type": ""
}
],
"src": "10036:400:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10615:175:17",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10632:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10643:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10625:6:17"
},
"nodeType": "YulFunctionCall",
"src": "10625:21:17"
},
"nodeType": "YulExpressionStatement",
"src": "10625:21:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10666:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10677:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10662:3:17"
},
"nodeType": "YulFunctionCall",
"src": "10662:18:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10682:2:17",
"type": "",
"value": "25"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10655:6:17"
},
"nodeType": "YulFunctionCall",
"src": "10655:30:17"
},
"nodeType": "YulExpressionStatement",
"src": "10655:30:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10705:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10716:2:17",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10701:3:17"
},
"nodeType": "YulFunctionCall",
"src": "10701:18:17"
},
{
"hexValue": "4552433732313a20617070726f766520746f2063616c6c6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "10721:27:17",
"type": "",
"value": "ERC721: approve to caller"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10694:6:17"
},
"nodeType": "YulFunctionCall",
"src": "10694:55:17"
},
"nodeType": "YulExpressionStatement",
"src": "10694:55:17"
},
{
"nodeType": "YulAssignment",
"src": "10758:26:17",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10770:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10781:2:17",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10766:3:17"
},
"nodeType": "YulFunctionCall",
"src": "10766:18:17"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10758:4:17"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10592:9:17",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10606:4:17",
"type": ""
}
],
"src": "10441:349:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10969:248:17",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10986:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10997:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10979:6:17"
},
"nodeType": "YulFunctionCall",
"src": "10979:21:17"
},
"nodeType": "YulExpressionStatement",
"src": "10979:21:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11020:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11031:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11016:3:17"
},
"nodeType": "YulFunctionCall",
"src": "11016:18:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11036:2:17",
"type": "",
"value": "58"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11009:6:17"
},
"nodeType": "YulFunctionCall",
"src": "11009:30:17"
},
"nodeType": "YulExpressionStatement",
"src": "11009:30:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11059:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11070:2:17",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11055:3:17"
},
"nodeType": "YulFunctionCall",
"src": "11055:18:17"
},
{
"hexValue": "416464726573733a20756e61626c6520746f2073656e642076616c75652c2072",
"kind": "string",
"nodeType": "YulLiteral",
"src": "11075:34:17",
"type": "",
"value": "Address: unable to send value, r"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11048:6:17"
},
"nodeType": "YulFunctionCall",
"src": "11048:62:17"
},
"nodeType": "YulExpressionStatement",
"src": "11048:62:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11130:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11141:2:17",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11126:3:17"
},
"nodeType": "YulFunctionCall",
"src": "11126:18:17"
},
{
"hexValue": "6563697069656e74206d61792068617665207265766572746564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "11146:28:17",
"type": "",
"value": "ecipient may have reverted"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11119:6:17"
},
"nodeType": "YulFunctionCall",
"src": "11119:56:17"
},
"nodeType": "YulExpressionStatement",
"src": "11119:56:17"
},
{
"nodeType": "YulAssignment",
"src": "11184:27:17",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11196:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11207:3:17",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11192:3:17"
},
"nodeType": "YulFunctionCall",
"src": "11192:19:17"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11184:4:17"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_51ddaa38748c0a1144620fb5bfe8edab31ea437571ad591a7734bbfd0429aeae__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10946:9:17",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10960:4:17",
"type": ""
}
],
"src": "10795:422:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11396:179:17",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11413:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11424:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11406:6:17"
},
"nodeType": "YulFunctionCall",
"src": "11406:21:17"
},
"nodeType": "YulExpressionStatement",
"src": "11406:21:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11447:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11458:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11443:3:17"
},
"nodeType": "YulFunctionCall",
"src": "11443:18:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11463:2:17",
"type": "",
"value": "29"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11436:6:17"
},
"nodeType": "YulFunctionCall",
"src": "11436:30:17"
},
"nodeType": "YulExpressionStatement",
"src": "11436:30:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11486:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11497:2:17",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11482:3:17"
},
"nodeType": "YulFunctionCall",
"src": "11482:18:17"
},
{
"hexValue": "416464726573733a20696e73756666696369656e742062616c616e6365",
"kind": "string",
"nodeType": "YulLiteral",
"src": "11502:31:17",
"type": "",
"value": "Address: insufficient balance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11475:6:17"
},
"nodeType": "YulFunctionCall",
"src": "11475:59:17"
},
"nodeType": "YulExpressionStatement",
"src": "11475:59:17"
},
{
"nodeType": "YulAssignment",
"src": "11543:26:17",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11555:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11566:2:17",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11551:3:17"
},
"nodeType": "YulFunctionCall",
"src": "11551:18:17"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11543:4:17"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_5597a22abd0ef5332f8053862eb236db7590f17e2b93a53f63a103becfb561f9__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11373:9:17",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11387:4:17",
"type": ""
}
],
"src": "11222:353:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11754:234:17",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11771:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11782:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11764:6:17"
},
"nodeType": "YulFunctionCall",
"src": "11764:21:17"
},
"nodeType": "YulExpressionStatement",
"src": "11764:21:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11805:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11816:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11801:3:17"
},
"nodeType": "YulFunctionCall",
"src": "11801:18:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11821:2:17",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11794:6:17"
},
"nodeType": "YulFunctionCall",
"src": "11794:30:17"
},
"nodeType": "YulExpressionStatement",
"src": "11794:30:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11844:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11855:2:17",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11840:3:17"
},
"nodeType": "YulFunctionCall",
"src": "11840:18:17"
},
{
"hexValue": "4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578",
"kind": "string",
"nodeType": "YulLiteral",
"src": "11860:34:17",
"type": "",
"value": "ERC721: operator query for nonex"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11833:6:17"
},
"nodeType": "YulFunctionCall",
"src": "11833:62:17"
},
"nodeType": "YulExpressionStatement",
"src": "11833:62:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11915:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11926:2:17",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11911:3:17"
},
"nodeType": "YulFunctionCall",
"src": "11911:18:17"
},
{
"hexValue": "697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "11931:14:17",
"type": "",
"value": "istent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11904:6:17"
},
"nodeType": "YulFunctionCall",
"src": "11904:42:17"
},
"nodeType": "YulExpressionStatement",
"src": "11904:42:17"
},
{
"nodeType": "YulAssignment",
"src": "11955:27:17",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11967:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11978:3:17",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11963:3:17"
},
"nodeType": "YulFunctionCall",
"src": "11963:19:17"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11955:4:17"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11731:9:17",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11745:4:17",
"type": ""
}
],
"src": "11580:408:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12167:246:17",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12184:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12195:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12177:6:17"
},
"nodeType": "YulFunctionCall",
"src": "12177:21:17"
},
"nodeType": "YulExpressionStatement",
"src": "12177:21:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12218:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12229:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12214:3:17"
},
"nodeType": "YulFunctionCall",
"src": "12214:18:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12234:2:17",
"type": "",
"value": "56"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12207:6:17"
},
"nodeType": "YulFunctionCall",
"src": "12207:30:17"
},
"nodeType": "YulExpressionStatement",
"src": "12207:30:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12257:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12268:2:17",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12253:3:17"
},
"nodeType": "YulFunctionCall",
"src": "12253:18:17"
},
{
"hexValue": "4552433732313a20617070726f76652063616c6c6572206973206e6f74206f77",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12273:34:17",
"type": "",
"value": "ERC721: approve caller is not ow"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12246:6:17"
},
"nodeType": "YulFunctionCall",
"src": "12246:62:17"
},
"nodeType": "YulExpressionStatement",
"src": "12246:62:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12328:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12339:2:17",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12324:3:17"
},
"nodeType": "YulFunctionCall",
"src": "12324:18:17"
},
{
"hexValue": "6e6572206e6f7220617070726f76656420666f7220616c6c",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12344:26:17",
"type": "",
"value": "ner nor approved for all"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12317:6:17"
},
"nodeType": "YulFunctionCall",
"src": "12317:54:17"
},
"nodeType": "YulExpressionStatement",
"src": "12317:54:17"
},
{
"nodeType": "YulAssignment",
"src": "12380:27:17",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12392:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12403:3:17",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12388:3:17"
},
"nodeType": "YulFunctionCall",
"src": "12388:19:17"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12380:4:17"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12144:9:17",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12158:4:17",
"type": ""
}
],
"src": "11993:420:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12592:232:17",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12609:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12620:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12602:6:17"
},
"nodeType": "YulFunctionCall",
"src": "12602:21:17"
},
"nodeType": "YulExpressionStatement",
"src": "12602:21:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12643:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12654:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12639:3:17"
},
"nodeType": "YulFunctionCall",
"src": "12639:18:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12659:2:17",
"type": "",
"value": "42"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12632:6:17"
},
"nodeType": "YulFunctionCall",
"src": "12632:30:17"
},
"nodeType": "YulExpressionStatement",
"src": "12632:30:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12682:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12693:2:17",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12678:3:17"
},
"nodeType": "YulFunctionCall",
"src": "12678:18:17"
},
{
"hexValue": "4552433732313a2062616c616e636520717565727920666f7220746865207a65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12698:34:17",
"type": "",
"value": "ERC721: balance query for the ze"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12671:6:17"
},
"nodeType": "YulFunctionCall",
"src": "12671:62:17"
},
"nodeType": "YulExpressionStatement",
"src": "12671:62:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12753:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12764:2:17",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12749:3:17"
},
"nodeType": "YulFunctionCall",
"src": "12749:18:17"
},
{
"hexValue": "726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12769:12:17",
"type": "",
"value": "ro address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12742:6:17"
},
"nodeType": "YulFunctionCall",
"src": "12742:40:17"
},
"nodeType": "YulExpressionStatement",
"src": "12742:40:17"
},
{
"nodeType": "YulAssignment",
"src": "12791:27:17",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12803:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12814:3:17",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12799:3:17"
},
"nodeType": "YulFunctionCall",
"src": "12799:19:17"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12791:4:17"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12569:9:17",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12583:4:17",
"type": ""
}
],
"src": "12418:406:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13003:231:17",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13020:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13031:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13013:6:17"
},
"nodeType": "YulFunctionCall",
"src": "13013:21:17"
},
"nodeType": "YulExpressionStatement",
"src": "13013:21:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13054:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13065:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13050:3:17"
},
"nodeType": "YulFunctionCall",
"src": "13050:18:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13070:2:17",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13043:6:17"
},
"nodeType": "YulFunctionCall",
"src": "13043:30:17"
},
"nodeType": "YulExpressionStatement",
"src": "13043:30:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13093:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13104:2:17",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13089:3:17"
},
"nodeType": "YulFunctionCall",
"src": "13089:18:17"
},
{
"hexValue": "4552433732313a206f776e657220717565727920666f72206e6f6e6578697374",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13109:34:17",
"type": "",
"value": "ERC721: owner query for nonexist"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13082:6:17"
},
"nodeType": "YulFunctionCall",
"src": "13082:62:17"
},
"nodeType": "YulExpressionStatement",
"src": "13082:62:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13164:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13175:2:17",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13160:3:17"
},
"nodeType": "YulFunctionCall",
"src": "13160:18:17"
},
{
"hexValue": "656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13180:11:17",
"type": "",
"value": "ent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13153:6:17"
},
"nodeType": "YulFunctionCall",
"src": "13153:39:17"
},
"nodeType": "YulExpressionStatement",
"src": "13153:39:17"
},
{
"nodeType": "YulAssignment",
"src": "13201:27:17",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13213:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13224:3:17",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13209:3:17"
},
"nodeType": "YulFunctionCall",
"src": "13209:19:17"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13201:4:17"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12980:9:17",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12994:4:17",
"type": ""
}
],
"src": "12829:405:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13413:236:17",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13430:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13441:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13423:6:17"
},
"nodeType": "YulFunctionCall",
"src": "13423:21:17"
},
"nodeType": "YulExpressionStatement",
"src": "13423:21:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13464:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13475:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13460:3:17"
},
"nodeType": "YulFunctionCall",
"src": "13460:18:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13480:2:17",
"type": "",
"value": "46"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13453:6:17"
},
"nodeType": "YulFunctionCall",
"src": "13453:30:17"
},
"nodeType": "YulExpressionStatement",
"src": "13453:30:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13503:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13514:2:17",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13499:3:17"
},
"nodeType": "YulFunctionCall",
"src": "13499:18:17"
},
{
"hexValue": "45524337323155524953746f726167653a2055524920736574206f66206e6f6e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13519:34:17",
"type": "",
"value": "ERC721URIStorage: URI set of non"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13492:6:17"
},
"nodeType": "YulFunctionCall",
"src": "13492:62:17"
},
"nodeType": "YulExpressionStatement",
"src": "13492:62:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13574:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13585:2:17",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13570:3:17"
},
"nodeType": "YulFunctionCall",
"src": "13570:18:17"
},
{
"hexValue": "6578697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13590:16:17",
"type": "",
"value": "existent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13563:6:17"
},
"nodeType": "YulFunctionCall",
"src": "13563:44:17"
},
"nodeType": "YulExpressionStatement",
"src": "13563:44:17"
},
{
"nodeType": "YulAssignment",
"src": "13616:27:17",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13628:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13639:3:17",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13624:3:17"
},
"nodeType": "YulFunctionCall",
"src": "13624:19:17"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13616:4:17"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13390:9:17",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13404:4:17",
"type": ""
}
],
"src": "13239:410:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13828:182:17",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13845:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13856:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13838:6:17"
},
"nodeType": "YulFunctionCall",
"src": "13838:21:17"
},
"nodeType": "YulExpressionStatement",
"src": "13838:21:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13879:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13890:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13875:3:17"
},
"nodeType": "YulFunctionCall",
"src": "13875:18:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13895:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13868:6:17"
},
"nodeType": "YulFunctionCall",
"src": "13868:30:17"
},
"nodeType": "YulExpressionStatement",
"src": "13868:30:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13918:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13929:2:17",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13914:3:17"
},
"nodeType": "YulFunctionCall",
"src": "13914:18:17"
},
{
"hexValue": "4552433732313a206d696e7420746f20746865207a65726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13934:34:17",
"type": "",
"value": "ERC721: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13907:6:17"
},
"nodeType": "YulFunctionCall",
"src": "13907:62:17"
},
"nodeType": "YulExpressionStatement",
"src": "13907:62:17"
},
{
"nodeType": "YulAssignment",
"src": "13978:26:17",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13990:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14001:2:17",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13986:3:17"
},
"nodeType": "YulFunctionCall",
"src": "13986:18:17"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13978:4:17"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13805:9:17",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13819:4:17",
"type": ""
}
],
"src": "13654:356:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14189:239:17",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14206:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14217:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14199:6:17"
},
"nodeType": "YulFunctionCall",
"src": "14199:21:17"
},
"nodeType": "YulExpressionStatement",
"src": "14199:21:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14240:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14251:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14236:3:17"
},
"nodeType": "YulFunctionCall",
"src": "14236:18:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14256:2:17",
"type": "",
"value": "49"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14229:6:17"
},
"nodeType": "YulFunctionCall",
"src": "14229:30:17"
},
"nodeType": "YulExpressionStatement",
"src": "14229:30:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14279:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14290:2:17",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14275:3:17"
},
"nodeType": "YulFunctionCall",
"src": "14275:18:17"
},
{
"hexValue": "45524337323155524953746f726167653a2055524920717565727920666f7220",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14295:34:17",
"type": "",
"value": "ERC721URIStorage: URI query for "
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14268:6:17"
},
"nodeType": "YulFunctionCall",
"src": "14268:62:17"
},
"nodeType": "YulExpressionStatement",
"src": "14268:62:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14350:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14361:2:17",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14346:3:17"
},
"nodeType": "YulFunctionCall",
"src": "14346:18:17"
},
{
"hexValue": "6e6f6e6578697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14366:19:17",
"type": "",
"value": "nonexistent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14339:6:17"
},
"nodeType": "YulFunctionCall",
"src": "14339:47:17"
},
"nodeType": "YulExpressionStatement",
"src": "14339:47:17"
},
{
"nodeType": "YulAssignment",
"src": "14395:27:17",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14407:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14418:3:17",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14403:3:17"
},
"nodeType": "YulFunctionCall",
"src": "14403:19:17"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14395:4:17"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_8e9ed1638ba7e2d59e03d0957c9339381732ac84d73f65c86c45db1467eafa2a__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14166:9:17",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14180:4:17",
"type": ""
}
],
"src": "14015:413:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14607:234:17",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14624:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14635:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14617:6:17"
},
"nodeType": "YulFunctionCall",
"src": "14617:21:17"
},
"nodeType": "YulExpressionStatement",
"src": "14617:21:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14658:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14669:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14654:3:17"
},
"nodeType": "YulFunctionCall",
"src": "14654:18:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14674:2:17",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14647:6:17"
},
"nodeType": "YulFunctionCall",
"src": "14647:30:17"
},
"nodeType": "YulExpressionStatement",
"src": "14647:30:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14697:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14708:2:17",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14693:3:17"
},
"nodeType": "YulFunctionCall",
"src": "14693:18:17"
},
{
"hexValue": "4552433732313a20617070726f76656420717565727920666f72206e6f6e6578",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14713:34:17",
"type": "",
"value": "ERC721: approved query for nonex"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14686:6:17"
},
"nodeType": "YulFunctionCall",
"src": "14686:62:17"
},
"nodeType": "YulExpressionStatement",
"src": "14686:62:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14768:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14779:2:17",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14764:3:17"
},
"nodeType": "YulFunctionCall",
"src": "14764:18:17"
},
{
"hexValue": "697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14784:14:17",
"type": "",
"value": "istent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14757:6:17"
},
"nodeType": "YulFunctionCall",
"src": "14757:42:17"
},
"nodeType": "YulExpressionStatement",
"src": "14757:42:17"
},
{
"nodeType": "YulAssignment",
"src": "14808:27:17",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14820:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14831:3:17",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14816:3:17"
},
"nodeType": "YulFunctionCall",
"src": "14816:19:17"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14808:4:17"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14584:9:17",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14598:4:17",
"type": ""
}
],
"src": "14433:408:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15020:182:17",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15037:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15048:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15030:6:17"
},
"nodeType": "YulFunctionCall",
"src": "15030:21:17"
},
"nodeType": "YulExpressionStatement",
"src": "15030:21:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15071:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15082:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15067:3:17"
},
"nodeType": "YulFunctionCall",
"src": "15067:18:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15087:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15060:6:17"
},
"nodeType": "YulFunctionCall",
"src": "15060:30:17"
},
"nodeType": "YulExpressionStatement",
"src": "15060:30:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15110:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15121:2:17",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15106:3:17"
},
"nodeType": "YulFunctionCall",
"src": "15106:18:17"
},
{
"hexValue": "4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15126:34:17",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15099:6:17"
},
"nodeType": "YulFunctionCall",
"src": "15099:62:17"
},
"nodeType": "YulExpressionStatement",
"src": "15099:62:17"
},
{
"nodeType": "YulAssignment",
"src": "15170:26:17",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15182:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15193:2:17",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15178:3:17"
},
"nodeType": "YulFunctionCall",
"src": "15178:18:17"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15170:4:17"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14997:9:17",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15011:4:17",
"type": ""
}
],
"src": "14846:356:17"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15381:231:17",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15398:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15409:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15391:6:17"
},
"nodeType": "YulFunctionCall",
"src": "15391:21:17"
},
"nodeType": "YulExpressionStatement",
"src": "15391:21:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15432:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15443:2:17",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15428:3:17"
},
"nodeType": "YulFunctionCall",
"src": "15428:18:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15448:2:17",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15421:6:17"
},
"nodeType": "YulFunctionCall",
"src": "15421:30:17"
},
"nodeType": "YulExpressionStatement",
"src": "15421:30:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15471:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15482:2:17",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15467:3:17"
},
"nodeType": "YulFunctionCall",
"src": "15467:18:17"
},
{
"hexValue": "4552433732313a207472616e73666572206f6620746f6b656e20746861742069",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15487:34:17",
"type": "",
"value": "ERC721: transfer of token that i"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15460:6:17"
},
"nodeType": "YulFunctionCall",
"src": "15460:62:17"
},
"nodeType": "YulExpressionStatement",
"src": "15460:62:17"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15542:9:17"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15553:2:17",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "155
View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment