Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save skyfly200/6685644fb3bf9d865ad236bed80c8730 to your computer and use it in GitHub Desktop.
Save skyfly200/6685644fb3bf9d865ad236bed80c8730 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.12+commit.f00d7308.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)
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 {
_setApprovalForAll(_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);
_afterTokenTransfer(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);
_afterTokenTransfer(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 from incorrect owner");
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);
_afterTokenTransfer(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 Approve `operator` to operate on all of `owner` tokens
*
* Emits a {ApprovalForAll} event.
*/
function _setApprovalForAll(
address owner,
address operator,
bool approved
) internal virtual {
require(owner != operator, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @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 {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721URIStorage.sol)
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
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
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
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)
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
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)
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
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @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
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 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
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
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
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
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
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
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
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
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
// OpenZeppelin Contracts v4.4.1 (access/AccessControl.sol)
pragma solidity ^0.8.0;
import "./IAccessControl.sol";
import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";
/**
* @dev Contract module that allows children to implement role-based access
* control mechanisms. This is a lightweight version that doesn't allow enumerating role
* members except through off-chain means by accessing the contract event logs. Some
* applications may benefit from on-chain enumerability, for those cases see
* {AccessControlEnumerable}.
*
* Roles are referred to by their `bytes32` identifier. These should be exposed
* in the external API and be unique. The best way to achieve this is by
* using `public constant` hash digests:
*
* ```
* bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
* ```
*
* Roles can be used to represent a set of permissions. To restrict access to a
* function call, use {hasRole}:
*
* ```
* function foo() public {
* require(hasRole(MY_ROLE, msg.sender));
* ...
* }
* ```
*
* Roles can be granted and revoked dynamically via the {grantRole} and
* {revokeRole} functions. Each role has an associated admin role, and only
* accounts that have a role's admin role can call {grantRole} and {revokeRole}.
*
* By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
* that only accounts with this role will be able to grant or revoke other
* roles. More complex role relationships can be created by using
* {_setRoleAdmin}.
*
* WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
* grant and revoke this role. Extra precautions should be taken to secure
* accounts that have been granted it.
*/
abstract contract AccessControl is Context, IAccessControl, ERC165 {
struct RoleData {
mapping(address => bool) members;
bytes32 adminRole;
}
mapping(bytes32 => RoleData) private _roles;
bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;
/**
* @dev Modifier that checks that an account has a specific role. Reverts
* with a standardized message including the required role.
*
* The format of the revert reason is given by the following regular expression:
*
* /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
*
* _Available since v4.1._
*/
modifier onlyRole(bytes32 role) {
_checkRole(role, _msgSender());
_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev Returns `true` if `account` has been granted `role`.
*/
function hasRole(bytes32 role, address account) public view override returns (bool) {
return _roles[role].members[account];
}
/**
* @dev Revert with a standard message if `account` is missing `role`.
*
* The format of the revert reason is given by the following regular expression:
*
* /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
*/
function _checkRole(bytes32 role, address account) internal view {
if (!hasRole(role, account)) {
revert(
string(
abi.encodePacked(
"AccessControl: account ",
Strings.toHexString(uint160(account), 20),
" is missing role ",
Strings.toHexString(uint256(role), 32)
)
)
);
}
}
/**
* @dev Returns the admin role that controls `role`. See {grantRole} and
* {revokeRole}.
*
* To change a role's admin, use {_setRoleAdmin}.
*/
function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
return _roles[role].adminRole;
}
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
_grantRole(role, account);
}
/**
* @dev Revokes `role` from `account`.
*
* If `account` had been granted `role`, emits a {RoleRevoked} event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
_revokeRole(role, account);
}
/**
* @dev Revokes `role` from the calling account.
*
* Roles are often managed via {grantRole} and {revokeRole}: this function's
* purpose is to provide a mechanism for accounts to lose their privileges
* if they are compromised (such as when a trusted device is misplaced).
*
* If the calling account had been revoked `role`, emits a {RoleRevoked}
* event.
*
* Requirements:
*
* - the caller must be `account`.
*/
function renounceRole(bytes32 role, address account) public virtual override {
require(account == _msgSender(), "AccessControl: can only renounce roles for self");
_revokeRole(role, account);
}
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event. Note that unlike {grantRole}, this function doesn't perform any
* checks on the calling account.
*
* [WARNING]
* ====
* This function should only be called from the constructor when setting
* up the initial roles for the system.
*
* Using this function in any other way is effectively circumventing the admin
* system imposed by {AccessControl}.
* ====
*
* NOTE: This function is deprecated in favor of {_grantRole}.
*/
function _setupRole(bytes32 role, address account) internal virtual {
_grantRole(role, account);
}
/**
* @dev Sets `adminRole` as ``role``'s admin role.
*
* Emits a {RoleAdminChanged} event.
*/
function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
bytes32 previousAdminRole = getRoleAdmin(role);
_roles[role].adminRole = adminRole;
emit RoleAdminChanged(role, previousAdminRole, adminRole);
}
/**
* @dev Grants `role` to `account`.
*
* Internal function without access restriction.
*/
function _grantRole(bytes32 role, address account) internal virtual {
if (!hasRole(role, account)) {
_roles[role].members[account] = true;
emit RoleGranted(role, account, _msgSender());
}
}
/**
* @dev Revokes `role` from `account`.
*
* Internal function without access restriction.
*/
function _revokeRole(bytes32 role, address account) internal virtual {
if (hasRole(role, account)) {
_roles[role].members[account] = false;
emit RoleRevoked(role, account, _msgSender());
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)
pragma solidity ^0.8.0;
/**
* @dev External interface of AccessControl declared to support ERC165 detection.
*/
interface IAccessControl {
/**
* @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
*
* `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
* {RoleAdminChanged} not being emitted signaling this.
*
* _Available since v3.1._
*/
event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);
/**
* @dev Emitted when `account` is granted `role`.
*
* `sender` is the account that originated the contract call, an admin role
* bearer except when using {AccessControl-_setupRole}.
*/
event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Emitted when `account` is revoked `role`.
*
* `sender` is the account that originated the contract call:
* - if using `revokeRole`, it is the admin role bearer
* - if using `renounceRole`, it is the role bearer (i.e. `account`)
*/
event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Returns `true` if `account` has been granted `role`.
*/
function hasRole(bytes32 role, address account) external view returns (bool);
/**
* @dev Returns the admin role that controls `role`. See {grantRole} and
* {revokeRole}.
*
* To change a role's admin, use {AccessControl-_setRoleAdmin}.
*/
function getRoleAdmin(bytes32 role) external view returns (bytes32);
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function grantRole(bytes32 role, address account) external;
/**
* @dev Revokes `role` from `account`.
*
* If `account` had been granted `role`, emits a {RoleRevoked} event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function revokeRole(bytes32 role, address account) external;
/**
* @dev Revokes `role` from the calling account.
*
* Roles are often managed via {grantRole} and {revokeRole}: this function's
* purpose is to provide a mechanism for accounts to lose their privileges
* if they are compromised (such as when a trusted device is misplaced).
*
* If the calling account had been granted `role`, emits a {RoleRevoked}
* event.
*
* Requirements:
*
* - the caller must be `account`.
*/
function renounceRole(bytes32 role, address account) external;
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)
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 {
_setApprovalForAll(_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 Approve `operator` to operate on all of `owner` tokens
*
* Emits a {ApprovalForAll} event.
*/
function _setApprovalForAll(
address owner,
address operator,
bool approved
) internal virtual {
require(owner != operator, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @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 {}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Burnable.sol)
pragma solidity ^0.8.0;
import "../ERC721.sol";
import "../../../utils/Context.sol";
/**
* @title ERC721 Burnable Token
* @dev ERC721 Token that can be irreversibly burned (destroyed).
*/
abstract contract ERC721Burnable is Context, ERC721 {
/**
* @dev Burns `tokenId`. See {ERC721-_burn}.
*
* Requirements:
*
* - The caller must own `tokenId` or be an approved operator.
*/
function burn(uint256 tokenId) public virtual {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
_burn(tokenId);
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)
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
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)
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
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
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
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)
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
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)
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
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)
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
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
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
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)
pragma solidity ^0.8.0;
/**
* @title Counters
* @author Matt Condon (@shrugs)
* @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
* of elements in a mapping, issuing ERC721 ids, or counting request ids.
*
* Include with `using Counters for Counters.Counter;`
*/
library Counters {
struct Counter {
// This variable should never be directly accessed by users of the library: interactions must be restricted to
// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
// this feature: see https://github.com/ethereum/solidity/issues/4637
uint256 _value; // default: 0
}
function current(Counter storage counter) internal view returns (uint256) {
return counter._value;
}
function increment(Counter storage counter) internal {
unchecked {
counter._value += 1;
}
}
function decrement(Counter storage counter) internal {
uint256 value = counter._value;
require(value > 0, "Counter: decrement overflow");
unchecked {
counter._value = value - 1;
}
}
function reset(Counter storage counter) internal {
counter._value = 0;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
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
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
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
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
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: GPL-3.0
pragma solidity >=0.4.22 <0.9.0;
library TestsAccounts {
function getAccount(uint index) pure public returns (address) {
address[15] memory accounts;
accounts[0] = 0x5B38Da6a701c568545dCfcB03FcB875f56beddC4;
accounts[1] = 0xAb8483F64d9C6d1EcF9b849Ae677dD3315835cb2;
accounts[2] = 0x4B20993Bc481177ec7E8f571ceCaE8A9e22C02db;
accounts[3] = 0x78731D3Ca6b7E34aC0F824c42a7cC18A495cabaB;
accounts[4] = 0x617F2E2fD72FD9D5503197092aC168c91465E7f2;
accounts[5] = 0x17F6AD8Ef982297579C203069C1DbfFE4348c372;
accounts[6] = 0x5c6B0f7Bf3E7ce046039Bd8FABdfD3f9F5021678;
accounts[7] = 0x03C6FcED478cBbC9a4FAB34eF9f40767739D1Ff7;
accounts[8] = 0x1aE0EA34a72D944a8C7603FfB3eC30a6669E454C;
accounts[9] = 0x0A098Eda01Ce92ff4A4CCb7A4fFFb5A43EBC70DC;
accounts[10] = 0xCA35b7d915458EF540aDe6068dFe2F44E8fa733c;
accounts[11] = 0x14723A09ACff6D2A60DcdF7aA4AFf308FDDC160C;
accounts[12] = 0x4B0897b0513fdC7C541B6d9D7E929C4e5364D2dB;
accounts[13] = 0x583031D1113aD414F02576BD6afaBfb302140225;
accounts[14] = 0xdD870fA1b7C4700F2BD7f44238821C26f7392148;
return accounts[index];
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.22 <0.9.0;
library Assert {
event AssertionEvent(
bool passed,
string message,
string methodName
);
event AssertionEventUint(
bool passed,
string message,
string methodName,
uint256 returned,
uint256 expected
);
event AssertionEventInt(
bool passed,
string message,
string methodName,
int256 returned,
int256 expected
);
event AssertionEventBool(
bool passed,
string message,
string methodName,
bool returned,
bool expected
);
event AssertionEventAddress(
bool passed,
string message,
string methodName,
address returned,
address expected
);
event AssertionEventBytes32(
bool passed,
string message,
string methodName,
bytes32 returned,
bytes32 expected
);
event AssertionEventString(
bool passed,
string message,
string methodName,
string returned,
string expected
);
event AssertionEventUintInt(
bool passed,
string message,
string methodName,
uint256 returned,
int256 expected
);
event AssertionEventIntUint(
bool passed,
string message,
string methodName,
int256 returned,
uint256 expected
);
function ok(bool a, string memory message) public returns (bool result) {
result = a;
emit AssertionEvent(result, message, "ok");
}
function equal(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventUint(result, message, "equal", a, b);
}
function equal(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventInt(result, message, "equal", a, b);
}
function equal(bool a, bool b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventBool(result, message, "equal", a, b);
}
// TODO: only for certain versions of solc
//function equal(fixed a, fixed b, string message) public returns (bool result) {
// result = (a == b);
// emit AssertionEvent(result, message);
//}
// TODO: only for certain versions of solc
//function equal(ufixed a, ufixed b, string message) public returns (bool result) {
// result = (a == b);
// emit AssertionEvent(result, message);
//}
function equal(address a, address b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventAddress(result, message, "equal", a, b);
}
function equal(bytes32 a, bytes32 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventBytes32(result, message, "equal", a, b);
}
function equal(string memory a, string memory b, string memory message) public returns (bool result) {
result = (keccak256(abi.encodePacked(a)) == keccak256(abi.encodePacked(b)));
emit AssertionEventString(result, message, "equal", a, b);
}
function notEqual(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventUint(result, message, "notEqual", a, b);
}
function notEqual(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventInt(result, message, "notEqual", a, b);
}
function notEqual(bool a, bool b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventBool(result, message, "notEqual", a, b);
}
// TODO: only for certain versions of solc
//function notEqual(fixed a, fixed b, string message) public returns (bool result) {
// result = (a != b);
// emit AssertionEvent(result, message);
//}
// TODO: only for certain versions of solc
//function notEqual(ufixed a, ufixed b, string message) public returns (bool result) {
// result = (a != b);
// emit AssertionEvent(result, message);
//}
function notEqual(address a, address b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventAddress(result, message, "notEqual", a, b);
}
function notEqual(bytes32 a, bytes32 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventBytes32(result, message, "notEqual", a, b);
}
function notEqual(string memory a, string memory b, string memory message) public returns (bool result) {
result = (keccak256(abi.encodePacked(a)) != keccak256(abi.encodePacked(b)));
emit AssertionEventString(result, message, "notEqual", a, b);
}
/*----------------- Greater than --------------------*/
function greaterThan(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a > b);
emit AssertionEventUint(result, message, "greaterThan", a, b);
}
function greaterThan(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a > b);
emit AssertionEventInt(result, message, "greaterThan", a, b);
}
// TODO: safely compare between uint and int
function greaterThan(uint256 a, int256 b, string memory message) public returns (bool result) {
if(b < int(0)) {
// int is negative uint "a" always greater
result = true;
} else {
result = (a > uint(b));
}
emit AssertionEventUintInt(result, message, "greaterThan", a, b);
}
function greaterThan(int256 a, uint256 b, string memory message) public returns (bool result) {
if(a < int(0)) {
// int is negative uint "b" always greater
result = false;
} else {
result = (uint(a) > b);
}
emit AssertionEventIntUint(result, message, "greaterThan", a, b);
}
/*----------------- Lesser than --------------------*/
function lesserThan(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a < b);
emit AssertionEventUint(result, message, "lesserThan", a, b);
}
function lesserThan(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a < b);
emit AssertionEventInt(result, message, "lesserThan", a, b);
}
// TODO: safely compare between uint and int
function lesserThan(uint256 a, int256 b, string memory message) public returns (bool result) {
if(b < int(0)) {
// int is negative int "b" always lesser
result = false;
} else {
result = (a < uint(b));
}
emit AssertionEventUintInt(result, message, "lesserThan", a, b);
}
function lesserThan(int256 a, uint256 b, string memory message) public returns (bool result) {
if(a < int(0)) {
// int is negative int "a" always lesser
result = true;
} else {
result = (uint(a) < b);
}
emit AssertionEventIntUint(result, message, "lesserThan", a, b);
}
}
{
"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": {
"allowance(address,address)": "dd62ed3e",
"balanceOf(address)": "70a08231",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "_owner",
"type": "address"
},
{
"internalType": "address",
"name": "_spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "remaining",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "balance",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_from",
"type": "address"
},
{
"internalType": "address",
"name": "_to",
"type": "address"
},
{
"internalType": "uint256",
"name": "_value",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "success",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.12+commit.f00d7308"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "_owner",
"type": "address"
},
{
"internalType": "address",
"name": "_spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "remaining",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "balance",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_from",
"type": "address"
},
{
"internalType": "address",
"name": "_to",
"type": "address"
},
{
"internalType": "uint256",
"name": "_value",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "success",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"FineShop.sol": "ERC20"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"@openzeppelin/contracts@4.4.2/access/AccessControl.sol": {
"keccak256": "0xb9a137b317dc4806805f2259686186c0c053c32d80fe9c15ecdbf2eb1cf52849",
"license": "MIT",
"urls": [
"bzz-raw://8910762bea89696c6dc68a63be98c6ddd597955f8a29418661cc99d0ce090663",
"dweb:/ipfs/Qmed14MXXFdNYE22bCuVy5XVAMKUo1DncY8BF8VkyrvXmh"
]
},
"@openzeppelin/contracts@4.4.2/access/IAccessControl.sol": {
"keccak256": "0x59ce320a585d7e1f163cd70390a0ef2ff9cec832e2aa544293a00692465a7a57",
"license": "MIT",
"urls": [
"bzz-raw://bb2c137c343ef0c4c7ce7b18c1d108afdc9d315a04e48307288d2d05adcbde3a",
"dweb:/ipfs/QmUxhrAQM3MM3FF5j7AtcXLXguWCJBHJ14BRdVtuoQc8Fh"
]
},
"@openzeppelin/contracts@4.4.2/utils/Context.sol": {
"keccak256": "0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7",
"license": "MIT",
"urls": [
"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92",
"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3"
]
},
"@openzeppelin/contracts@4.4.2/utils/Strings.sol": {
"keccak256": "0x32c202bd28995dd20c4347b7c6467a6d3241c74c8ad3edcbb610cd9205916c45",
"license": "MIT",
"urls": [
"bzz-raw://8179c356adb19e70d6b31a1eedc8c5c7f0c00e669e2540f4099e3844c6074d30",
"dweb:/ipfs/QmWFbivarEobbqhS1go64ootVuHfVohBseerYy9FTEd1W2"
]
},
"@openzeppelin/contracts@4.4.2/utils/introspection/ERC165.sol": {
"keccak256": "0xd10975de010d89fd1c78dc5e8a9a7e7f496198085c151648f20cba166b32582b",
"license": "MIT",
"urls": [
"bzz-raw://fb0048dee081f6fffa5f74afc3fb328483c2a30504e94a0ddd2a5114d731ec4d",
"dweb:/ipfs/QmZptt1nmYoA5SgjwnSgWqgUSDgm4q52Yos3xhnMv3MV43"
]
},
"@openzeppelin/contracts@4.4.2/utils/introspection/IERC165.sol": {
"keccak256": "0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1",
"license": "MIT",
"urls": [
"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f",
"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy"
]
},
"FineShop.sol": {
"keccak256": "0x6128cd530b39cb78afecfcdc9490bc55bb0da8b2b201c16ed8b13f20eac64669",
"license": "MIT",
"urls": [
"bzz-raw://4f1c989dc636dd2fb9a3631cd795bfabca5f72a9ffbd405f4333f35440386562",
"dweb:/ipfs/QmVVvCf96u7xaniKa7NxEsZfqHuEVwymTHq8e16zh6u2e4"
]
}
},
"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": {
"@_2452": {
"entryPoint": null,
"id": 2452,
"parameterSlots": 0,
"returnSlots": 0
},
"@_444": {
"entryPoint": null,
"id": 444,
"parameterSlots": 2,
"returnSlots": 0
},
"@_grantRole_276": {
"entryPoint": 255,
"id": 276,
"parameterSlots": 2,
"returnSlots": 0
},
"@_msgSender_2081": {
"entryPoint": 604,
"id": 2081,
"parameterSlots": 0,
"returnSlots": 1
},
"@hasRole_81": {
"entryPoint": 497,
"id": 81,
"parameterSlots": 2,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 835,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x22": {
"entryPoint": 788,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:516:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "35:152:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "52:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "55:77:16",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "45:6:16"
},
"nodeType": "YulFunctionCall",
"src": "45:88:16"
},
"nodeType": "YulExpressionStatement",
"src": "45:88:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "149:1:16",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "152:4:16",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "142:6:16"
},
"nodeType": "YulFunctionCall",
"src": "142:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "142:15:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "173:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "176:4:16",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "166:6:16"
},
"nodeType": "YulFunctionCall",
"src": "166:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "166:15:16"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "7:180:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "244:269:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "254:22:16",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "268:4:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "274:1:16",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "264:3:16"
},
"nodeType": "YulFunctionCall",
"src": "264:12:16"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "254:6:16"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "285:38:16",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "315:4:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "321:1:16",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "311:3:16"
},
"nodeType": "YulFunctionCall",
"src": "311:12:16"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "289:18:16",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "362:51:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "376:27:16",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "390:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "398:4:16",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "386:3:16"
},
"nodeType": "YulFunctionCall",
"src": "386:17:16"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "376:6:16"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "342:18:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "335:6:16"
},
"nodeType": "YulFunctionCall",
"src": "335:26:16"
},
"nodeType": "YulIf",
"src": "332:81:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "465:42:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "479:16:16"
},
"nodeType": "YulFunctionCall",
"src": "479:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "479:18:16"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "429:18:16"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "452:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "460:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "449:2:16"
},
"nodeType": "YulFunctionCall",
"src": "449:14:16"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "426:2:16"
},
"nodeType": "YulFunctionCall",
"src": "426:38:16"
},
"nodeType": "YulIf",
"src": "423:84:16"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "228:4:16",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "237:6:16",
"type": ""
}
],
"src": "193:320:16"
}
]
},
"contents": "{\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n}\n",
"id": 16,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b506040518060400160405280600c81526020017f46494e45204469676974616c00000000000000000000000000000000000000008152506040518060400160405280600481526020017f46494e450000000000000000000000000000000000000000000000000000000081525081600090805190602001906200009692919062000264565b508060019080519060200190620000af92919062000264565b505050620000c76000801b33620000ff60201b60201c565b620000f97f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633620000ff60201b60201c565b62000379565b620001118282620001f160201b60201c565b620001ed576001600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620001926200025c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b828054620002729062000343565b90600052602060002090601f016020900481019282620002965760008555620002e2565b82601f10620002b157805160ff1916838001178555620002e2565b82800160010185558215620002e2579182015b82811115620002e1578251825591602001919060010190620002c4565b5b509050620002f19190620002f5565b5090565b5b8082111562000310576000816000905550600101620002f6565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200035c57607f821691505b6020821081141562000373576200037262000314565b5b50919050565b613cb880620003896000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c806342966c68116100de578063a217fddf11610097578063c87b56dd11610071578063c87b56dd1461046c578063d53913931461049c578063d547741f146104ba578063e985e9c5146104d657610173565b8063a217fddf14610416578063a22cb46514610434578063b88d4fde1461045057610173565b806342966c681461031c5780634f6ccce7146103385780636352211e1461036857806370a082311461039857806391d14854146103c857806395d89b41146103f857610173565b8063248a9ca311610130578063248a9ca31461024c5780632f2ff15d1461027c5780632f745c591461029857806336568abe146102c857806340d097c3146102e457806342842e0e1461030057610173565b806301ffc9a71461017857806306fdde03146101a8578063081812fc146101c6578063095ea7b3146101f657806318160ddd1461021257806323b872dd14610230575b600080fd5b610192600480360381019061018d9190612735565b610506565b60405161019f919061277d565b60405180910390f35b6101b0610518565b6040516101bd9190612831565b60405180910390f35b6101e060048036038101906101db9190612889565b6105aa565b6040516101ed91906128f7565b60405180910390f35b610210600480360381019061020b919061293e565b61062f565b005b61021a610747565b604051610227919061298d565b60405180910390f35b61024a600480360381019061024591906129a8565b610754565b005b61026660048036038101906102619190612a31565b6107b4565b6040516102739190612a6d565b60405180910390f35b61029660048036038101906102919190612a88565b6107d4565b005b6102b260048036038101906102ad919061293e565b6107fd565b6040516102bf919061298d565b60405180910390f35b6102e260048036038101906102dd9190612a88565b6108a2565b005b6102fe60048036038101906102f99190612ac8565b610925565b005b61031a600480360381019061031591906129a8565b61097e565b005b61033660048036038101906103319190612889565b61099e565b005b610352600480360381019061034d9190612889565b6109fa565b60405161035f919061298d565b60405180910390f35b610382600480360381019061037d9190612889565b610a6b565b60405161038f91906128f7565b60405180910390f35b6103b260048036038101906103ad9190612ac8565b610b1d565b6040516103bf919061298d565b60405180910390f35b6103e260048036038101906103dd9190612a88565b610bd5565b6040516103ef919061277d565b60405180910390f35b610400610c40565b60405161040d9190612831565b60405180910390f35b61041e610cd2565b60405161042b9190612a6d565b60405180910390f35b61044e60048036038101906104499190612b21565b610cd9565b005b61046a60048036038101906104659190612c96565b610cef565b005b61048660048036038101906104819190612889565b610d51565b6040516104939190612831565b60405180910390f35b6104a4610df8565b6040516104b19190612a6d565b60405180910390f35b6104d460048036038101906104cf9190612a88565b610e1c565b005b6104f060048036038101906104eb9190612d19565b610e45565b6040516104fd919061277d565b60405180910390f35b600061051182610ed9565b9050919050565b60606000805461052790612d88565b80601f016020809104026020016040519081016040528092919081815260200182805461055390612d88565b80156105a05780601f10610575576101008083540402835291602001916105a0565b820191906000526020600020905b81548152906001019060200180831161058357829003601f168201915b5050505050905090565b60006105b582610f53565b6105f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105eb90612e2c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061063a82610a6b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a290612ebe565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106ca610fbf565b73ffffffffffffffffffffffffffffffffffffffff1614806106f957506106f8816106f3610fbf565b610e45565b5b610738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072f90612f50565b60405180910390fd5b6107428383610fc7565b505050565b6000600880549050905090565b61076561075f610fbf565b82611080565b6107a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079b90612fe2565b60405180910390fd5b6107af83838361115e565b505050565b6000600a6000838152602001908152602001600020600101549050919050565b6107dd826107b4565b6107ee816107e9610fbf565b6113ba565b6107f88383611457565b505050565b600061080883610b1d565b8210610849576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084090613074565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6108aa610fbf565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090e90613106565b60405180910390fd5b6109218282611538565b5050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661095781610952610fbf565b6113ba565b6000610963600b61161a565b905061096f600b611628565b610979838261163e565b505050565b61099983838360405180602001604052806000815250610cef565b505050565b6109af6109a9610fbf565b82611080565b6109ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e590613198565b60405180910390fd5b6109f78161165c565b50565b6000610a04610747565b8210610a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3c9061322a565b60405180910390fd5b60088281548110610a5957610a5861324a565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0b906132eb565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b859061337d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060018054610c4f90612d88565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7b90612d88565b8015610cc85780601f10610c9d57610100808354040283529160200191610cc8565b820191906000526020600020905b815481529060010190602001808311610cab57829003601f168201915b5050505050905090565b6000801b81565b610ceb610ce4610fbf565b838361176d565b5050565b610d00610cfa610fbf565b83611080565b610d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3690612fe2565b60405180910390fd5b610d4b848484846118da565b50505050565b6060610d5c82610f53565b610d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d929061340f565b60405180910390fd5b6000610da5611936565b90506000815111610dc55760405180602001604052806000815250610df0565b80610dcf84611973565b604051602001610de092919061346b565b6040516020818303038152906040525b915050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610e25826107b4565b610e3681610e31610fbf565b6113ba565b610e408383611538565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610f4c5750610f4b82611ad4565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661103a83610a6b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061108b82610f53565b6110ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c190613501565b60405180910390fd5b60006110d583610a6b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061114457508373ffffffffffffffffffffffffffffffffffffffff1661112c846105aa565b73ffffffffffffffffffffffffffffffffffffffff16145b8061115557506111548185610e45565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661117e82610a6b565b73ffffffffffffffffffffffffffffffffffffffff16146111d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cb90613593565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123b90613625565b60405180910390fd5b61124f838383611b4e565b61125a600082610fc7565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112aa9190613674565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461130191906136a8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6113c48282610bd5565b611453576113e98173ffffffffffffffffffffffffffffffffffffffff166014611b5e565b6113f78360001c6020611b5e565b604051602001611408929190613796565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144a9190612831565b60405180910390fd5b5050565b6114618282610bd5565b611534576001600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506114d9610fbf565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6115428282610bd5565b15611616576000600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506115bb610fbf565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600081600001549050919050565b6001816000016000828254019250508190555050565b611658828260405180602001604052806000815250611d9a565b5050565b600061166782610a6b565b905061167581600084611b4e565b611680600083610fc7565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116d09190613674565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d39061381c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118cd919061277d565b60405180910390a3505050565b6118e584848461115e565b6118f184848484611df5565b611930576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611927906138ae565b60405180910390fd5b50505050565b60606040518060400160405280601981526020017f68747470733a2f2f7777772e66696e652e6469676974616c2f00000000000000815250905090565b606060008214156119bb576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611acf565b600082905060005b600082146119ed5780806119d6906138ce565b915050600a826119e69190613946565b91506119c3565b60008167ffffffffffffffff811115611a0957611a08612b6b565b5b6040519080825280601f01601f191660200182016040528015611a3b5781602001600182028036833780820191505090505b5090505b60008514611ac857600182611a549190613674565b9150600a85611a639190613977565b6030611a6f91906136a8565b60f81b818381518110611a8557611a8461324a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611ac19190613946565b9450611a3f565b8093505050505b919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b475750611b4682611f7d565b5b9050919050565b611b5983838361205f565b505050565b606060006002836002611b7191906139a8565b611b7b91906136a8565b67ffffffffffffffff811115611b9457611b93612b6b565b5b6040519080825280601f01601f191660200182016040528015611bc65781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611bfe57611bfd61324a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611c6257611c6161324a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611ca291906139a8565b611cac91906136a8565b90505b6001811115611d4c577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611cee57611ced61324a565b5b1a60f81b828281518110611d0557611d0461324a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611d4590613a02565b9050611caf565b5060008414611d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8790613a78565b60405180910390fd5b8091505092915050565b611da48383612173565b611db16000848484611df5565b611df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de7906138ae565b60405180910390fd5b505050565b6000611e168473ffffffffffffffffffffffffffffffffffffffff16612341565b15611f70578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e3f610fbf565b8786866040518563ffffffff1660e01b8152600401611e619493929190613aed565b6020604051808303816000875af1925050508015611e9d57506040513d601f19601f82011682018060405250810190611e9a9190613b4e565b60015b611f20573d8060008114611ecd576040519150601f19603f3d011682016040523d82523d6000602084013e611ed2565b606091505b50600081511415611f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0f906138ae565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611f75565b600190505b949350505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061204857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612058575061205782612354565b5b9050919050565b61206a8383836123be565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120ad576120a8816123c3565b6120ec565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146120eb576120ea838261240c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561212f5761212a81612579565b61216e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461216d5761216c828261264a565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121da90613bc7565b60405180910390fd5b6121ec81610f53565b1561222c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222390613c33565b60405180910390fd5b61223860008383611b4e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461228891906136a8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161241984610b1d565b6124239190613674565b9050600060076000848152602001908152602001600020549050818114612508576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061258d9190613674565b90506000600960008481526020019081526020016000205490506000600883815481106125bd576125bc61324a565b5b9060005260206000200154905080600883815481106125df576125de61324a565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061262e5761262d613c53565b5b6001900381819060005260206000200160009055905550505050565b600061265583610b1d565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612712816126dd565b811461271d57600080fd5b50565b60008135905061272f81612709565b92915050565b60006020828403121561274b5761274a6126d3565b5b600061275984828501612720565b91505092915050565b60008115159050919050565b61277781612762565b82525050565b6000602082019050612792600083018461276e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127d25780820151818401526020810190506127b7565b838111156127e1576000848401525b50505050565b6000601f19601f8301169050919050565b600061280382612798565b61280d81856127a3565b935061281d8185602086016127b4565b612826816127e7565b840191505092915050565b6000602082019050818103600083015261284b81846127f8565b905092915050565b6000819050919050565b61286681612853565b811461287157600080fd5b50565b6000813590506128838161285d565b92915050565b60006020828403121561289f5761289e6126d3565b5b60006128ad84828501612874565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128e1826128b6565b9050919050565b6128f1816128d6565b82525050565b600060208201905061290c60008301846128e8565b92915050565b61291b816128d6565b811461292657600080fd5b50565b60008135905061293881612912565b92915050565b60008060408385031215612955576129546126d3565b5b600061296385828601612929565b925050602061297485828601612874565b9150509250929050565b61298781612853565b82525050565b60006020820190506129a2600083018461297e565b92915050565b6000806000606084860312156129c1576129c06126d3565b5b60006129cf86828701612929565b93505060206129e086828701612929565b92505060406129f186828701612874565b9150509250925092565b6000819050919050565b612a0e816129fb565b8114612a1957600080fd5b50565b600081359050612a2b81612a05565b92915050565b600060208284031215612a4757612a466126d3565b5b6000612a5584828501612a1c565b91505092915050565b612a67816129fb565b82525050565b6000602082019050612a826000830184612a5e565b92915050565b60008060408385031215612a9f57612a9e6126d3565b5b6000612aad85828601612a1c565b9250506020612abe85828601612929565b9150509250929050565b600060208284031215612ade57612add6126d3565b5b6000612aec84828501612929565b91505092915050565b612afe81612762565b8114612b0957600080fd5b50565b600081359050612b1b81612af5565b92915050565b60008060408385031215612b3857612b376126d3565b5b6000612b4685828601612929565b9250506020612b5785828601612b0c565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ba3826127e7565b810181811067ffffffffffffffff82111715612bc257612bc1612b6b565b5b80604052505050565b6000612bd56126c9565b9050612be18282612b9a565b919050565b600067ffffffffffffffff821115612c0157612c00612b6b565b5b612c0a826127e7565b9050602081019050919050565b82818337600083830152505050565b6000612c39612c3484612be6565b612bcb565b905082815260208101848484011115612c5557612c54612b66565b5b612c60848285612c17565b509392505050565b600082601f830112612c7d57612c7c612b61565b5b8135612c8d848260208601612c26565b91505092915050565b60008060008060808587031215612cb057612caf6126d3565b5b6000612cbe87828801612929565b9450506020612ccf87828801612929565b9350506040612ce087828801612874565b925050606085013567ffffffffffffffff811115612d0157612d006126d8565b5b612d0d87828801612c68565b91505092959194509250565b60008060408385031215612d3057612d2f6126d3565b5b6000612d3e85828601612929565b9250506020612d4f85828601612929565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612da057607f821691505b60208210811415612db457612db3612d59565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612e16602c836127a3565b9150612e2182612dba565b604082019050919050565b60006020820190508181036000830152612e4581612e09565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ea86021836127a3565b9150612eb382612e4c565b604082019050919050565b60006020820190508181036000830152612ed781612e9b565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612f3a6038836127a3565b9150612f4582612ede565b604082019050919050565b60006020820190508181036000830152612f6981612f2d565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612fcc6031836127a3565b9150612fd782612f70565b604082019050919050565b60006020820190508181036000830152612ffb81612fbf565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b600061305e602b836127a3565b915061306982613002565b604082019050919050565b6000602082019050818103600083015261308d81613051565b9050919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b60006130f0602f836127a3565b91506130fb82613094565b604082019050919050565b6000602082019050818103600083015261311f816130e3565b9050919050565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b60006131826030836127a3565b915061318d82613126565b604082019050919050565b600060208201905081810360008301526131b181613175565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613214602c836127a3565b915061321f826131b8565b604082019050919050565b6000602082019050818103600083015261324381613207565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006132d56029836127a3565b91506132e082613279565b604082019050919050565b60006020820190508181036000830152613304816132c8565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613367602a836127a3565b91506133728261330b565b604082019050919050565b600060208201905081810360008301526133968161335a565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006133f9602f836127a3565b91506134048261339d565b604082019050919050565b60006020820190508181036000830152613428816133ec565b9050919050565b600081905092915050565b600061344582612798565b61344f818561342f565b935061345f8185602086016127b4565b80840191505092915050565b6000613477828561343a565b9150613483828461343a565b91508190509392505050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006134eb602c836127a3565b91506134f68261348f565b604082019050919050565b6000602082019050818103600083015261351a816134de565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b600061357d6029836127a3565b915061358882613521565b604082019050919050565b600060208201905081810360008301526135ac81613570565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061360f6024836127a3565b915061361a826135b3565b604082019050919050565b6000602082019050818103600083015261363e81613602565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061367f82612853565b915061368a83612853565b92508282101561369d5761369c613645565b5b828203905092915050565b60006136b382612853565b91506136be83612853565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136f3576136f2613645565b5b828201905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b600061373460178361342f565b915061373f826136fe565b601782019050919050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b600061378060118361342f565b915061378b8261374a565b601182019050919050565b60006137a182613727565b91506137ad828561343a565b91506137b882613773565b91506137c4828461343a565b91508190509392505050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006138066019836127a3565b9150613811826137d0565b602082019050919050565b60006020820190508181036000830152613835816137f9565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006138986032836127a3565b91506138a38261383c565b604082019050919050565b600060208201905081810360008301526138c78161388b565b9050919050565b60006138d982612853565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561390c5761390b613645565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061395182612853565b915061395c83612853565b92508261396c5761396b613917565b5b828204905092915050565b600061398282612853565b915061398d83612853565b92508261399d5761399c613917565b5b828206905092915050565b60006139b382612853565b91506139be83612853565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139f7576139f6613645565b5b828202905092915050565b6000613a0d82612853565b91506000821415613a2157613a20613645565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000613a626020836127a3565b9150613a6d82613a2c565b602082019050919050565b60006020820190508181036000830152613a9181613a55565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613abf82613a98565b613ac98185613aa3565b9350613ad98185602086016127b4565b613ae2816127e7565b840191505092915050565b6000608082019050613b0260008301876128e8565b613b0f60208301866128e8565b613b1c604083018561297e565b8181036060830152613b2e8184613ab4565b905095945050505050565b600081519050613b4881612709565b92915050565b600060208284031215613b6457613b636126d3565b5b6000613b7284828501613b39565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613bb16020836127a3565b9150613bbc82613b7b565b602082019050919050565b60006020820190508181036000830152613be081613ba4565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613c1d601c836127a3565b9150613c2882613be7565b602082019050919050565b60006020820190508181036000830152613c4c81613c10565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea26469706673582212205001e9651d58422593998a060c117484cc691d26c494777c4ec75275e39265e164736f6c634300080c0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0xC DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x46494E45204469676974616C0000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x4 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x46494E4500000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 PUSH1 0x0 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x96 SWAP3 SWAP2 SWAP1 PUSH3 0x264 JUMP JUMPDEST POP DUP1 PUSH1 0x1 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xAF SWAP3 SWAP2 SWAP1 PUSH3 0x264 JUMP JUMPDEST POP POP POP PUSH3 0xC7 PUSH1 0x0 DUP1 SHL CALLER PUSH3 0xFF PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0xF9 PUSH32 0x9F2DF0FED2C77648DE5860A4CC508CD0818C85B8B8A1AB4CEEEF8D981C8956A6 CALLER PUSH3 0xFF PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x379 JUMP JUMPDEST PUSH3 0x111 DUP3 DUP3 PUSH3 0x1F1 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x1ED JUMPI PUSH1 0x1 PUSH1 0xA PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH3 0x192 PUSH3 0x25C PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0x2F8788117E7EFF1D82E926EC794901D17C78024A50270940304540A733656F0D PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x272 SWAP1 PUSH3 0x343 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x296 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x2E2 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x2B1 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x2E2 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x2E2 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x2E1 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x2C4 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x2F1 SWAP2 SWAP1 PUSH3 0x2F5 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x310 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x2F6 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x35C JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x373 JUMPI PUSH3 0x372 PUSH3 0x314 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3CB8 DUP1 PUSH3 0x389 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 0x173 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x42966C68 GT PUSH2 0xDE JUMPI DUP1 PUSH4 0xA217FDDF GT PUSH2 0x97 JUMPI DUP1 PUSH4 0xC87B56DD GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x46C JUMPI DUP1 PUSH4 0xD5391393 EQ PUSH2 0x49C JUMPI DUP1 PUSH4 0xD547741F EQ PUSH2 0x4BA JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x4D6 JUMPI PUSH2 0x173 JUMP JUMPDEST DUP1 PUSH4 0xA217FDDF EQ PUSH2 0x416 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x434 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x450 JUMPI PUSH2 0x173 JUMP JUMPDEST DUP1 PUSH4 0x42966C68 EQ PUSH2 0x31C JUMPI DUP1 PUSH4 0x4F6CCCE7 EQ PUSH2 0x338 JUMPI DUP1 PUSH4 0x6352211E EQ PUSH2 0x368 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x398 JUMPI DUP1 PUSH4 0x91D14854 EQ PUSH2 0x3C8 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x3F8 JUMPI PUSH2 0x173 JUMP JUMPDEST DUP1 PUSH4 0x248A9CA3 GT PUSH2 0x130 JUMPI DUP1 PUSH4 0x248A9CA3 EQ PUSH2 0x24C JUMPI DUP1 PUSH4 0x2F2FF15D EQ PUSH2 0x27C JUMPI DUP1 PUSH4 0x2F745C59 EQ PUSH2 0x298 JUMPI DUP1 PUSH4 0x36568ABE EQ PUSH2 0x2C8 JUMPI DUP1 PUSH4 0x40D097C3 EQ PUSH2 0x2E4 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x300 JUMPI PUSH2 0x173 JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x178 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x1A8 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x1C6 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x1F6 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x212 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x230 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x192 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x18D SWAP2 SWAP1 PUSH2 0x2735 JUMP JUMPDEST PUSH2 0x506 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x19F SWAP2 SWAP1 PUSH2 0x277D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1B0 PUSH2 0x518 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BD SWAP2 SWAP1 PUSH2 0x2831 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1E0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1DB SWAP2 SWAP1 PUSH2 0x2889 JUMP JUMPDEST PUSH2 0x5AA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1ED SWAP2 SWAP1 PUSH2 0x28F7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x210 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x20B SWAP2 SWAP1 PUSH2 0x293E JUMP JUMPDEST PUSH2 0x62F JUMP JUMPDEST STOP JUMPDEST PUSH2 0x21A PUSH2 0x747 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x227 SWAP2 SWAP1 PUSH2 0x298D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x24A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x245 SWAP2 SWAP1 PUSH2 0x29A8 JUMP JUMPDEST PUSH2 0x754 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x266 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x261 SWAP2 SWAP1 PUSH2 0x2A31 JUMP JUMPDEST PUSH2 0x7B4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x273 SWAP2 SWAP1 PUSH2 0x2A6D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x296 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x291 SWAP2 SWAP1 PUSH2 0x2A88 JUMP JUMPDEST PUSH2 0x7D4 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2B2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2AD SWAP2 SWAP1 PUSH2 0x293E JUMP JUMPDEST PUSH2 0x7FD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2BF SWAP2 SWAP1 PUSH2 0x298D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2E2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2DD SWAP2 SWAP1 PUSH2 0x2A88 JUMP JUMPDEST PUSH2 0x8A2 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2FE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2F9 SWAP2 SWAP1 PUSH2 0x2AC8 JUMP JUMPDEST PUSH2 0x925 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x31A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x315 SWAP2 SWAP1 PUSH2 0x29A8 JUMP JUMPDEST PUSH2 0x97E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x336 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x331 SWAP2 SWAP1 PUSH2 0x2889 JUMP JUMPDEST PUSH2 0x99E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x352 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x34D SWAP2 SWAP1 PUSH2 0x2889 JUMP JUMPDEST PUSH2 0x9FA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x35F SWAP2 SWAP1 PUSH2 0x298D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x382 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x37D SWAP2 SWAP1 PUSH2 0x2889 JUMP JUMPDEST PUSH2 0xA6B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x38F SWAP2 SWAP1 PUSH2 0x28F7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3B2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3AD SWAP2 SWAP1 PUSH2 0x2AC8 JUMP JUMPDEST PUSH2 0xB1D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3BF SWAP2 SWAP1 PUSH2 0x298D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3E2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3DD SWAP2 SWAP1 PUSH2 0x2A88 JUMP JUMPDEST PUSH2 0xBD5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3EF SWAP2 SWAP1 PUSH2 0x277D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x400 PUSH2 0xC40 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x40D SWAP2 SWAP1 PUSH2 0x2831 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x41E PUSH2 0xCD2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x42B SWAP2 SWAP1 PUSH2 0x2A6D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x44E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x449 SWAP2 SWAP1 PUSH2 0x2B21 JUMP JUMPDEST PUSH2 0xCD9 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x46A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x465 SWAP2 SWAP1 PUSH2 0x2C96 JUMP JUMPDEST PUSH2 0xCEF JUMP JUMPDEST STOP JUMPDEST PUSH2 0x486 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x481 SWAP2 SWAP1 PUSH2 0x2889 JUMP JUMPDEST PUSH2 0xD51 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x493 SWAP2 SWAP1 PUSH2 0x2831 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4A4 PUSH2 0xDF8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4B1 SWAP2 SWAP1 PUSH2 0x2A6D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4D4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x4CF SWAP2 SWAP1 PUSH2 0x2A88 JUMP JUMPDEST PUSH2 0xE1C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x4F0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x4EB SWAP2 SWAP1 PUSH2 0x2D19 JUMP JUMPDEST PUSH2 0xE45 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4FD SWAP2 SWAP1 PUSH2 0x277D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 PUSH2 0x511 DUP3 PUSH2 0xED9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x527 SWAP1 PUSH2 0x2D88 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 0x553 SWAP1 PUSH2 0x2D88 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x5A0 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x575 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x5A0 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 0x583 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5B5 DUP3 PUSH2 0xF53 JUMP JUMPDEST PUSH2 0x5F4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5EB SWAP1 PUSH2 0x2E2C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x63A DUP3 PUSH2 0xA6B JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x6AB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6A2 SWAP1 PUSH2 0x2EBE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x6CA PUSH2 0xFBF JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x6F9 JUMPI POP PUSH2 0x6F8 DUP2 PUSH2 0x6F3 PUSH2 0xFBF JUMP JUMPDEST PUSH2 0xE45 JUMP JUMPDEST JUMPDEST PUSH2 0x738 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x72F SWAP1 PUSH2 0x2F50 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x742 DUP4 DUP4 PUSH2 0xFC7 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 DUP1 SLOAD SWAP1 POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x765 PUSH2 0x75F PUSH2 0xFBF JUMP JUMPDEST DUP3 PUSH2 0x1080 JUMP JUMPDEST PUSH2 0x7A4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x79B SWAP1 PUSH2 0x2FE2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x7AF DUP4 DUP4 DUP4 PUSH2 0x115E JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x7DD DUP3 PUSH2 0x7B4 JUMP JUMPDEST PUSH2 0x7EE DUP2 PUSH2 0x7E9 PUSH2 0xFBF JUMP JUMPDEST PUSH2 0x13BA JUMP JUMPDEST PUSH2 0x7F8 DUP4 DUP4 PUSH2 0x1457 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x808 DUP4 PUSH2 0xB1D JUMP JUMPDEST DUP3 LT PUSH2 0x849 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x840 SWAP1 PUSH2 0x3074 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x6 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x8AA PUSH2 0xFBF JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x917 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x90E SWAP1 PUSH2 0x3106 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x921 DUP3 DUP3 PUSH2 0x1538 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH32 0x9F2DF0FED2C77648DE5860A4CC508CD0818C85B8B8A1AB4CEEEF8D981C8956A6 PUSH2 0x957 DUP2 PUSH2 0x952 PUSH2 0xFBF JUMP JUMPDEST PUSH2 0x13BA JUMP JUMPDEST PUSH1 0x0 PUSH2 0x963 PUSH1 0xB PUSH2 0x161A JUMP JUMPDEST SWAP1 POP PUSH2 0x96F PUSH1 0xB PUSH2 0x1628 JUMP JUMPDEST PUSH2 0x979 DUP4 DUP3 PUSH2 0x163E JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x999 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0xCEF JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x9AF PUSH2 0x9A9 PUSH2 0xFBF JUMP JUMPDEST DUP3 PUSH2 0x1080 JUMP JUMPDEST PUSH2 0x9EE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9E5 SWAP1 PUSH2 0x3198 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x9F7 DUP2 PUSH2 0x165C JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA04 PUSH2 0x747 JUMP JUMPDEST DUP3 LT PUSH2 0xA45 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA3C SWAP1 PUSH2 0x322A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x8 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0xA59 JUMPI PUSH2 0xA58 PUSH2 0x324A JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x2 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xB14 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB0B SWAP1 PUSH2 0x32EB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xB8E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB85 SWAP1 PUSH2 0x337D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x3 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0xC4F SWAP1 PUSH2 0x2D88 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 0xC7B SWAP1 PUSH2 0x2D88 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xCC8 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xC9D JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xCC8 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 0xCAB JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 SHL DUP2 JUMP JUMPDEST PUSH2 0xCEB PUSH2 0xCE4 PUSH2 0xFBF JUMP JUMPDEST DUP4 DUP4 PUSH2 0x176D JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0xD00 PUSH2 0xCFA PUSH2 0xFBF JUMP JUMPDEST DUP4 PUSH2 0x1080 JUMP JUMPDEST PUSH2 0xD3F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD36 SWAP1 PUSH2 0x2FE2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xD4B DUP5 DUP5 DUP5 DUP5 PUSH2 0x18DA JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0xD5C DUP3 PUSH2 0xF53 JUMP JUMPDEST PUSH2 0xD9B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD92 SWAP1 PUSH2 0x340F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xDA5 PUSH2 0x1936 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0xDC5 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0xDF0 JUMP JUMPDEST DUP1 PUSH2 0xDCF DUP5 PUSH2 0x1973 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xDE0 SWAP3 SWAP2 SWAP1 PUSH2 0x346B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x9F2DF0FED2C77648DE5860A4CC508CD0818C85B8B8A1AB4CEEEF8D981C8956A6 DUP2 JUMP JUMPDEST PUSH2 0xE25 DUP3 PUSH2 0x7B4 JUMP JUMPDEST PUSH2 0xE36 DUP2 PUSH2 0xE31 PUSH2 0xFBF JUMP JUMPDEST PUSH2 0x13BA JUMP JUMPDEST PUSH2 0xE40 DUP4 DUP4 PUSH2 0x1538 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x7965DB0B00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0xF4C JUMPI POP PUSH2 0xF4B DUP3 PUSH2 0x1AD4 JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x2 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x103A DUP4 PUSH2 0xA6B JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x108B DUP3 PUSH2 0xF53 JUMP JUMPDEST PUSH2 0x10CA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x10C1 SWAP1 PUSH2 0x3501 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x10D5 DUP4 PUSH2 0xA6B JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x1144 JUMPI POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x112C DUP5 PUSH2 0x5AA JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST DUP1 PUSH2 0x1155 JUMPI POP PUSH2 0x1154 DUP2 DUP6 PUSH2 0xE45 JUMP JUMPDEST JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x117E DUP3 PUSH2 0xA6B JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x11D4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x11CB SWAP1 PUSH2 0x3593 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1244 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x123B SWAP1 PUSH2 0x3625 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x124F DUP4 DUP4 DUP4 PUSH2 0x1B4E JUMP JUMPDEST PUSH2 0x125A PUSH1 0x0 DUP3 PUSH2 0xFC7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x12AA SWAP2 SWAP1 PUSH2 0x3674 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1301 SWAP2 SWAP1 PUSH2 0x36A8 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP JUMP JUMPDEST PUSH2 0x13C4 DUP3 DUP3 PUSH2 0xBD5 JUMP JUMPDEST PUSH2 0x1453 JUMPI PUSH2 0x13E9 DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x14 PUSH2 0x1B5E JUMP JUMPDEST PUSH2 0x13F7 DUP4 PUSH1 0x0 SHR PUSH1 0x20 PUSH2 0x1B5E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x1408 SWAP3 SWAP2 SWAP1 PUSH2 0x3796 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x144A SWAP2 SWAP1 PUSH2 0x2831 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x1461 DUP3 DUP3 PUSH2 0xBD5 JUMP JUMPDEST PUSH2 0x1534 JUMPI PUSH1 0x1 PUSH1 0xA PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH2 0x14D9 PUSH2 0xFBF JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0x2F8788117E7EFF1D82E926EC794901D17C78024A50270940304540A733656F0D PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x1542 DUP3 DUP3 PUSH2 0xBD5 JUMP JUMPDEST ISZERO PUSH2 0x1616 JUMPI PUSH1 0x0 PUSH1 0xA PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH2 0x15BB PUSH2 0xFBF JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0xF6391F5C32D9C69D2A47EA670B442974B53935D1EDC7FD64EB21E047A839171B PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 PUSH1 0x0 ADD PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH2 0x1658 DUP3 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x1D9A JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1667 DUP3 PUSH2 0xA6B JUMP JUMPDEST SWAP1 POP PUSH2 0x1675 DUP2 PUSH1 0x0 DUP5 PUSH2 0x1B4E JUMP JUMPDEST PUSH2 0x1680 PUSH1 0x0 DUP4 PUSH2 0xFC7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x16D0 SWAP2 SWAP1 PUSH2 0x3674 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x2 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 SSTORE DUP2 PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x17DC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x17D3 SWAP1 PUSH2 0x381C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x5 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 DUP4 PUSH1 0x40 MLOAD PUSH2 0x18CD SWAP2 SWAP1 PUSH2 0x277D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x18E5 DUP5 DUP5 DUP5 PUSH2 0x115E JUMP JUMPDEST PUSH2 0x18F1 DUP5 DUP5 DUP5 DUP5 PUSH2 0x1DF5 JUMP JUMPDEST PUSH2 0x1930 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1927 SWAP1 PUSH2 0x38AE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x19 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x68747470733A2F2F7777772E66696E652E6469676974616C2F00000000000000 DUP2 MSTORE POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 EQ ISZERO PUSH2 0x19BB JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x3000000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP1 POP PUSH2 0x1ACF JUMP JUMPDEST PUSH1 0x0 DUP3 SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x0 DUP3 EQ PUSH2 0x19ED JUMPI DUP1 DUP1 PUSH2 0x19D6 SWAP1 PUSH2 0x38CE JUMP JUMPDEST SWAP2 POP POP PUSH1 0xA DUP3 PUSH2 0x19E6 SWAP2 SWAP1 PUSH2 0x3946 JUMP JUMPDEST SWAP2 POP PUSH2 0x19C3 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1A09 JUMPI PUSH2 0x1A08 PUSH2 0x2B6B JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1A3B JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x1 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP JUMPDEST PUSH1 0x0 DUP6 EQ PUSH2 0x1AC8 JUMPI PUSH1 0x1 DUP3 PUSH2 0x1A54 SWAP2 SWAP1 PUSH2 0x3674 JUMP JUMPDEST SWAP2 POP PUSH1 0xA DUP6 PUSH2 0x1A63 SWAP2 SWAP1 PUSH2 0x3977 JUMP JUMPDEST PUSH1 0x30 PUSH2 0x1A6F SWAP2 SWAP1 PUSH2 0x36A8 JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x1A85 JUMPI PUSH2 0x1A84 PUSH2 0x324A JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0xA DUP6 PUSH2 0x1AC1 SWAP2 SWAP1 PUSH2 0x3946 JUMP JUMPDEST SWAP5 POP PUSH2 0x1A3F JUMP JUMPDEST DUP1 SWAP4 POP POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x780E9D6300000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x1B47 JUMPI POP PUSH2 0x1B46 DUP3 PUSH2 0x1F7D JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1B59 DUP4 DUP4 DUP4 PUSH2 0x205F JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH1 0x2 DUP4 PUSH1 0x2 PUSH2 0x1B71 SWAP2 SWAP1 PUSH2 0x39A8 JUMP JUMPDEST PUSH2 0x1B7B SWAP2 SWAP1 PUSH2 0x36A8 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1B94 JUMPI PUSH2 0x1B93 PUSH2 0x2B6B JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1BC6 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x1 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP PUSH32 0x3000000000000000000000000000000000000000000000000000000000000000 DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x1BFE JUMPI PUSH2 0x1BFD PUSH2 0x324A JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH32 0x7800000000000000000000000000000000000000000000000000000000000000 DUP2 PUSH1 0x1 DUP2 MLOAD DUP2 LT PUSH2 0x1C62 JUMPI PUSH2 0x1C61 PUSH2 0x324A JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0x0 PUSH1 0x1 DUP5 PUSH1 0x2 PUSH2 0x1CA2 SWAP2 SWAP1 PUSH2 0x39A8 JUMP JUMPDEST PUSH2 0x1CAC SWAP2 SWAP1 PUSH2 0x36A8 JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH1 0x1 DUP2 GT ISZERO PUSH2 0x1D4C JUMPI PUSH32 0x3031323334353637383961626364656600000000000000000000000000000000 PUSH1 0xF DUP7 AND PUSH1 0x10 DUP2 LT PUSH2 0x1CEE JUMPI PUSH2 0x1CED PUSH2 0x324A JUMP JUMPDEST JUMPDEST BYTE PUSH1 0xF8 SHL DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x1D05 JUMPI PUSH2 0x1D04 PUSH2 0x324A JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0x4 DUP6 SWAP1 SHR SWAP5 POP DUP1 PUSH2 0x1D45 SWAP1 PUSH2 0x3A02 JUMP JUMPDEST SWAP1 POP PUSH2 0x1CAF JUMP JUMPDEST POP PUSH1 0x0 DUP5 EQ PUSH2 0x1D90 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1D87 SWAP1 PUSH2 0x3A78 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1DA4 DUP4 DUP4 PUSH2 0x2173 JUMP JUMPDEST PUSH2 0x1DB1 PUSH1 0x0 DUP5 DUP5 DUP5 PUSH2 0x1DF5 JUMP JUMPDEST PUSH2 0x1DF0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1DE7 SWAP1 PUSH2 0x38AE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E16 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x2341 JUMP JUMPDEST ISZERO PUSH2 0x1F70 JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 PUSH2 0x1E3F PUSH2 0xFBF JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1E61 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3AED JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1E9D JUMPI POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1E9A SWAP2 SWAP1 PUSH2 0x3B4E JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x1F20 JUMPI RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x1ECD 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 0x1ED2 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH1 0x0 DUP2 MLOAD EQ ISZERO PUSH2 0x1F18 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F0F SWAP1 PUSH2 0x38AE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 MLOAD DUP2 PUSH1 0x20 ADD REVERT JUMPDEST PUSH4 0x150B7A02 PUSH1 0xE0 SHL PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP2 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP2 POP POP PUSH2 0x1F75 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x80AC58CD00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x2048 JUMPI POP PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH2 0x2058 JUMPI POP PUSH2 0x2057 DUP3 PUSH2 0x2354 JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x206A DUP4 DUP4 DUP4 PUSH2 0x23BE JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x20AD JUMPI PUSH2 0x20A8 DUP2 PUSH2 0x23C3 JUMP JUMPDEST PUSH2 0x20EC JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x20EB JUMPI PUSH2 0x20EA DUP4 DUP3 PUSH2 0x240C JUMP JUMPDEST JUMPDEST JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x212F JUMPI PUSH2 0x212A DUP2 PUSH2 0x2579 JUMP JUMPDEST PUSH2 0x216E JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x216D JUMPI PUSH2 0x216C DUP3 DUP3 PUSH2 0x264A JUMP JUMPDEST JUMPDEST JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x21E3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x21DA SWAP1 PUSH2 0x3BC7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x21EC DUP2 PUSH2 0xF53 JUMP JUMPDEST ISZERO PUSH2 0x222C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2223 SWAP1 PUSH2 0x3C33 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2238 PUSH1 0x0 DUP4 DUP4 PUSH2 0x1B4E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x2288 SWAP2 SWAP1 PUSH2 0x36A8 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 EXTCODESIZE SWAP1 POP PUSH1 0x0 DUP2 GT SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x8 DUP1 SLOAD SWAP1 POP PUSH1 0x9 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH1 0x8 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP SSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH2 0x2419 DUP5 PUSH2 0xB1D JUMP JUMPDEST PUSH2 0x2423 SWAP2 SWAP1 PUSH2 0x3674 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x7 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 EQ PUSH2 0x2508 JUMPI PUSH1 0x0 PUSH1 0x6 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP1 PUSH1 0x6 PUSH1 0x0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x7 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP POP JUMPDEST PUSH1 0x7 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SSTORE PUSH1 0x6 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x8 DUP1 SLOAD SWAP1 POP PUSH2 0x258D SWAP2 SWAP1 PUSH2 0x3674 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x9 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP PUSH1 0x0 PUSH1 0x8 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x25BD JUMPI PUSH2 0x25BC PUSH2 0x324A JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP DUP1 PUSH1 0x8 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x25DF JUMPI PUSH2 0x25DE PUSH2 0x324A JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x9 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH1 0x9 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SSTORE PUSH1 0x8 DUP1 SLOAD DUP1 PUSH2 0x262E JUMPI PUSH2 0x262D PUSH2 0x3C53 JUMP JUMPDEST 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 0x2655 DUP4 PUSH2 0xB1D JUMP JUMPDEST SWAP1 POP DUP2 PUSH1 0x6 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x7 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2712 DUP2 PUSH2 0x26DD JUMP JUMPDEST DUP2 EQ PUSH2 0x271D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x272F DUP2 PUSH2 0x2709 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x274B JUMPI PUSH2 0x274A PUSH2 0x26D3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2759 DUP5 DUP3 DUP6 ADD PUSH2 0x2720 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2777 DUP2 PUSH2 0x2762 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2792 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x276E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x27D2 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x27B7 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x27E1 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2803 DUP3 PUSH2 0x2798 JUMP JUMPDEST PUSH2 0x280D DUP2 DUP6 PUSH2 0x27A3 JUMP JUMPDEST SWAP4 POP PUSH2 0x281D DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x27B4 JUMP JUMPDEST PUSH2 0x2826 DUP2 PUSH2 0x27E7 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x284B DUP2 DUP5 PUSH2 0x27F8 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2866 DUP2 PUSH2 0x2853 JUMP JUMPDEST DUP2 EQ PUSH2 0x2871 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2883 DUP2 PUSH2 0x285D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x289F JUMPI PUSH2 0x289E PUSH2 0x26D3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x28AD DUP5 DUP3 DUP6 ADD PUSH2 0x2874 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x28E1 DUP3 PUSH2 0x28B6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x28F1 DUP2 PUSH2 0x28D6 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x290C PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x28E8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x291B DUP2 PUSH2 0x28D6 JUMP JUMPDEST DUP2 EQ PUSH2 0x2926 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2938 DUP2 PUSH2 0x2912 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2955 JUMPI PUSH2 0x2954 PUSH2 0x26D3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2963 DUP6 DUP3 DUP7 ADD PUSH2 0x2929 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2974 DUP6 DUP3 DUP7 ADD PUSH2 0x2874 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x2987 DUP2 PUSH2 0x2853 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x29A2 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x297E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x29C1 JUMPI PUSH2 0x29C0 PUSH2 0x26D3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x29CF DUP7 DUP3 DUP8 ADD PUSH2 0x2929 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x29E0 DUP7 DUP3 DUP8 ADD PUSH2 0x2929 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x29F1 DUP7 DUP3 DUP8 ADD PUSH2 0x2874 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2A0E DUP2 PUSH2 0x29FB JUMP JUMPDEST DUP2 EQ PUSH2 0x2A19 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2A2B DUP2 PUSH2 0x2A05 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2A47 JUMPI PUSH2 0x2A46 PUSH2 0x26D3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2A55 DUP5 DUP3 DUP6 ADD PUSH2 0x2A1C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2A67 DUP2 PUSH2 0x29FB JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2A82 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2A5E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2A9F JUMPI PUSH2 0x2A9E PUSH2 0x26D3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2AAD DUP6 DUP3 DUP7 ADD PUSH2 0x2A1C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2ABE DUP6 DUP3 DUP7 ADD PUSH2 0x2929 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2ADE JUMPI PUSH2 0x2ADD PUSH2 0x26D3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2AEC DUP5 DUP3 DUP6 ADD PUSH2 0x2929 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2AFE DUP2 PUSH2 0x2762 JUMP JUMPDEST DUP2 EQ PUSH2 0x2B09 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2B1B DUP2 PUSH2 0x2AF5 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2B38 JUMPI PUSH2 0x2B37 PUSH2 0x26D3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2B46 DUP6 DUP3 DUP7 ADD PUSH2 0x2929 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2B57 DUP6 DUP3 DUP7 ADD PUSH2 0x2B0C JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x2BA3 DUP3 PUSH2 0x27E7 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x2BC2 JUMPI PUSH2 0x2BC1 PUSH2 0x2B6B JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2BD5 PUSH2 0x26C9 JUMP JUMPDEST SWAP1 POP PUSH2 0x2BE1 DUP3 DUP3 PUSH2 0x2B9A JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x2C01 JUMPI PUSH2 0x2C00 PUSH2 0x2B6B JUMP JUMPDEST JUMPDEST PUSH2 0x2C0A DUP3 PUSH2 0x27E7 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2C39 PUSH2 0x2C34 DUP5 PUSH2 0x2BE6 JUMP JUMPDEST PUSH2 0x2BCB JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x2C55 JUMPI PUSH2 0x2C54 PUSH2 0x2B66 JUMP JUMPDEST JUMPDEST PUSH2 0x2C60 DUP5 DUP3 DUP6 PUSH2 0x2C17 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x2C7D JUMPI PUSH2 0x2C7C PUSH2 0x2B61 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x2C8D DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x2C26 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x2CB0 JUMPI PUSH2 0x2CAF PUSH2 0x26D3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2CBE DUP8 DUP3 DUP9 ADD PUSH2 0x2929 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x2CCF DUP8 DUP3 DUP9 ADD PUSH2 0x2929 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x2CE0 DUP8 DUP3 DUP9 ADD PUSH2 0x2874 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2D01 JUMPI PUSH2 0x2D00 PUSH2 0x26D8 JUMP JUMPDEST JUMPDEST PUSH2 0x2D0D DUP8 DUP3 DUP9 ADD PUSH2 0x2C68 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 0x2D30 JUMPI PUSH2 0x2D2F PUSH2 0x26D3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2D3E DUP6 DUP3 DUP7 ADD PUSH2 0x2929 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2D4F DUP6 DUP3 DUP7 ADD PUSH2 0x2929 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x2DA0 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x2DB4 JUMPI PUSH2 0x2DB3 PUSH2 0x2D59 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76656420717565727920666F72206E6F6E6578 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E16 PUSH1 0x2C DUP4 PUSH2 0x27A3 JUMP JUMPDEST SWAP2 POP PUSH2 0x2E21 DUP3 PUSH2 0x2DBA JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2E45 DUP2 PUSH2 0x2E09 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7200000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2EA8 PUSH1 0x21 DUP4 PUSH2 0x27A3 JUMP JUMPDEST SWAP2 POP PUSH2 0x2EB3 DUP3 PUSH2 0x2E4C JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2ED7 DUP2 PUSH2 0x2E9B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F74206F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6572206E6F7220617070726F76656420666F7220616C6C0000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2F3A PUSH1 0x38 DUP4 PUSH2 0x27A3 JUMP JUMPDEST SWAP2 POP PUSH2 0x2F45 DUP3 PUSH2 0x2EDE JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2F69 DUP2 PUSH2 0x2F2D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E736665722063616C6C6572206973206E6F74206F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x776E6572206E6F7220617070726F766564000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2FCC PUSH1 0x31 DUP4 PUSH2 0x27A3 JUMP JUMPDEST SWAP2 POP PUSH2 0x2FD7 DUP3 PUSH2 0x2F70 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2FFB DUP2 PUSH2 0x2FBF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x455243373231456E756D657261626C653A206F776E657220696E646578206F75 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x74206F6620626F756E6473000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x305E PUSH1 0x2B DUP4 PUSH2 0x27A3 JUMP JUMPDEST SWAP2 POP PUSH2 0x3069 DUP3 PUSH2 0x3002 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x308D DUP2 PUSH2 0x3051 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x416363657373436F6E74726F6C3A2063616E206F6E6C792072656E6F756E6365 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x20726F6C657320666F722073656C660000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x30F0 PUSH1 0x2F DUP4 PUSH2 0x27A3 JUMP JUMPDEST SWAP2 POP PUSH2 0x30FB DUP3 PUSH2 0x3094 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x311F DUP2 PUSH2 0x30E3 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732314275726E61626C653A2063616C6C6572206973206E6F74206F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6572206E6F7220617070726F76656400000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3182 PUSH1 0x30 DUP4 PUSH2 0x27A3 JUMP JUMPDEST SWAP2 POP PUSH2 0x318D DUP3 PUSH2 0x3126 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x31B1 DUP2 PUSH2 0x3175 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x455243373231456E756D657261626C653A20676C6F62616C20696E646578206F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7574206F6620626F756E64730000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3214 PUSH1 0x2C DUP4 PUSH2 0x27A3 JUMP JUMPDEST SWAP2 POP PUSH2 0x321F DUP3 PUSH2 0x31B8 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3243 DUP2 PUSH2 0x3207 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4552433732313A206F776E657220717565727920666F72206E6F6E6578697374 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x656E7420746F6B656E0000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x32D5 PUSH1 0x29 DUP4 PUSH2 0x27A3 JUMP JUMPDEST SWAP2 POP PUSH2 0x32E0 DUP3 PUSH2 0x3279 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3304 DUP2 PUSH2 0x32C8 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A2062616C616E636520717565727920666F7220746865207A65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x726F206164647265737300000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3367 PUSH1 0x2A DUP4 PUSH2 0x27A3 JUMP JUMPDEST SWAP2 POP PUSH2 0x3372 DUP3 PUSH2 0x330B JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3396 DUP2 PUSH2 0x335A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732314D657461646174613A2055524920717565727920666F72206E6F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6578697374656E7420746F6B656E0000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x33F9 PUSH1 0x2F DUP4 PUSH2 0x27A3 JUMP JUMPDEST SWAP2 POP PUSH2 0x3404 DUP3 PUSH2 0x339D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3428 DUP2 PUSH2 0x33EC JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3445 DUP3 PUSH2 0x2798 JUMP JUMPDEST PUSH2 0x344F DUP2 DUP6 PUSH2 0x342F JUMP JUMPDEST SWAP4 POP PUSH2 0x345F DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x27B4 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3477 DUP3 DUP6 PUSH2 0x343A JUMP JUMPDEST SWAP2 POP PUSH2 0x3483 DUP3 DUP5 PUSH2 0x343A JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x4552433732313A206F70657261746F7220717565727920666F72206E6F6E6578 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x34EB PUSH1 0x2C DUP4 PUSH2 0x27A3 JUMP JUMPDEST SWAP2 POP PUSH2 0x34F6 DUP3 PUSH2 0x348F JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x351A DUP2 PUSH2 0x34DE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E73666572206F6620746F6B656E20746861742069 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x73206E6F74206F776E0000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x357D PUSH1 0x29 DUP4 PUSH2 0x27A3 JUMP JUMPDEST SWAP2 POP PUSH2 0x3588 DUP3 PUSH2 0x3521 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x35AC DUP2 PUSH2 0x3570 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x360F PUSH1 0x24 DUP4 PUSH2 0x27A3 JUMP JUMPDEST SWAP2 POP PUSH2 0x361A DUP3 PUSH2 0x35B3 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x363E DUP2 PUSH2 0x3602 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x367F DUP3 PUSH2 0x2853 JUMP JUMPDEST SWAP2 POP PUSH2 0x368A DUP4 PUSH2 0x2853 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x369D JUMPI PUSH2 0x369C PUSH2 0x3645 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x36B3 DUP3 PUSH2 0x2853 JUMP JUMPDEST SWAP2 POP PUSH2 0x36BE DUP4 PUSH2 0x2853 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x36F3 JUMPI PUSH2 0x36F2 PUSH2 0x3645 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x416363657373436F6E74726F6C3A206163636F756E7420000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3734 PUSH1 0x17 DUP4 PUSH2 0x342F JUMP JUMPDEST SWAP2 POP PUSH2 0x373F DUP3 PUSH2 0x36FE JUMP JUMPDEST PUSH1 0x17 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x206973206D697373696E6720726F6C6520000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3780 PUSH1 0x11 DUP4 PUSH2 0x342F JUMP JUMPDEST SWAP2 POP PUSH2 0x378B DUP3 PUSH2 0x374A JUMP JUMPDEST PUSH1 0x11 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x37A1 DUP3 PUSH2 0x3727 JUMP JUMPDEST SWAP2 POP PUSH2 0x37AD DUP3 DUP6 PUSH2 0x343A JUMP JUMPDEST SWAP2 POP PUSH2 0x37B8 DUP3 PUSH2 0x3773 JUMP JUMPDEST SWAP2 POP PUSH2 0x37C4 DUP3 DUP5 PUSH2 0x343A JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3806 PUSH1 0x19 DUP4 PUSH2 0x27A3 JUMP JUMPDEST SWAP2 POP PUSH2 0x3811 DUP3 PUSH2 0x37D0 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3835 DUP2 PUSH2 0x37F9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x63656976657220696D706C656D656E7465720000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3898 PUSH1 0x32 DUP4 PUSH2 0x27A3 JUMP JUMPDEST SWAP2 POP PUSH2 0x38A3 DUP3 PUSH2 0x383C JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x38C7 DUP2 PUSH2 0x388B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x38D9 DUP3 PUSH2 0x2853 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x390C JUMPI PUSH2 0x390B PUSH2 0x3645 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x3951 DUP3 PUSH2 0x2853 JUMP JUMPDEST SWAP2 POP PUSH2 0x395C DUP4 PUSH2 0x2853 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x396C JUMPI PUSH2 0x396B PUSH2 0x3917 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3982 DUP3 PUSH2 0x2853 JUMP JUMPDEST SWAP2 POP PUSH2 0x398D DUP4 PUSH2 0x2853 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x399D JUMPI PUSH2 0x399C PUSH2 0x3917 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MOD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x39B3 DUP3 PUSH2 0x2853 JUMP JUMPDEST SWAP2 POP PUSH2 0x39BE DUP4 PUSH2 0x2853 JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x39F7 JUMPI PUSH2 0x39F6 PUSH2 0x3645 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3A0D DUP3 PUSH2 0x2853 JUMP JUMPDEST SWAP2 POP PUSH1 0x0 DUP3 EQ ISZERO PUSH2 0x3A21 JUMPI PUSH2 0x3A20 PUSH2 0x3645 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 SUB SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x537472696E67733A20686578206C656E67746820696E73756666696369656E74 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3A62 PUSH1 0x20 DUP4 PUSH2 0x27A3 JUMP JUMPDEST SWAP2 POP PUSH2 0x3A6D DUP3 PUSH2 0x3A2C JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3A91 DUP2 PUSH2 0x3A55 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3ABF DUP3 PUSH2 0x3A98 JUMP JUMPDEST PUSH2 0x3AC9 DUP2 DUP6 PUSH2 0x3AA3 JUMP JUMPDEST SWAP4 POP PUSH2 0x3AD9 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x27B4 JUMP JUMPDEST PUSH2 0x3AE2 DUP2 PUSH2 0x27E7 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x3B02 PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x28E8 JUMP JUMPDEST PUSH2 0x3B0F PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x28E8 JUMP JUMPDEST PUSH2 0x3B1C PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x297E JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x3B2E DUP2 DUP5 PUSH2 0x3AB4 JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x3B48 DUP2 PUSH2 0x2709 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3B64 JUMPI PUSH2 0x3B63 PUSH2 0x26D3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3B72 DUP5 DUP3 DUP6 ADD PUSH2 0x3B39 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4552433732313A206D696E7420746F20746865207A65726F2061646472657373 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3BB1 PUSH1 0x20 DUP4 PUSH2 0x27A3 JUMP JUMPDEST SWAP2 POP PUSH2 0x3BBC DUP3 PUSH2 0x3B7B JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3BE0 DUP2 PUSH2 0x3BA4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20746F6B656E20616C7265616479206D696E74656400000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3C1D PUSH1 0x1C DUP4 PUSH2 0x27A3 JUMP JUMPDEST SWAP2 POP PUSH2 0x3C28 DUP3 PUSH2 0x3BE7 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3C4C DUP2 PUSH2 0x3C10 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x31 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 POP ADD 0xE9 PUSH6 0x1D5842259399 DUP11 MOD 0xC GT PUSH21 0x84CC691D26C494777C4EC75275E39265E164736F6C PUSH4 0x4300080C STOP CALLER ",
"sourceMap": "463:1211:15:-:0;;;706:149;;;;;;;;;;1375:113:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1449:5;1441;:13;;;;;;;;;;;;:::i;:::-;;1474:7;1464;:17;;;;;;;;;;;;:::i;:::-;;1375:113;;761:42:15::1;2057:4:0;772:18:15::0;::::1;792:10;761;;;:42;;:::i;:::-;813:35;629:24;837:10;813;;;:35;;:::i;:::-;463:1211:::0;;6822:233:0;6905:22;6913:4;6919:7;6905;;;:22;;:::i;:::-;6900:149;;6975:4;6943:6;:12;6950:4;6943:12;;;;;;;;;;;:20;;:29;6964:7;6943:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;7025:12;:10;;;:12;;:::i;:::-;6998:40;;7016:7;6998:40;;7010:4;6998:40;;;;;;;;;;6900:149;6822:233;;:::o;2894:137::-;2972:4;2995:6;:12;3002:4;2995:12;;;;;;;;;;;:20;;:29;3016:7;2995:29;;;;;;;;;;;;;;;;;;;;;;;;;2988:36;;2894:137;;;;:::o;640:96:10:-;693:7;719:10;712:17;;640:96;:::o;463:1211:15:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:180:16:-;55:77;52:1;45:88;152:4;149:1;142:15;176:4;173:1;166:15;193:320;237:6;274:1;268:4;264:12;254:22;;321:1;315:4;311:12;342:18;332:81;;398:4;390:6;386:17;376:27;;332:81;460:2;452:6;449:14;429:18;426:38;423:84;;;479:18;;:::i;:::-;423:84;244:269;193:320;;;:::o;463:1211:15:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@DEFAULT_ADMIN_ROLE_27": {
"entryPoint": 3282,
"id": 27,
"parameterSlots": 0,
"returnSlots": 0
},
"@MINTER_ROLE_2429": {
"entryPoint": 3576,
"id": 2429,
"parameterSlots": 0,
"returnSlots": 0
},
"@_addTokenToAllTokensEnumeration_1602": {
"entryPoint": 9155,
"id": 1602,
"parameterSlots": 1,
"returnSlots": 0
},
"@_addTokenToOwnerEnumeration_1582": {
"entryPoint": 9802,
"id": 1582,
"parameterSlots": 2,
"returnSlots": 0
},
"@_approve_1106": {
"entryPoint": 4039,
"id": 1106,
"parameterSlots": 2,
"returnSlots": 0
},
"@_baseURI_2461": {
"entryPoint": 6454,
"id": 2461,
"parameterSlots": 0,
"returnSlots": 1
},
"@_beforeTokenTransfer_1211": {
"entryPoint": 9150,
"id": 1211,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_1552": {
"entryPoint": 8287,
"id": 1552,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_2507": {
"entryPoint": 6990,
"id": 2507,
"parameterSlots": 3,
"returnSlots": 0
},
"@_burn_1013": {
"entryPoint": 5724,
"id": 1013,
"parameterSlots": 1,
"returnSlots": 0
},
"@_checkOnERC721Received_1200": {
"entryPoint": 7669,
"id": 1200,
"parameterSlots": 4,
"returnSlots": 1
},
"@_checkRole_124": {
"entryPoint": 5050,
"id": 124,
"parameterSlots": 2,
"returnSlots": 0
},
"@_exists_820": {
"entryPoint": 3923,
"id": 820,
"parameterSlots": 1,
"returnSlots": 1
},
"@_grantRole_276": {
"entryPoint": 5207,
"id": 276,
"parameterSlots": 2,
"returnSlots": 0
},
"@_isApprovedOrOwner_861": {
"entryPoint": 4224,
"id": 861,
"parameterSlots": 2,
"returnSlots": 1
},
"@_mint_962": {
"entryPoint": 8563,
"id": 962,
"parameterSlots": 2,
"returnSlots": 0
},
"@_msgSender_2081": {
"entryPoint": 4031,
"id": 2081,
"parameterSlots": 0,
"returnSlots": 1
},
"@_removeTokenFromAllTokensEnumeration_1713": {
"entryPoint": 9593,
"id": 1713,
"parameterSlots": 1,
"returnSlots": 0
},
"@_removeTokenFromOwnerEnumeration_1665": {
"entryPoint": 9228,
"id": 1665,
"parameterSlots": 2,
"returnSlots": 0
},
"@_revokeRole_307": {
"entryPoint": 5432,
"id": 307,
"parameterSlots": 2,
"returnSlots": 0
},
"@_safeMint_876": {
"entryPoint": 5694,
"id": 876,
"parameterSlots": 2,
"returnSlots": 0
},
"@_safeMint_905": {
"entryPoint": 7578,
"id": 905,
"parameterSlots": 3,
"returnSlots": 0
},
"@_safeTransfer_802": {
"entryPoint": 6362,
"id": 802,
"parameterSlots": 4,
"returnSlots": 0
},
"@_setApprovalForAll_1138": {
"entryPoint": 5997,
"id": 1138,
"parameterSlots": 3,
"returnSlots": 0
},
"@_transfer_1082": {
"entryPoint": 4446,
"id": 1082,
"parameterSlots": 3,
"returnSlots": 0
},
"@approve_641": {
"entryPoint": 1583,
"id": 641,
"parameterSlots": 2,
"returnSlots": 0
},
"@balanceOf_499": {
"entryPoint": 2845,
"id": 499,
"parameterSlots": 1,
"returnSlots": 1
},
"@burn_1375": {
"entryPoint": 2462,
"id": 1375,
"parameterSlots": 1,
"returnSlots": 0
},
"@current_2109": {
"entryPoint": 5658,
"id": 2109,
"parameterSlots": 1,
"returnSlots": 1
},
"@getApproved_662": {
"entryPoint": 1450,
"id": 662,
"parameterSlots": 1,
"returnSlots": 1
},
"@getRoleAdmin_139": {
"entryPoint": 1972,
"id": 139,
"parameterSlots": 1,
"returnSlots": 1
},
"@grantRole_159": {
"entryPoint": 2004,
"id": 159,
"parameterSlots": 2,
"returnSlots": 0
},
"@hasRole_81": {
"entryPoint": 3029,
"id": 81,
"parameterSlots": 2,
"returnSlots": 1
},
"@increment_2123": {
"entryPoint": 5672,
"id": 2123,
"parameterSlots": 1,
"returnSlots": 0
},
"@isApprovedForAll_697": {
"entryPoint": 3653,
"id": 697,
"parameterSlots": 2,
"returnSlots": 1
},
"@isContract_1792": {
"entryPoint": 9025,
"id": 1792,
"parameterSlots": 1,
"returnSlots": 1
},
"@name_537": {
"entryPoint": 1304,
"id": 537,
"parameterSlots": 0,
"returnSlots": 1
},
"@ownerOf_527": {
"entryPoint": 2667,
"id": 527,
"parameterSlots": 1,
"returnSlots": 1
},
"@renounceRole_202": {
"entryPoint": 2210,
"id": 202,
"parameterSlots": 2,
"returnSlots": 0
},
"@revokeRole_179": {
"entryPoint": 3612,
"id": 179,
"parameterSlots": 2,
"returnSlots": 0
},
"@safeMint_2486": {
"entryPoint": 2341,
"id": 2486,
"parameterSlots": 1,
"returnSlots": 0
},
"@safeTransferFrom_743": {
"entryPoint": 2430,
"id": 743,
"parameterSlots": 3,
"returnSlots": 0
},
"@safeTransferFrom_773": {
"entryPoint": 3311,
"id": 773,
"parameterSlots": 4,
"returnSlots": 0
},
"@setApprovalForAll_679": {
"entryPoint": 3289,
"id": 679,
"parameterSlots": 2,
"returnSlots": 0
},
"@supportsInterface_1426": {
"entryPoint": 6868,
"id": 1426,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_2391": {
"entryPoint": 9044,
"id": 2391,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_2524": {
"entryPoint": 1286,
"id": 2524,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_475": {
"entryPoint": 8061,
"id": 475,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_62": {
"entryPoint": 3801,
"id": 62,
"parameterSlots": 1,
"returnSlots": 1
},
"@symbol_547": {
"entryPoint": 3136,
"id": 547,
"parameterSlots": 0,
"returnSlots": 1
},
"@toHexString_2367": {
"entryPoint": 7006,
"id": 2367,
"parameterSlots": 2,
"returnSlots": 1
},
"@toString_2250": {
"entryPoint": 6515,
"id": 2250,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenByIndex_1488": {
"entryPoint": 2554,
"id": 1488,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenOfOwnerByIndex_1454": {
"entryPoint": 2045,
"id": 1454,
"parameterSlots": 2,
"returnSlots": 1
},
"@tokenURI_589": {
"entryPoint": 3409,
"id": 589,
"parameterSlots": 1,
"returnSlots": 1
},
"@totalSupply_1465": {
"entryPoint": 1863,
"id": 1465,
"parameterSlots": 0,
"returnSlots": 1
},
"@transferFrom_724": {
"entryPoint": 1876,
"id": 724,
"parameterSlots": 3,
"returnSlots": 0
},
"abi_decode_available_length_t_bytes_memory_ptr": {
"entryPoint": 11302,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 10537,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bool": {
"entryPoint": 11020,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes32": {
"entryPoint": 10780,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes4": {
"entryPoint": 10016,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes4_fromMemory": {
"entryPoint": 15161,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes_memory_ptr": {
"entryPoint": 11368,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 10356,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 10952,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 11545,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 10664,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr": {
"entryPoint": 11414,
"id": null,
"parameterSlots": 2,
"returnSlots": 4
},
"abi_decode_tuple_t_addresst_bool": {
"entryPoint": 11041,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 10558,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_bytes32": {
"entryPoint": 10801,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes32t_address": {
"entryPoint": 10888,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_bytes4": {
"entryPoint": 10037,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes4_fromMemory": {
"entryPoint": 15182,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 10377,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 10472,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 10094,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bytes32_to_t_bytes32_fromStack": {
"entryPoint": 10846,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack": {
"entryPoint": 15028,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 10232,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 13370,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2_to_t_string_memory_ptr_fromStack": {
"entryPoint": 14933,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12369,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack": {
"entryPoint": 14475,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack": {
"entryPoint": 15376,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13826,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack": {
"entryPoint": 14329,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13534,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12077,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13146,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13000,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack": {
"entryPoint": 15268,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack": {
"entryPoint": 11785,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13680,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13292,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack": {
"entryPoint": 11931,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12223,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12807,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 14119,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_ee6b7e810d7b317242d4688e6943ff4dd7897bb01d903b1a666812481b12a4f1_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12661,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 14195,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12515,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 10622,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 13419,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_packed_t_stringliteral_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874_t_string_memory_ptr_t_stringliteral_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 14230,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 10487,
"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": 15085,
"id": null,
"parameterSlots": 5,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 10109,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed": {
"entryPoint": 10861,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10289,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14968,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 12404,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14510,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15411,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 13861,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14364,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 13569,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 12112,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 13181,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 13035,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 15303,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 11820,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 13715,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 13327,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 11966,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 12258,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 12842,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_ee6b7e810d7b317242d4688e6943ff4dd7897bb01d903b1a666812481b12a4f1__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 12696,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 12550,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 10637,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 11211,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 9929,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_bytes_memory_ptr": {
"entryPoint": 11238,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_bytes_memory_ptr": {
"entryPoint": 15000,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 10136,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack": {
"entryPoint": 15011,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 10147,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 13359,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 13992,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_div_t_uint256": {
"entryPoint": 14662,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_mul_t_uint256": {
"entryPoint": 14760,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 13940,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 10454,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 10082,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bytes32": {
"entryPoint": 10747,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bytes4": {
"entryPoint": 9949,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 10422,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 10323,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_calldata_to_memory": {
"entryPoint": 11287,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory": {
"entryPoint": 10164,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"decrement_t_uint256": {
"entryPoint": 14850,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 11656,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 11162,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"increment_t_uint256": {
"entryPoint": 14542,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mod_t_uint256": {
"entryPoint": 14711,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 13893,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x12": {
"entryPoint": 14615,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 11609,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x31": {
"entryPoint": 15443,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 12874,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 11115,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 11105,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 11110,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 9944,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 9939,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 10215,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2": {
"entryPoint": 14892,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c": {
"entryPoint": 12290,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e": {
"entryPoint": 14396,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57": {
"entryPoint": 15335,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4": {
"entryPoint": 13747,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05": {
"entryPoint": 14288,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c": {
"entryPoint": 13455,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d": {
"entryPoint": 11998,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba": {
"entryPoint": 13067,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397": {
"entryPoint": 12921,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6": {
"entryPoint": 15227,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d": {
"entryPoint": 11706,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950": {
"entryPoint": 13601,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb": {
"entryPoint": 13213,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942": {
"entryPoint": 11852,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2": {
"entryPoint": 12144,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc": {
"entryPoint": 12728,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874": {
"entryPoint": 14078,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_ee6b7e810d7b317242d4688e6943ff4dd7897bb01d903b1a666812481b12a4f1": {
"entryPoint": 12582,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69": {
"entryPoint": 14154,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b": {
"entryPoint": 12436,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 10514,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bool": {
"entryPoint": 10997,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bytes32": {
"entryPoint": 10757,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bytes4": {
"entryPoint": 9993,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 10333,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:39296:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:16",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:16"
},
"nodeType": "YulFunctionCall",
"src": "67:9:16"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:16"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:16",
"type": ""
}
],
"src": "7:75:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:16"
},
"nodeType": "YulFunctionCall",
"src": "187:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:16"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:16"
},
"nodeType": "YulFunctionCall",
"src": "310:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:16"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "378:105:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "388:89:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "403:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "410:66:16",
"type": "",
"value": "0xffffffff00000000000000000000000000000000000000000000000000000000"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "399:3:16"
},
"nodeType": "YulFunctionCall",
"src": "399:78:16"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "388:7:16"
}
]
}
]
},
"name": "cleanup_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "360:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "370:7:16",
"type": ""
}
],
"src": "334:149:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "531:78:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "587:16:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "596:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "599:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "589:6:16"
},
"nodeType": "YulFunctionCall",
"src": "589:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "589:12:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "554:5:16"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "578:5:16"
}
],
"functionName": {
"name": "cleanup_t_bytes4",
"nodeType": "YulIdentifier",
"src": "561:16:16"
},
"nodeType": "YulFunctionCall",
"src": "561:23:16"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "551:2:16"
},
"nodeType": "YulFunctionCall",
"src": "551:34:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "544:6:16"
},
"nodeType": "YulFunctionCall",
"src": "544:42:16"
},
"nodeType": "YulIf",
"src": "541:62:16"
}
]
},
"name": "validator_revert_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "524:5:16",
"type": ""
}
],
"src": "489:120:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "666:86:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "676:29:16",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "698:6:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "685:12:16"
},
"nodeType": "YulFunctionCall",
"src": "685:20:16"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "676:5:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "740:5:16"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "714:25:16"
},
"nodeType": "YulFunctionCall",
"src": "714:32:16"
},
"nodeType": "YulExpressionStatement",
"src": "714:32:16"
}
]
},
"name": "abi_decode_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "644:6:16",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "652:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "660:5:16",
"type": ""
}
],
"src": "615:137:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "823:262:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "869:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "871:77:16"
},
"nodeType": "YulFunctionCall",
"src": "871:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "871:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "844:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "853:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "840:3:16"
},
"nodeType": "YulFunctionCall",
"src": "840:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "865:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "836:3:16"
},
"nodeType": "YulFunctionCall",
"src": "836:32:16"
},
"nodeType": "YulIf",
"src": "833:119:16"
},
{
"nodeType": "YulBlock",
"src": "962:116:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "977:15:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "991:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "981:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1006:62:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1040:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1051:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1036:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1036:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1060:7:16"
}
],
"functionName": {
"name": "abi_decode_t_bytes4",
"nodeType": "YulIdentifier",
"src": "1016:19:16"
},
"nodeType": "YulFunctionCall",
"src": "1016:52:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1006:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "793:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "804:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "816:6:16",
"type": ""
}
],
"src": "758:327:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1133:48:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1143:32:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1168:5:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1161:6:16"
},
"nodeType": "YulFunctionCall",
"src": "1161:13:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1154:6:16"
},
"nodeType": "YulFunctionCall",
"src": "1154:21:16"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1143:7:16"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1115:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1125:7:16",
"type": ""
}
],
"src": "1091:90:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1246:50:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1263:3:16"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1283:5:16"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "1268:14:16"
},
"nodeType": "YulFunctionCall",
"src": "1268:21:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1256:6:16"
},
"nodeType": "YulFunctionCall",
"src": "1256:34:16"
},
"nodeType": "YulExpressionStatement",
"src": "1256:34:16"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1234:5:16",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1241:3:16",
"type": ""
}
],
"src": "1187:109:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1394:118:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1404:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1416:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1427:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1412:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1412:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1404:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1478:6:16"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1491:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1502:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1487:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1487:17:16"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "1440:37:16"
},
"nodeType": "YulFunctionCall",
"src": "1440:65:16"
},
"nodeType": "YulExpressionStatement",
"src": "1440:65:16"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1366:9:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1378:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1389:4:16",
"type": ""
}
],
"src": "1302:210:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1577:40:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1588:22:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1604:5:16"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1598:5:16"
},
"nodeType": "YulFunctionCall",
"src": "1598:12:16"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1588:6:16"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1560:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1570:6:16",
"type": ""
}
],
"src": "1518:99:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1719:73:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1736:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1741:6:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1729:6:16"
},
"nodeType": "YulFunctionCall",
"src": "1729:19:16"
},
"nodeType": "YulExpressionStatement",
"src": "1729:19:16"
},
{
"nodeType": "YulAssignment",
"src": "1757:29:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1776:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1781:4:16",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1772:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1772:14:16"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "1757:11:16"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1691:3:16",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1696:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "1707:11:16",
"type": ""
}
],
"src": "1623:169:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1847:258:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1857:10:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1866:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "1861:1:16",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1926:63:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1951:3:16"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1956:1:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1947:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1947:11:16"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1970:3:16"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1975:1:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1966:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1966:11:16"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1960:5:16"
},
"nodeType": "YulFunctionCall",
"src": "1960:18:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1940:6:16"
},
"nodeType": "YulFunctionCall",
"src": "1940:39:16"
},
"nodeType": "YulExpressionStatement",
"src": "1940:39:16"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1887:1:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1890:6:16"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1884:2:16"
},
"nodeType": "YulFunctionCall",
"src": "1884:13:16"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "1898:19:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1900:15:16",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1909:1:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1912:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1905:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1905:10:16"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1900:1:16"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "1880:3:16",
"statements": []
},
"src": "1876:113:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2023:76:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2073:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2078:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2069:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2069:16:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2087:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2062:6:16"
},
"nodeType": "YulFunctionCall",
"src": "2062:27:16"
},
"nodeType": "YulExpressionStatement",
"src": "2062:27:16"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2004:1:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2007:6:16"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2001:2:16"
},
"nodeType": "YulFunctionCall",
"src": "2001:13:16"
},
"nodeType": "YulIf",
"src": "1998:101:16"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1829:3:16",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1834:3:16",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1839:6:16",
"type": ""
}
],
"src": "1798:307:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2159:54:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2169:38:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2187:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2194:2:16",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2183:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2183:14:16"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2203:2:16",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "2199:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2199:7:16"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2179:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2179:28:16"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "2169:6:16"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2142:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "2152:6:16",
"type": ""
}
],
"src": "2111:102:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2311:272:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2321:53:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2368:5:16"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2335:32:16"
},
"nodeType": "YulFunctionCall",
"src": "2335:39:16"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2325:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2383:78:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2449:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2454:6:16"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2390:58:16"
},
"nodeType": "YulFunctionCall",
"src": "2390:71:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2383:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2496:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2503:4:16",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2492:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2492:16:16"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2510:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2515:6:16"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "2470:21:16"
},
"nodeType": "YulFunctionCall",
"src": "2470:52:16"
},
"nodeType": "YulExpressionStatement",
"src": "2470:52:16"
},
{
"nodeType": "YulAssignment",
"src": "2531:46:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2542:3:16"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2569:6:16"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2547:21:16"
},
"nodeType": "YulFunctionCall",
"src": "2547:29:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2538:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2538:39:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2531:3:16"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2292:5:16",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2299:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2307:3:16",
"type": ""
}
],
"src": "2219:364:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2707:195:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2717:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2729:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2740:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2725:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2725:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2717:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2764:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2775:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2760:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2760:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2783:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2789:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2779:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2779:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2753:6:16"
},
"nodeType": "YulFunctionCall",
"src": "2753:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "2753:47:16"
},
{
"nodeType": "YulAssignment",
"src": "2809:86:16",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2881:6:16"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2890:4:16"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2817:63:16"
},
"nodeType": "YulFunctionCall",
"src": "2817:78:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2809:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2679:9:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2691:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2702:4:16",
"type": ""
}
],
"src": "2589:313:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2953:32:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2963:16:16",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "2974:5:16"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2963:7:16"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2935:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2945:7:16",
"type": ""
}
],
"src": "2908:77:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3034:79:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3091:16:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3100:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3103:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3093:6:16"
},
"nodeType": "YulFunctionCall",
"src": "3093:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "3093:12:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3057:5:16"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3082:5:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3064:17:16"
},
"nodeType": "YulFunctionCall",
"src": "3064:24:16"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "3054:2:16"
},
"nodeType": "YulFunctionCall",
"src": "3054:35:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3047:6:16"
},
"nodeType": "YulFunctionCall",
"src": "3047:43:16"
},
"nodeType": "YulIf",
"src": "3044:63:16"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3027:5:16",
"type": ""
}
],
"src": "2991:122:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3171:87:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3181:29:16",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3203:6:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3190:12:16"
},
"nodeType": "YulFunctionCall",
"src": "3190:20:16"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3181:5:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3246:5:16"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "3219:26:16"
},
"nodeType": "YulFunctionCall",
"src": "3219:33:16"
},
"nodeType": "YulExpressionStatement",
"src": "3219:33:16"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3149:6:16",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3157:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3165:5:16",
"type": ""
}
],
"src": "3119:139:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3330:263:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3376:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3378:77:16"
},
"nodeType": "YulFunctionCall",
"src": "3378:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "3378:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3351:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3360:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3347:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3347:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3372:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3343:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3343:32:16"
},
"nodeType": "YulIf",
"src": "3340:119:16"
},
{
"nodeType": "YulBlock",
"src": "3469:117:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3484:15:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3498:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3488:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3513:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3548:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3559:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3544:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3544:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3568:7:16"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "3523:20:16"
},
"nodeType": "YulFunctionCall",
"src": "3523:53:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3513:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3300:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3311:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3323:6:16",
"type": ""
}
],
"src": "3264:329:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3644:81:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3654:65:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3669:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3676:42:16",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3665:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3665:54:16"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3654:7:16"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3626:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3636:7:16",
"type": ""
}
],
"src": "3599:126:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3776:51:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3786:35:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3815:5:16"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "3797:17:16"
},
"nodeType": "YulFunctionCall",
"src": "3797:24:16"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3786:7:16"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3758:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3768:7:16",
"type": ""
}
],
"src": "3731:96:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3898:53:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3915:3:16"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3938:5:16"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "3920:17:16"
},
"nodeType": "YulFunctionCall",
"src": "3920:24:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3908:6:16"
},
"nodeType": "YulFunctionCall",
"src": "3908:37:16"
},
"nodeType": "YulExpressionStatement",
"src": "3908:37:16"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3886:5:16",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3893:3:16",
"type": ""
}
],
"src": "3833:118:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4055:124:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4065:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4077:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4088:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4073:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4073:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4065:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4145:6:16"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4158:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4169:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4154:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4154:17:16"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "4101:43:16"
},
"nodeType": "YulFunctionCall",
"src": "4101:71:16"
},
"nodeType": "YulExpressionStatement",
"src": "4101:71:16"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4027:9:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4039:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4050:4:16",
"type": ""
}
],
"src": "3957:222:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4228:79:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4285:16:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4294:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4297:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4287:6:16"
},
"nodeType": "YulFunctionCall",
"src": "4287:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "4287:12:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4251:5:16"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4276:5:16"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "4258:17:16"
},
"nodeType": "YulFunctionCall",
"src": "4258:24:16"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "4248:2:16"
},
"nodeType": "YulFunctionCall",
"src": "4248:35:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4241:6:16"
},
"nodeType": "YulFunctionCall",
"src": "4241:43:16"
},
"nodeType": "YulIf",
"src": "4238:63:16"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4221:5:16",
"type": ""
}
],
"src": "4185:122:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4365:87:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4375:29:16",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4397:6:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "4384:12:16"
},
"nodeType": "YulFunctionCall",
"src": "4384:20:16"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4375:5:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4440:5:16"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "4413:26:16"
},
"nodeType": "YulFunctionCall",
"src": "4413:33:16"
},
"nodeType": "YulExpressionStatement",
"src": "4413:33:16"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4343:6:16",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4351:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4359:5:16",
"type": ""
}
],
"src": "4313:139:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4541:391:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4587:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "4589:77:16"
},
"nodeType": "YulFunctionCall",
"src": "4589:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "4589:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4562:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4571:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4558:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4558:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4583:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4554:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4554:32:16"
},
"nodeType": "YulIf",
"src": "4551:119:16"
},
{
"nodeType": "YulBlock",
"src": "4680:117:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4695:15:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4709:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4699:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4724:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4759:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4770:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4755:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4755:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4779:7:16"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4734:20:16"
},
"nodeType": "YulFunctionCall",
"src": "4734:53:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4724:6:16"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4807:118:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4822:16:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4836:2:16",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4826:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4852:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4887:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4898:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4883:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4883:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4907:7:16"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4862:20:16"
},
"nodeType": "YulFunctionCall",
"src": "4862:53:16"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4852:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4503:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4514:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4526:6:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4534:6:16",
"type": ""
}
],
"src": "4458:474:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5003:53:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5020:3:16"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5043:5:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5025:17:16"
},
"nodeType": "YulFunctionCall",
"src": "5025:24:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5013:6:16"
},
"nodeType": "YulFunctionCall",
"src": "5013:37:16"
},
"nodeType": "YulExpressionStatement",
"src": "5013:37:16"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4991:5:16",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4998:3:16",
"type": ""
}
],
"src": "4938:118:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5160:124:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5170:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5182:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5193:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5178:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5178:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5170:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5250:6:16"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5263:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5274:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5259:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5259:17:16"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "5206:43:16"
},
"nodeType": "YulFunctionCall",
"src": "5206:71:16"
},
"nodeType": "YulExpressionStatement",
"src": "5206:71:16"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5132:9:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5144:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5155:4:16",
"type": ""
}
],
"src": "5062:222:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5390:519:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5436:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5438:77:16"
},
"nodeType": "YulFunctionCall",
"src": "5438:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "5438:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5411:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5420:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5407:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5407:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5432:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5403:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5403:32:16"
},
"nodeType": "YulIf",
"src": "5400:119:16"
},
{
"nodeType": "YulBlock",
"src": "5529:117:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5544:15:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5558:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5548:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5573:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5608:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5619:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5604:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5604:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5628:7:16"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5583:20:16"
},
"nodeType": "YulFunctionCall",
"src": "5583:53:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5573:6:16"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5656:118:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5671:16:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5685:2:16",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5675:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5701:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5736:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5747:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5732:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5732:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5756:7:16"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5711:20:16"
},
"nodeType": "YulFunctionCall",
"src": "5711:53:16"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5701:6:16"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5784:118:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5799:16:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5813:2:16",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5803:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5829:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5864:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5875:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5860:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5860:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5884:7:16"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "5839:20:16"
},
"nodeType": "YulFunctionCall",
"src": "5839:53:16"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "5829:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5344:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5355:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5367:6:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5375:6:16",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "5383:6:16",
"type": ""
}
],
"src": "5290:619:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5960:32:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5970:16:16",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "5981:5:16"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "5970:7:16"
}
]
}
]
},
"name": "cleanup_t_bytes32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5942:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "5952:7:16",
"type": ""
}
],
"src": "5915:77:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6041:79:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6098:16:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6107:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6110:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6100:6:16"
},
"nodeType": "YulFunctionCall",
"src": "6100:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "6100:12:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6064:5:16"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6089:5:16"
}
],
"functionName": {
"name": "cleanup_t_bytes32",
"nodeType": "YulIdentifier",
"src": "6071:17:16"
},
"nodeType": "YulFunctionCall",
"src": "6071:24:16"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "6061:2:16"
},
"nodeType": "YulFunctionCall",
"src": "6061:35:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "6054:6:16"
},
"nodeType": "YulFunctionCall",
"src": "6054:43:16"
},
"nodeType": "YulIf",
"src": "6051:63:16"
}
]
},
"name": "validator_revert_t_bytes32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6034:5:16",
"type": ""
}
],
"src": "5998:122:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6178:87:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6188:29:16",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6210:6:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "6197:12:16"
},
"nodeType": "YulFunctionCall",
"src": "6197:20:16"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6188:5:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6253:5:16"
}
],
"functionName": {
"name": "validator_revert_t_bytes32",
"nodeType": "YulIdentifier",
"src": "6226:26:16"
},
"nodeType": "YulFunctionCall",
"src": "6226:33:16"
},
"nodeType": "YulExpressionStatement",
"src": "6226:33:16"
}
]
},
"name": "abi_decode_t_bytes32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6156:6:16",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6164:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6172:5:16",
"type": ""
}
],
"src": "6126:139:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6337:263:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6383:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "6385:77:16"
},
"nodeType": "YulFunctionCall",
"src": "6385:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "6385:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6358:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6367:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6354:3:16"
},
"nodeType": "YulFunctionCall",
"src": "6354:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6379:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6350:3:16"
},
"nodeType": "YulFunctionCall",
"src": "6350:32:16"
},
"nodeType": "YulIf",
"src": "6347:119:16"
},
{
"nodeType": "YulBlock",
"src": "6476:117:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6491:15:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6505:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6495:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6520:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6555:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6566:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6551:3:16"
},
"nodeType": "YulFunctionCall",
"src": "6551:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6575:7:16"
}
],
"functionName": {
"name": "abi_decode_t_bytes32",
"nodeType": "YulIdentifier",
"src": "6530:20:16"
},
"nodeType": "YulFunctionCall",
"src": "6530:53:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6520:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6307:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "6318:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6330:6:16",
"type": ""
}
],
"src": "6271:329:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6671:53:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6688:3:16"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6711:5:16"
}
],
"functionName": {
"name": "cleanup_t_bytes32",
"nodeType": "YulIdentifier",
"src": "6693:17:16"
},
"nodeType": "YulFunctionCall",
"src": "6693:24:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6681:6:16"
},
"nodeType": "YulFunctionCall",
"src": "6681:37:16"
},
"nodeType": "YulExpressionStatement",
"src": "6681:37:16"
}
]
},
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6659:5:16",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6666:3:16",
"type": ""
}
],
"src": "6606:118:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6828:124:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6838:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6850:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6861:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6846:3:16"
},
"nodeType": "YulFunctionCall",
"src": "6846:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6838:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6918:6:16"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6931:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6942:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6927:3:16"
},
"nodeType": "YulFunctionCall",
"src": "6927:17:16"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulIdentifier",
"src": "6874:43:16"
},
"nodeType": "YulFunctionCall",
"src": "6874:71:16"
},
"nodeType": "YulExpressionStatement",
"src": "6874:71:16"
}
]
},
"name": "abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6800:9:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6812:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6823:4:16",
"type": ""
}
],
"src": "6730:222:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7041:391:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7087:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "7089:77:16"
},
"nodeType": "YulFunctionCall",
"src": "7089:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "7089:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7062:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7071:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7058:3:16"
},
"nodeType": "YulFunctionCall",
"src": "7058:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7083:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "7054:3:16"
},
"nodeType": "YulFunctionCall",
"src": "7054:32:16"
},
"nodeType": "YulIf",
"src": "7051:119:16"
},
{
"nodeType": "YulBlock",
"src": "7180:117:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7195:15:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7209:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7199:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7224:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7259:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7270:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7255:3:16"
},
"nodeType": "YulFunctionCall",
"src": "7255:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7279:7:16"
}
],
"functionName": {
"name": "abi_decode_t_bytes32",
"nodeType": "YulIdentifier",
"src": "7234:20:16"
},
"nodeType": "YulFunctionCall",
"src": "7234:53:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7224:6:16"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "7307:118:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7322:16:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7336:2:16",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7326:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7352:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7387:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7398:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7383:3:16"
},
"nodeType": "YulFunctionCall",
"src": "7383:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7407:7:16"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "7362:20:16"
},
"nodeType": "YulFunctionCall",
"src": "7362:53:16"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "7352:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes32t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7003:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "7014:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7026:6:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "7034:6:16",
"type": ""
}
],
"src": "6958:474:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7504:263:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7550:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "7552:77:16"
},
"nodeType": "YulFunctionCall",
"src": "7552:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "7552:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7525:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7534:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7521:3:16"
},
"nodeType": "YulFunctionCall",
"src": "7521:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7546:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "7517:3:16"
},
"nodeType": "YulFunctionCall",
"src": "7517:32:16"
},
"nodeType": "YulIf",
"src": "7514:119:16"
},
{
"nodeType": "YulBlock",
"src": "7643:117:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7658:15:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7672:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7662:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7687:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7722:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7733:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7718:3:16"
},
"nodeType": "YulFunctionCall",
"src": "7718:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7742:7:16"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "7697:20:16"
},
"nodeType": "YulFunctionCall",
"src": "7697:53:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7687:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7474:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "7485:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7497:6:16",
"type": ""
}
],
"src": "7438:329:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7813:76:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7867:16:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7876:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7879:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7869:6:16"
},
"nodeType": "YulFunctionCall",
"src": "7869:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "7869:12:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7836:5:16"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7858:5:16"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "7843:14:16"
},
"nodeType": "YulFunctionCall",
"src": "7843:21:16"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "7833:2:16"
},
"nodeType": "YulFunctionCall",
"src": "7833:32:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "7826:6:16"
},
"nodeType": "YulFunctionCall",
"src": "7826:40:16"
},
"nodeType": "YulIf",
"src": "7823:60:16"
}
]
},
"name": "validator_revert_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7806:5:16",
"type": ""
}
],
"src": "7773:116:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7944:84:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7954:29:16",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7976:6:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "7963:12:16"
},
"nodeType": "YulFunctionCall",
"src": "7963:20:16"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7954:5:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8016:5:16"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "7992:23:16"
},
"nodeType": "YulFunctionCall",
"src": "7992:30:16"
},
"nodeType": "YulExpressionStatement",
"src": "7992:30:16"
}
]
},
"name": "abi_decode_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7922:6:16",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7930:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7938:5:16",
"type": ""
}
],
"src": "7895:133:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8114:388:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8160:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "8162:77:16"
},
"nodeType": "YulFunctionCall",
"src": "8162:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "8162:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8135:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8144:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8131:3:16"
},
"nodeType": "YulFunctionCall",
"src": "8131:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8156:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "8127:3:16"
},
"nodeType": "YulFunctionCall",
"src": "8127:32:16"
},
"nodeType": "YulIf",
"src": "8124:119:16"
},
{
"nodeType": "YulBlock",
"src": "8253:117:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8268:15:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "8282:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8272:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8297:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8332:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8343:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8328:3:16"
},
"nodeType": "YulFunctionCall",
"src": "8328:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8352:7:16"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "8307:20:16"
},
"nodeType": "YulFunctionCall",
"src": "8307:53:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8297:6:16"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "8380:115:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8395:16:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "8409:2:16",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8399:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8425:60:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8457:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8468:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8453:3:16"
},
"nodeType": "YulFunctionCall",
"src": "8453:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8477:7:16"
}
],
"functionName": {
"name": "abi_decode_t_bool",
"nodeType": "YulIdentifier",
"src": "8435:17:16"
},
"nodeType": "YulFunctionCall",
"src": "8435:50:16"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "8425:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8076:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "8087:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "8099:6:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "8107:6:16",
"type": ""
}
],
"src": "8034:468:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8597:28:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8614:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8617:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "8607:6:16"
},
"nodeType": "YulFunctionCall",
"src": "8607:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "8607:12:16"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "8508:117:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8720:28:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8737:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8740:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "8730:6:16"
},
"nodeType": "YulFunctionCall",
"src": "8730:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "8730:12:16"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "8631:117:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8782:152:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8799:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8802:77:16",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8792:6:16"
},
"nodeType": "YulFunctionCall",
"src": "8792:88:16"
},
"nodeType": "YulExpressionStatement",
"src": "8792:88:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8896:1:16",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8899:4:16",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8889:6:16"
},
"nodeType": "YulFunctionCall",
"src": "8889:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "8889:15:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8920:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8923:4:16",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "8913:6:16"
},
"nodeType": "YulFunctionCall",
"src": "8913:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "8913:15:16"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "8754:180:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8983:238:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8993:58:16",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "9015:6:16"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "9045:4:16"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "9023:21:16"
},
"nodeType": "YulFunctionCall",
"src": "9023:27:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9011:3:16"
},
"nodeType": "YulFunctionCall",
"src": "9011:40:16"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "8997:10:16",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "9162:22:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "9164:16:16"
},
"nodeType": "YulFunctionCall",
"src": "9164:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "9164:18:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "9105:10:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9117:18:16",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "9102:2:16"
},
"nodeType": "YulFunctionCall",
"src": "9102:34:16"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "9141:10:16"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "9153:6:16"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "9138:2:16"
},
"nodeType": "YulFunctionCall",
"src": "9138:22:16"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "9099:2:16"
},
"nodeType": "YulFunctionCall",
"src": "9099:62:16"
},
"nodeType": "YulIf",
"src": "9096:88:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9200:2:16",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "9204:10:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9193:6:16"
},
"nodeType": "YulFunctionCall",
"src": "9193:22:16"
},
"nodeType": "YulExpressionStatement",
"src": "9193:22:16"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "8969:6:16",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "8977:4:16",
"type": ""
}
],
"src": "8940:281:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9268:88:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9278:30:16",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "9288:18:16"
},
"nodeType": "YulFunctionCall",
"src": "9288:20:16"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "9278:6:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "9337:6:16"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "9345:4:16"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "9317:19:16"
},
"nodeType": "YulFunctionCall",
"src": "9317:33:16"
},
"nodeType": "YulExpressionStatement",
"src": "9317:33:16"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "9252:4:16",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "9261:6:16",
"type": ""
}
],
"src": "9227:129:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9428:241:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "9533:22:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "9535:16:16"
},
"nodeType": "YulFunctionCall",
"src": "9535:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "9535:18:16"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9505:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9513:18:16",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "9502:2:16"
},
"nodeType": "YulFunctionCall",
"src": "9502:30:16"
},
"nodeType": "YulIf",
"src": "9499:56:16"
},
{
"nodeType": "YulAssignment",
"src": "9565:37:16",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9595:6:16"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "9573:21:16"
},
"nodeType": "YulFunctionCall",
"src": "9573:29:16"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "9565:4:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "9639:23:16",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "9651:4:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9657:4:16",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9647:3:16"
},
"nodeType": "YulFunctionCall",
"src": "9647:15:16"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "9639:4:16"
}
]
}
]
},
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "9412:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "9423:4:16",
"type": ""
}
],
"src": "9362:307:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9726:103:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "9749:3:16"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "9754:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9759:6:16"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "9736:12:16"
},
"nodeType": "YulFunctionCall",
"src": "9736:30:16"
},
"nodeType": "YulExpressionStatement",
"src": "9736:30:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "9807:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9812:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9803:3:16"
},
"nodeType": "YulFunctionCall",
"src": "9803:16:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9821:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9796:6:16"
},
"nodeType": "YulFunctionCall",
"src": "9796:27:16"
},
"nodeType": "YulExpressionStatement",
"src": "9796:27:16"
}
]
},
"name": "copy_calldata_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "9708:3:16",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "9713:3:16",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "9718:6:16",
"type": ""
}
],
"src": "9675:154:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9918:327:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9928:74:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9994:6:16"
}
],
"functionName": {
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "9953:40:16"
},
"nodeType": "YulFunctionCall",
"src": "9953:48:16"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "9937:15:16"
},
"nodeType": "YulFunctionCall",
"src": "9937:65:16"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "9928:5:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "10018:5:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10025:6:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10011:6:16"
},
"nodeType": "YulFunctionCall",
"src": "10011:21:16"
},
"nodeType": "YulExpressionStatement",
"src": "10011:21:16"
},
{
"nodeType": "YulVariableDeclaration",
"src": "10041:27:16",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "10056:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10063:4:16",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10052:3:16"
},
"nodeType": "YulFunctionCall",
"src": "10052:16:16"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "10045:3:16",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10106:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "10108:77:16"
},
"nodeType": "YulFunctionCall",
"src": "10108:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "10108:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "10087:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10092:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10083:3:16"
},
"nodeType": "YulFunctionCall",
"src": "10083:16:16"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10101:3:16"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "10080:2:16"
},
"nodeType": "YulFunctionCall",
"src": "10080:25:16"
},
"nodeType": "YulIf",
"src": "10077:112:16"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "10222:3:16"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "10227:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10232:6:16"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "10198:23:16"
},
"nodeType": "YulFunctionCall",
"src": "10198:41:16"
},
"nodeType": "YulExpressionStatement",
"src": "10198:41:16"
}
]
},
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "9891:3:16",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "9896:6:16",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9904:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "9912:5:16",
"type": ""
}
],
"src": "9835:410:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10325:277:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "10374:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "10376:77:16"
},
"nodeType": "YulFunctionCall",
"src": "10376:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "10376:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "10353:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10361:4:16",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10349:3:16"
},
"nodeType": "YulFunctionCall",
"src": "10349:17:16"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10368:3:16"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "10345:3:16"
},
"nodeType": "YulFunctionCall",
"src": "10345:27:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "10338:6:16"
},
"nodeType": "YulFunctionCall",
"src": "10338:35:16"
},
"nodeType": "YulIf",
"src": "10335:122:16"
},
{
"nodeType": "YulVariableDeclaration",
"src": "10466:34:16",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "10493:6:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "10480:12:16"
},
"nodeType": "YulFunctionCall",
"src": "10480:20:16"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "10470:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "10509:87:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "10569:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10577:4:16",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10565:3:16"
},
"nodeType": "YulFunctionCall",
"src": "10565:17:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10584:6:16"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10592:3:16"
}
],
"functionName": {
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "10518:46:16"
},
"nodeType": "YulFunctionCall",
"src": "10518:78:16"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "10509:5:16"
}
]
}
]
},
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "10303:6:16",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10311:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "10319:5:16",
"type": ""
}
],
"src": "10264:338:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10734:817:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "10781:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "10783:77:16"
},
"nodeType": "YulFunctionCall",
"src": "10783:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "10783:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "10755:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10764:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10751:3:16"
},
"nodeType": "YulFunctionCall",
"src": "10751:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10776:3:16",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "10747:3:16"
},
"nodeType": "YulFunctionCall",
"src": "10747:33:16"
},
"nodeType": "YulIf",
"src": "10744:120:16"
},
{
"nodeType": "YulBlock",
"src": "10874:117:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10889:15:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "10903:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "10893:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "10918:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10953:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "10964:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10949:3:16"
},
"nodeType": "YulFunctionCall",
"src": "10949:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "10973:7:16"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "10928:20:16"
},
"nodeType": "YulFunctionCall",
"src": "10928:53:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "10918:6:16"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "11001:118:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "11016:16:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "11030:2:16",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "11020:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "11046:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11081:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "11092:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11077:3:16"
},
"nodeType": "YulFunctionCall",
"src": "11077:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "11101:7:16"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "11056:20:16"
},
"nodeType": "YulFunctionCall",
"src": "11056:53:16"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "11046:6:16"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "11129:118:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "11144:16:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "11158:2:16",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "11148:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "11174:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11209:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "11220:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11205:3:16"
},
"nodeType": "YulFunctionCall",
"src": "11205:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "11229:7:16"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "11184:20:16"
},
"nodeType": "YulFunctionCall",
"src": "11184:53:16"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "11174:6:16"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "11257:287:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "11272:46:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11303:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11314:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11299:3:16"
},
"nodeType": "YulFunctionCall",
"src": "11299:18:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "11286:12:16"
},
"nodeType": "YulFunctionCall",
"src": "11286:32:16"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "11276:6:16",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "11365:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "11367:77:16"
},
"nodeType": "YulFunctionCall",
"src": "11367:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "11367:79:16"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "11337:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11345:18:16",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "11334:2:16"
},
"nodeType": "YulFunctionCall",
"src": "11334:30:16"
},
"nodeType": "YulIf",
"src": "11331:117:16"
},
{
"nodeType": "YulAssignment",
"src": "11462:72:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11506:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "11517:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11502:3:16"
},
"nodeType": "YulFunctionCall",
"src": "11502:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "11526:7:16"
}
],
"functionName": {
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "11472:29:16"
},
"nodeType": "YulFunctionCall",
"src": "11472:62:16"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "11462:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10680:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "10691:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "10703:6:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "10711:6:16",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "10719:6:16",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "10727:6:16",
"type": ""
}
],
"src": "10608:943:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11640:391:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "11686:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "11688:77:16"
},
"nodeType": "YulFunctionCall",
"src": "11688:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "11688:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "11661:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11670:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "11657:3:16"
},
"nodeType": "YulFunctionCall",
"src": "11657:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11682:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "11653:3:16"
},
"nodeType": "YulFunctionCall",
"src": "11653:32:16"
},
"nodeType": "YulIf",
"src": "11650:119:16"
},
{
"nodeType": "YulBlock",
"src": "11779:117:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "11794:15:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "11808:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "11798:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "11823:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11858:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "11869:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11854:3:16"
},
"nodeType": "YulFunctionCall",
"src": "11854:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "11878:7:16"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "11833:20:16"
},
"nodeType": "YulFunctionCall",
"src": "11833:53:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "11823:6:16"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "11906:118:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "11921:16:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "11935:2:16",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "11925:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "11951:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11986:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "11997:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11982:3:16"
},
"nodeType": "YulFunctionCall",
"src": "11982:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "12006:7:16"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "11961:20:16"
},
"nodeType": "YulFunctionCall",
"src": "11961:53:16"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "11951:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11602:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "11613:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "11625:6:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "11633:6:16",
"type": ""
}
],
"src": "11557:474:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12065:152:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12082:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12085:77:16",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12075:6:16"
},
"nodeType": "YulFunctionCall",
"src": "12075:88:16"
},
"nodeType": "YulExpressionStatement",
"src": "12075:88:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12179:1:16",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12182:4:16",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12172:6:16"
},
"nodeType": "YulFunctionCall",
"src": "12172:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "12172:15:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12203:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12206:4:16",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "12196:6:16"
},
"nodeType": "YulFunctionCall",
"src": "12196:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "12196:15:16"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "12037:180:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12274:269:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12284:22:16",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "12298:4:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12304:1:16",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "12294:3:16"
},
"nodeType": "YulFunctionCall",
"src": "12294:12:16"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12284:6:16"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "12315:38:16",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "12345:4:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12351:1:16",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "12341:3:16"
},
"nodeType": "YulFunctionCall",
"src": "12341:12:16"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "12319:18:16",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "12392:51:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12406:27:16",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12420:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12428:4:16",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "12416:3:16"
},
"nodeType": "YulFunctionCall",
"src": "12416:17:16"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12406:6:16"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "12372:18:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "12365:6:16"
},
"nodeType": "YulFunctionCall",
"src": "12365:26:16"
},
"nodeType": "YulIf",
"src": "12362:81:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12495:42:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "12509:16:16"
},
"nodeType": "YulFunctionCall",
"src": "12509:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "12509:18:16"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "12459:18:16"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12482:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12490:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "12479:2:16"
},
"nodeType": "YulFunctionCall",
"src": "12479:14:16"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "12456:2:16"
},
"nodeType": "YulFunctionCall",
"src": "12456:38:16"
},
"nodeType": "YulIf",
"src": "12453:84:16"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "12258:4:16",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "12267:6:16",
"type": ""
}
],
"src": "12223:320:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12655:125:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "12677:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12685:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12673:3:16"
},
"nodeType": "YulFunctionCall",
"src": "12673:14:16"
},
{
"hexValue": "4552433732313a20617070726f76656420717565727920666f72206e6f6e6578",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12689:34:16",
"type": "",
"value": "ERC721: approved query for nonex"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12666:6:16"
},
"nodeType": "YulFunctionCall",
"src": "12666:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "12666:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "12745:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12753:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12741:3:16"
},
"nodeType": "YulFunctionCall",
"src": "12741:15:16"
},
{
"hexValue": "697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12758:14:16",
"type": "",
"value": "istent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12734:6:16"
},
"nodeType": "YulFunctionCall",
"src": "12734:39:16"
},
"nodeType": "YulExpressionStatement",
"src": "12734:39:16"
}
]
},
"name": "store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "12647:6:16",
"type": ""
}
],
"src": "12549:231:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12932:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12942:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13008:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13013:2:16",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12949:58:16"
},
"nodeType": "YulFunctionCall",
"src": "12949:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12942:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13114:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d",
"nodeType": "YulIdentifier",
"src": "13025:88:16"
},
"nodeType": "YulFunctionCall",
"src": "13025:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "13025:93:16"
},
{
"nodeType": "YulAssignment",
"src": "13127:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13138:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13143:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13134:3:16"
},
"nodeType": "YulFunctionCall",
"src": "13134:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13127:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12920:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12928:3:16",
"type": ""
}
],
"src": "12786:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13329:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13339:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13351:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13362:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13347:3:16"
},
"nodeType": "YulFunctionCall",
"src": "13347:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13339:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13386:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13397:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13382:3:16"
},
"nodeType": "YulFunctionCall",
"src": "13382:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13405:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13411:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13401:3:16"
},
"nodeType": "YulFunctionCall",
"src": "13401:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13375:6:16"
},
"nodeType": "YulFunctionCall",
"src": "13375:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "13375:47:16"
},
{
"nodeType": "YulAssignment",
"src": "13431:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13565:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13439:124:16"
},
"nodeType": "YulFunctionCall",
"src": "13439:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13431:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13309:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13324:4:16",
"type": ""
}
],
"src": "13158:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13689:114:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "13711:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13719:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13707:3:16"
},
"nodeType": "YulFunctionCall",
"src": "13707:14:16"
},
{
"hexValue": "4552433732313a20617070726f76616c20746f2063757272656e74206f776e65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13723:34:16",
"type": "",
"value": "ERC721: approval to current owne"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13700:6:16"
},
"nodeType": "YulFunctionCall",
"src": "13700:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "13700:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "13779:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13787:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13775:3:16"
},
"nodeType": "YulFunctionCall",
"src": "13775:15:16"
},
{
"hexValue": "72",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13792:3:16",
"type": "",
"value": "r"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13768:6:16"
},
"nodeType": "YulFunctionCall",
"src": "13768:28:16"
},
"nodeType": "YulExpressionStatement",
"src": "13768:28:16"
}
]
},
"name": "store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "13681:6:16",
"type": ""
}
],
"src": "13583:220:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13955:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13965:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14031:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14036:2:16",
"type": "",
"value": "33"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13972:58:16"
},
"nodeType": "YulFunctionCall",
"src": "13972:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13965:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14137:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942",
"nodeType": "YulIdentifier",
"src": "14048:88:16"
},
"nodeType": "YulFunctionCall",
"src": "14048:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "14048:93:16"
},
{
"nodeType": "YulAssignment",
"src": "14150:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14161:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14166:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14157:3:16"
},
"nodeType": "YulFunctionCall",
"src": "14157:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14150:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13943:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13951:3:16",
"type": ""
}
],
"src": "13809:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14352:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14362:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14374:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14385:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14370:3:16"
},
"nodeType": "YulFunctionCall",
"src": "14370:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14362:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14409:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14420:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14405:3:16"
},
"nodeType": "YulFunctionCall",
"src": "14405:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14428:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14434:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "14424:3:16"
},
"nodeType": "YulFunctionCall",
"src": "14424:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14398:6:16"
},
"nodeType": "YulFunctionCall",
"src": "14398:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "14398:47:16"
},
{
"nodeType": "YulAssignment",
"src": "14454:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14588:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14462:124:16"
},
"nodeType": "YulFunctionCall",
"src": "14462:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14454:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14332:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14347:4:16",
"type": ""
}
],
"src": "14181:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14712:137:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "14734:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14742:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14730:3:16"
},
"nodeType": "YulFunctionCall",
"src": "14730:14:16"
},
{
"hexValue": "4552433732313a20617070726f76652063616c6c6572206973206e6f74206f77",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14746:34:16",
"type": "",
"value": "ERC721: approve caller is not ow"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14723:6:16"
},
"nodeType": "YulFunctionCall",
"src": "14723:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "14723:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "14802:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14810:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14798:3:16"
},
"nodeType": "YulFunctionCall",
"src": "14798:15:16"
},
{
"hexValue": "6e6572206e6f7220617070726f76656420666f7220616c6c",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14815:26:16",
"type": "",
"value": "ner nor approved for all"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14791:6:16"
},
"nodeType": "YulFunctionCall",
"src": "14791:51:16"
},
"nodeType": "YulExpressionStatement",
"src": "14791:51:16"
}
]
},
"name": "store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "14704:6:16",
"type": ""
}
],
"src": "14606:243:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15001:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15011:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15077:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15082:2:16",
"type": "",
"value": "56"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15018:58:16"
},
"nodeType": "YulFunctionCall",
"src": "15018:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15011:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15183:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d",
"nodeType": "YulIdentifier",
"src": "15094:88:16"
},
"nodeType": "YulFunctionCall",
"src": "15094:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "15094:93:16"
},
{
"nodeType": "YulAssignment",
"src": "15196:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15207:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15212:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15203:3:16"
},
"nodeType": "YulFunctionCall",
"src": "15203:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "15196:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14989:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14997:3:16",
"type": ""
}
],
"src": "14855:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15398:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15408:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15420:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15431:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15416:3:16"
},
"nodeType": "YulFunctionCall",
"src": "15416:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15408:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15455:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15466:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15451:3:16"
},
"nodeType": "YulFunctionCall",
"src": "15451:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15474:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15480:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "15470:3:16"
},
"nodeType": "YulFunctionCall",
"src": "15470:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15444:6:16"
},
"nodeType": "YulFunctionCall",
"src": "15444:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "15444:47:16"
},
{
"nodeType": "YulAssignment",
"src": "15500:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15634:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15508:124:16"
},
"nodeType": "YulFunctionCall",
"src": "15508:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15500:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15378:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15393:4:16",
"type": ""
}
],
"src": "15227:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15758:130:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "15780:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15788:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15776:3:16"
},
"nodeType": "YulFunctionCall",
"src": "15776:14:16"
},
{
"hexValue": "4552433732313a207472616e736665722063616c6c6572206973206e6f74206f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15792:34:16",
"type": "",
"value": "ERC721: transfer caller is not o"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15769:6:16"
},
"nodeType": "YulFunctionCall",
"src": "15769:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "15769:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "15848:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15856:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15844:3:16"
},
"nodeType": "YulFunctionCall",
"src": "15844:15:16"
},
{
"hexValue": "776e6572206e6f7220617070726f766564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15861:19:16",
"type": "",
"value": "wner nor approved"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15837:6:16"
},
"nodeType": "YulFunctionCall",
"src": "15837:44:16"
},
"nodeType": "YulExpressionStatement",
"src": "15837:44:16"
}
]
},
"name": "store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "15750:6:16",
"type": ""
}
],
"src": "15652:236:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16040:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16050:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16116:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16121:2:16",
"type": "",
"value": "49"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16057:58:16"
},
"nodeType": "YulFunctionCall",
"src": "16057:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16050:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16222:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2",
"nodeType": "YulIdentifier",
"src": "16133:88:16"
},
"nodeType": "YulFunctionCall",
"src": "16133:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "16133:93:16"
},
{
"nodeType": "YulAssignment",
"src": "16235:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16246:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16251:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16242:3:16"
},
"nodeType": "YulFunctionCall",
"src": "16242:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "16235:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "16028:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "16036:3:16",
"type": ""
}
],
"src": "15894:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16437:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16447:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16459:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16470:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16455:3:16"
},
"nodeType": "YulFunctionCall",
"src": "16455:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16447:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16494:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16505:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16490:3:16"
},
"nodeType": "YulFunctionCall",
"src": "16490:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16513:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16519:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16509:3:16"
},
"nodeType": "YulFunctionCall",
"src": "16509:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16483:6:16"
},
"nodeType": "YulFunctionCall",
"src": "16483:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "16483:47:16"
},
{
"nodeType": "YulAssignment",
"src": "16539:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16673:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16547:124:16"
},
"nodeType": "YulFunctionCall",
"src": "16547:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16539:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16417:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16432:4:16",
"type": ""
}
],
"src": "16266:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16797:124:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "16819:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16827:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16815:3:16"
},
"nodeType": "YulFunctionCall",
"src": "16815:14:16"
},
{
"hexValue": "455243373231456e756d657261626c653a206f776e657220696e646578206f75",
"kind": "string",
"nodeType": "YulLiteral",
"src": "16831:34:16",
"type": "",
"value": "ERC721Enumerable: owner index ou"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16808:6:16"
},
"nodeType": "YulFunctionCall",
"src": "16808:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "16808:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "16887:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16895:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16883:3:16"
},
"nodeType": "YulFunctionCall",
"src": "16883:15:16"
},
{
"hexValue": "74206f6620626f756e6473",
"kind": "string",
"nodeType": "YulLiteral",
"src": "16900:13:16",
"type": "",
"value": "t of bounds"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16876:6:16"
},
"nodeType": "YulFunctionCall",
"src": "16876:38:16"
},
"nodeType": "YulExpressionStatement",
"src": "16876:38:16"
}
]
},
"name": "store_literal_in_memory_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "16789:6:16",
"type": ""
}
],
"src": "16691:230:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17073:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17083:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17149:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17154:2:16",
"type": "",
"value": "43"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17090:58:16"
},
"nodeType": "YulFunctionCall",
"src": "17090:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17083:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17255:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c",
"nodeType": "YulIdentifier",
"src": "17166:88:16"
},
"nodeType": "YulFunctionCall",
"src": "17166:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "17166:93:16"
},
{
"nodeType": "YulAssignment",
"src": "17268:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17279:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17284:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17275:3:16"
},
"nodeType": "YulFunctionCall",
"src": "17275:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "17268:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "17061:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "17069:3:16",
"type": ""
}
],
"src": "16927:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17470:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17480:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17492:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17503:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17488:3:16"
},
"nodeType": "YulFunctionCall",
"src": "17488:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17480:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17527:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17538:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17523:3:16"
},
"nodeType": "YulFunctionCall",
"src": "17523:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17546:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17552:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17542:3:16"
},
"nodeType": "YulFunctionCall",
"src": "17542:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17516:6:16"
},
"nodeType": "YulFunctionCall",
"src": "17516:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "17516:47:16"
},
{
"nodeType": "YulAssignment",
"src": "17572:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17706:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17580:124:16"
},
"nodeType": "YulFunctionCall",
"src": "17580:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17572:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17450:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17465:4:16",
"type": ""
}
],
"src": "17299:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17830:128:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "17852:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17860:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17848:3:16"
},
"nodeType": "YulFunctionCall",
"src": "17848:14:16"
},
{
"hexValue": "416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e6365",
"kind": "string",
"nodeType": "YulLiteral",
"src": "17864:34:16",
"type": "",
"value": "AccessControl: can only renounce"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17841:6:16"
},
"nodeType": "YulFunctionCall",
"src": "17841:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "17841:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "17920:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17928:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17916:3:16"
},
"nodeType": "YulFunctionCall",
"src": "17916:15:16"
},
{
"hexValue": "20726f6c657320666f722073656c66",
"kind": "string",
"nodeType": "YulLiteral",
"src": "17933:17:16",
"type": "",
"value": " roles for self"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17909:6:16"
},
"nodeType": "YulFunctionCall",
"src": "17909:42:16"
},
"nodeType": "YulExpressionStatement",
"src": "17909:42:16"
}
]
},
"name": "store_literal_in_memory_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "17822:6:16",
"type": ""
}
],
"src": "17724:234:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18110:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18120:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18186:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18191:2:16",
"type": "",
"value": "47"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18127:58:16"
},
"nodeType": "YulFunctionCall",
"src": "18127:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18120:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18292:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b",
"nodeType": "YulIdentifier",
"src": "18203:88:16"
},
"nodeType": "YulFunctionCall",
"src": "18203:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "18203:93:16"
},
{
"nodeType": "YulAssignment",
"src": "18305:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18316:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18321:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18312:3:16"
},
"nodeType": "YulFunctionCall",
"src": "18312:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "18305:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "18098:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "18106:3:16",
"type": ""
}
],
"src": "17964:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18507:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18517:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18529:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18540:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18525:3:16"
},
"nodeType": "YulFunctionCall",
"src": "18525:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18517:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18564:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18575:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18560:3:16"
},
"nodeType": "YulFunctionCall",
"src": "18560:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18583:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18589:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "18579:3:16"
},
"nodeType": "YulFunctionCall",
"src": "18579:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18553:6:16"
},
"nodeType": "YulFunctionCall",
"src": "18553:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "18553:47:16"
},
{
"nodeType": "YulAssignment",
"src": "18609:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18743:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18617:124:16"
},
"nodeType": "YulFunctionCall",
"src": "18617:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18609:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18487:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18502:4:16",
"type": ""
}
],
"src": "18336:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18867:129:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18889:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18897:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18885:3:16"
},
"nodeType": "YulFunctionCall",
"src": "18885:14:16"
},
{
"hexValue": "4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f77",
"kind": "string",
"nodeType": "YulLiteral",
"src": "18901:34:16",
"type": "",
"value": "ERC721Burnable: caller is not ow"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18878:6:16"
},
"nodeType": "YulFunctionCall",
"src": "18878:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "18878:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18957:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18965:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18953:3:16"
},
"nodeType": "YulFunctionCall",
"src": "18953:15:16"
},
{
"hexValue": "6e6572206e6f7220617070726f766564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "18970:18:16",
"type": "",
"value": "ner nor approved"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18946:6:16"
},
"nodeType": "YulFunctionCall",
"src": "18946:43:16"
},
"nodeType": "YulExpressionStatement",
"src": "18946:43:16"
}
]
},
"name": "store_literal_in_memory_ee6b7e810d7b317242d4688e6943ff4dd7897bb01d903b1a666812481b12a4f1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "18859:6:16",
"type": ""
}
],
"src": "18761:235:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19148:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19158:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19224:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19229:2:16",
"type": "",
"value": "48"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19165:58:16"
},
"nodeType": "YulFunctionCall",
"src": "19165:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19158:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19330:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_ee6b7e810d7b317242d4688e6943ff4dd7897bb01d903b1a666812481b12a4f1",
"nodeType": "YulIdentifier",
"src": "19241:88:16"
},
"nodeType": "YulFunctionCall",
"src": "19241:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "19241:93:16"
},
{
"nodeType": "YulAssignment",
"src": "19343:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19354:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19359:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19350:3:16"
},
"nodeType": "YulFunctionCall",
"src": "19350:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "19343:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_ee6b7e810d7b317242d4688e6943ff4dd7897bb01d903b1a666812481b12a4f1_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "19136:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "19144:3:16",
"type": ""
}
],
"src": "19002:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19545:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19555:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19567:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19578:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19563:3:16"
},
"nodeType": "YulFunctionCall",
"src": "19563:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19555:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19602:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19613:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19598:3:16"
},
"nodeType": "YulFunctionCall",
"src": "19598:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19621:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19627:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "19617:3:16"
},
"nodeType": "YulFunctionCall",
"src": "19617:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19591:6:16"
},
"nodeType": "YulFunctionCall",
"src": "19591:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "19591:47:16"
},
{
"nodeType": "YulAssignment",
"src": "19647:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19781:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_ee6b7e810d7b317242d4688e6943ff4dd7897bb01d903b1a666812481b12a4f1_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19655:124:16"
},
"nodeType": "YulFunctionCall",
"src": "19655:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19647:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_ee6b7e810d7b317242d4688e6943ff4dd7897bb01d903b1a666812481b12a4f1__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "19525:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "19540:4:16",
"type": ""
}
],
"src": "19374:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19905:125:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19927:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19935:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19923:3:16"
},
"nodeType": "YulFunctionCall",
"src": "19923:14:16"
},
{
"hexValue": "455243373231456e756d657261626c653a20676c6f62616c20696e646578206f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "19939:34:16",
"type": "",
"value": "ERC721Enumerable: global index o"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19916:6:16"
},
"nodeType": "YulFunctionCall",
"src": "19916:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "19916:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19995:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20003:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19991:3:16"
},
"nodeType": "YulFunctionCall",
"src": "19991:15:16"
},
{
"hexValue": "7574206f6620626f756e6473",
"kind": "string",
"nodeType": "YulLiteral",
"src": "20008:14:16",
"type": "",
"value": "ut of bounds"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19984:6:16"
},
"nodeType": "YulFunctionCall",
"src": "19984:39:16"
},
"nodeType": "YulExpressionStatement",
"src": "19984:39:16"
}
]
},
"name": "store_literal_in_memory_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "19897:6:16",
"type": ""
}
],
"src": "19799:231:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20182:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20192:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20258:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20263:2:16",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "20199:58:16"
},
"nodeType": "YulFunctionCall",
"src": "20199:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20192:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20364:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc",
"nodeType": "YulIdentifier",
"src": "20275:88:16"
},
"nodeType": "YulFunctionCall",
"src": "20275:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "20275:93:16"
},
{
"nodeType": "YulAssignment",
"src": "20377:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20388:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20393:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20384:3:16"
},
"nodeType": "YulFunctionCall",
"src": "20384:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "20377:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "20170:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "20178:3:16",
"type": ""
}
],
"src": "20036:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20579:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20589:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20601:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20612:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20597:3:16"
},
"nodeType": "YulFunctionCall",
"src": "20597:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20589:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20636:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20647:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20632:3:16"
},
"nodeType": "YulFunctionCall",
"src": "20632:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20655:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20661:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "20651:3:16"
},
"nodeType": "YulFunctionCall",
"src": "20651:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20625:6:16"
},
"nodeType": "YulFunctionCall",
"src": "20625:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "20625:47:16"
},
{
"nodeType": "YulAssignment",
"src": "20681:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20815:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "20689:124:16"
},
"nodeType": "YulFunctionCall",
"src": "20689:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20681:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "20559:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "20574:4:16",
"type": ""
}
],
"src": "20408:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20861:152:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20878:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20881:77:16",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20871:6:16"
},
"nodeType": "YulFunctionCall",
"src": "20871:88:16"
},
"nodeType": "YulExpressionStatement",
"src": "20871:88:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20975:1:16",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20978:4:16",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20968:6:16"
},
"nodeType": "YulFunctionCall",
"src": "20968:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "20968:15:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20999:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21002:4:16",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "20992:6:16"
},
"nodeType": "YulFunctionCall",
"src": "20992:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "20992:15:16"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "20833:180:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21125:122:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "21147:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21155:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21143:3:16"
},
"nodeType": "YulFunctionCall",
"src": "21143:14:16"
},
{
"hexValue": "4552433732313a206f776e657220717565727920666f72206e6f6e6578697374",
"kind": "string",
"nodeType": "YulLiteral",
"src": "21159:34:16",
"type": "",
"value": "ERC721: owner query for nonexist"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21136:6:16"
},
"nodeType": "YulFunctionCall",
"src": "21136:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "21136:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "21215:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21223:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21211:3:16"
},
"nodeType": "YulFunctionCall",
"src": "21211:15:16"
},
{
"hexValue": "656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "21228:11:16",
"type": "",
"value": "ent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21204:6:16"
},
"nodeType": "YulFunctionCall",
"src": "21204:36:16"
},
"nodeType": "YulExpressionStatement",
"src": "21204:36:16"
}
]
},
"name": "store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "21117:6:16",
"type": ""
}
],
"src": "21019:228:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21399:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21409:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21475:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21480:2:16",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "21416:58:16"
},
"nodeType": "YulFunctionCall",
"src": "21416:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21409:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21581:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397",
"nodeType": "YulIdentifier",
"src": "21492:88:16"
},
"nodeType": "YulFunctionCall",
"src": "21492:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "21492:93:16"
},
{
"nodeType": "YulAssignment",
"src": "21594:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21605:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21610:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21601:3:16"
},
"nodeType": "YulFunctionCall",
"src": "21601:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "21594:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "21387:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "21395:3:16",
"type": ""
}
],
"src": "21253:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21796:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21806:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21818:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21829:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21814:3:16"
},
"nodeType": "YulFunctionCall",
"src": "21814:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21806:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21853:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21864:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21849:3:16"
},
"nodeType": "YulFunctionCall",
"src": "21849:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21872:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21878:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "21868:3:16"
},
"nodeType": "YulFunctionCall",
"src": "21868:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21842:6:16"
},
"nodeType": "YulFunctionCall",
"src": "21842:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "21842:47:16"
},
{
"nodeType": "YulAssignment",
"src": "21898:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22032:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "21906:124:16"
},
"nodeType": "YulFunctionCall",
"src": "21906:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21898:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "21776:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "21791:4:16",
"type": ""
}
],
"src": "21625:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22156:123:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "22178:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22186:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22174:3:16"
},
"nodeType": "YulFunctionCall",
"src": "22174:14:16"
},
{
"hexValue": "4552433732313a2062616c616e636520717565727920666f7220746865207a65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "22190:34:16",
"type": "",
"value": "ERC721: balance query for the ze"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22167:6:16"
},
"nodeType": "YulFunctionCall",
"src": "22167:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "22167:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "22246:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22254:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22242:3:16"
},
"nodeType": "YulFunctionCall",
"src": "22242:15:16"
},
{
"hexValue": "726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "22259:12:16",
"type": "",
"value": "ro address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22235:6:16"
},
"nodeType": "YulFunctionCall",
"src": "22235:37:16"
},
"nodeType": "YulExpressionStatement",
"src": "22235:37:16"
}
]
},
"name": "store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "22148:6:16",
"type": ""
}
],
"src": "22050:229:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22431:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22441:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "22507:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22512:2:16",
"type": "",
"value": "42"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "22448:58:16"
},
"nodeType": "YulFunctionCall",
"src": "22448:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "22441:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "22613:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba",
"nodeType": "YulIdentifier",
"src": "22524:88:16"
},
"nodeType": "YulFunctionCall",
"src": "22524:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "22524:93:16"
},
{
"nodeType": "YulAssignment",
"src": "22626:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "22637:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22642:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22633:3:16"
},
"nodeType": "YulFunctionCall",
"src": "22633:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "22626:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "22419:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "22427:3:16",
"type": ""
}
],
"src": "22285:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22828:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22838:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22850:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22861:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22846:3:16"
},
"nodeType": "YulFunctionCall",
"src": "22846:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22838:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22885:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22896:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22881:3:16"
},
"nodeType": "YulFunctionCall",
"src": "22881:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22904:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22910:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "22900:3:16"
},
"nodeType": "YulFunctionCall",
"src": "22900:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22874:6:16"
},
"nodeType": "YulFunctionCall",
"src": "22874:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "22874:47:16"
},
{
"nodeType": "YulAssignment",
"src": "22930:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23064:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "22938:124:16"
},
"nodeType": "YulFunctionCall",
"src": "22938:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22930:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "22808:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "22823:4:16",
"type": ""
}
],
"src": "22657:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23188:128:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "23210:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23218:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23206:3:16"
},
"nodeType": "YulFunctionCall",
"src": "23206:14:16"
},
{
"hexValue": "4552433732314d657461646174613a2055524920717565727920666f72206e6f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "23222:34:16",
"type": "",
"value": "ERC721Metadata: URI query for no"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23199:6:16"
},
"nodeType": "YulFunctionCall",
"src": "23199:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "23199:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "23278:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23286:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23274:3:16"
},
"nodeType": "YulFunctionCall",
"src": "23274:15:16"
},
{
"hexValue": "6e6578697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "23291:17:16",
"type": "",
"value": "nexistent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23267:6:16"
},
"nodeType": "YulFunctionCall",
"src": "23267:42:16"
},
"nodeType": "YulExpressionStatement",
"src": "23267:42:16"
}
]
},
"name": "store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "23180:6:16",
"type": ""
}
],
"src": "23082:234:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23468:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23478:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "23544:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23549:2:16",
"type": "",
"value": "47"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "23485:58:16"
},
"nodeType": "YulFunctionCall",
"src": "23485:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "23478:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "23650:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb",
"nodeType": "YulIdentifier",
"src": "23561:88:16"
},
"nodeType": "YulFunctionCall",
"src": "23561:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "23561:93:16"
},
{
"nodeType": "YulAssignment",
"src": "23663:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "23674:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23679:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23670:3:16"
},
"nodeType": "YulFunctionCall",
"src": "23670:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "23663:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "23456:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "23464:3:16",
"type": ""
}
],
"src": "23322:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23865:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23875:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23887:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23898:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23883:3:16"
},
"nodeType": "YulFunctionCall",
"src": "23883:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23875:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23922:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23933:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23918:3:16"
},
"nodeType": "YulFunctionCall",
"src": "23918:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23941:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23947:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "23937:3:16"
},
"nodeType": "YulFunctionCall",
"src": "23937:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23911:6:16"
},
"nodeType": "YulFunctionCall",
"src": "23911:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "23911:47:16"
},
{
"nodeType": "YulAssignment",
"src": "23967:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24101:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "23975:124:16"
},
"nodeType": "YulFunctionCall",
"src": "23975:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23967:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "23845:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "23860:4:16",
"type": ""
}
],
"src": "23694:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24233:34:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24243:18:16",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "24258:3:16"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "24243:11:16"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "24205:3:16",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "24210:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "24221:11:16",
"type": ""
}
],
"src": "24119:148:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24383:267:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "24393:53:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "24440:5:16"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "24407:32:16"
},
"nodeType": "YulFunctionCall",
"src": "24407:39:16"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "24397:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "24455:96:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "24539:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "24544:6:16"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "24462:76:16"
},
"nodeType": "YulFunctionCall",
"src": "24462:89:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "24455:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "24586:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24593:4:16",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24582:3:16"
},
"nodeType": "YulFunctionCall",
"src": "24582:16:16"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "24600:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "24605:6:16"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "24560:21:16"
},
"nodeType": "YulFunctionCall",
"src": "24560:52:16"
},
"nodeType": "YulExpressionStatement",
"src": "24560:52:16"
},
{
"nodeType": "YulAssignment",
"src": "24621:23:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "24632:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "24637:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24628:3:16"
},
"nodeType": "YulFunctionCall",
"src": "24628:16:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "24621:3:16"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "24364:5:16",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "24371:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "24379:3:16",
"type": ""
}
],
"src": "24273:377:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24840:251:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24851:102:16",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "24940:6:16"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "24949:3:16"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "24858:81:16"
},
"nodeType": "YulFunctionCall",
"src": "24858:95:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "24851:3:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "24963:102:16",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "25052:6:16"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25061:3:16"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "24970:81:16"
},
"nodeType": "YulFunctionCall",
"src": "24970:95:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "24963:3:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "25075:10:16",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25082:3:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "25075:3:16"
}
]
}
]
},
"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": "24811:3:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "24817:6:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "24825:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "24836:3:16",
"type": ""
}
],
"src": "24656:435:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25203:125:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25225:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25233:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25221:3:16"
},
"nodeType": "YulFunctionCall",
"src": "25221:14:16"
},
{
"hexValue": "4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578",
"kind": "string",
"nodeType": "YulLiteral",
"src": "25237:34:16",
"type": "",
"value": "ERC721: operator query for nonex"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25214:6:16"
},
"nodeType": "YulFunctionCall",
"src": "25214:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "25214:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25293:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25301:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25289:3:16"
},
"nodeType": "YulFunctionCall",
"src": "25289:15:16"
},
{
"hexValue": "697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "25306:14:16",
"type": "",
"value": "istent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25282:6:16"
},
"nodeType": "YulFunctionCall",
"src": "25282:39:16"
},
"nodeType": "YulExpressionStatement",
"src": "25282:39:16"
}
]
},
"name": "store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "25195:6:16",
"type": ""
}
],
"src": "25097:231:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25480:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25490:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25556:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25561:2:16",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "25497:58:16"
},
"nodeType": "YulFunctionCall",
"src": "25497:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25490:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25662:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c",
"nodeType": "YulIdentifier",
"src": "25573:88:16"
},
"nodeType": "YulFunctionCall",
"src": "25573:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "25573:93:16"
},
{
"nodeType": "YulAssignment",
"src": "25675:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25686:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25691:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25682:3:16"
},
"nodeType": "YulFunctionCall",
"src": "25682:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "25675:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "25468:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "25476:3:16",
"type": ""
}
],
"src": "25334:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25877:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25887:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25899:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25910:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25895:3:16"
},
"nodeType": "YulFunctionCall",
"src": "25895:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25887:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25934:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25945:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25930:3:16"
},
"nodeType": "YulFunctionCall",
"src": "25930:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25953:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25959:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "25949:3:16"
},
"nodeType": "YulFunctionCall",
"src": "25949:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25923:6:16"
},
"nodeType": "YulFunctionCall",
"src": "25923:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "25923:47:16"
},
{
"nodeType": "YulAssignment",
"src": "25979:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26113:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "25987:124:16"
},
"nodeType": "YulFunctionCall",
"src": "25987:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25979:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "25857:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "25872:4:16",
"type": ""
}
],
"src": "25706:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26237:122:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26259:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26267:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26255:3:16"
},
"nodeType": "YulFunctionCall",
"src": "26255:14:16"
},
{
"hexValue": "4552433732313a207472616e73666572206f6620746f6b656e20746861742069",
"kind": "string",
"nodeType": "YulLiteral",
"src": "26271:34:16",
"type": "",
"value": "ERC721: transfer of token that i"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26248:6:16"
},
"nodeType": "YulFunctionCall",
"src": "26248:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "26248:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26327:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26335:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26323:3:16"
},
"nodeType": "YulFunctionCall",
"src": "26323:15:16"
},
{
"hexValue": "73206e6f74206f776e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "26340:11:16",
"type": "",
"value": "s not own"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26316:6:16"
},
"nodeType": "YulFunctionCall",
"src": "26316:36:16"
},
"nodeType": "YulExpressionStatement",
"src": "26316:36:16"
}
]
},
"name": "store_literal_in_memory_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "26229:6:16",
"type": ""
}
],
"src": "26131:228:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26511:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26521:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "26587:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26592:2:16",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "26528:58:16"
},
"nodeType": "YulFunctionCall",
"src": "26528:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "26521:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "26693:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950",
"nodeType": "YulIdentifier",
"src": "26604:88:16"
},
"nodeType": "YulFunctionCall",
"src": "26604:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "26604:93:16"
},
{
"nodeType": "YulAssignment",
"src": "26706:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "26717:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26722:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26713:3:16"
},
"nodeType": "YulFunctionCall",
"src": "26713:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "26706:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "26499:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "26507:3:16",
"type": ""
}
],
"src": "26365:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26908:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26918:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26930:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26941:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26926:3:16"
},
"nodeType": "YulFunctionCall",
"src": "26926:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26918:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26965:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26976:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26961:3:16"
},
"nodeType": "YulFunctionCall",
"src": "26961:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26984:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26990:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "26980:3:16"
},
"nodeType": "YulFunctionCall",
"src": "26980:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26954:6:16"
},
"nodeType": "YulFunctionCall",
"src": "26954:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "26954:47:16"
},
{
"nodeType": "YulAssignment",
"src": "27010:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27144:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "27018:124:16"
},
"nodeType": "YulFunctionCall",
"src": "27018:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27010:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "26888:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "26903:4:16",
"type": ""
}
],
"src": "26737:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27268:117:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "27290:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27298:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27286:3:16"
},
"nodeType": "YulFunctionCall",
"src": "27286:14:16"
},
{
"hexValue": "4552433732313a207472616e7366657220746f20746865207a65726f20616464",
"kind": "string",
"nodeType": "YulLiteral",
"src": "27302:34:16",
"type": "",
"value": "ERC721: transfer to the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27279:6:16"
},
"nodeType": "YulFunctionCall",
"src": "27279:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "27279:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "27358:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27366:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27354:3:16"
},
"nodeType": "YulFunctionCall",
"src": "27354:15:16"
},
{
"hexValue": "72657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "27371:6:16",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27347:6:16"
},
"nodeType": "YulFunctionCall",
"src": "27347:31:16"
},
"nodeType": "YulExpressionStatement",
"src": "27347:31:16"
}
]
},
"name": "store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "27260:6:16",
"type": ""
}
],
"src": "27162:223:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27537:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27547:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "27613:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27618:2:16",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "27554:58:16"
},
"nodeType": "YulFunctionCall",
"src": "27554:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "27547:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "27719:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4",
"nodeType": "YulIdentifier",
"src": "27630:88:16"
},
"nodeType": "YulFunctionCall",
"src": "27630:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "27630:93:16"
},
{
"nodeType": "YulAssignment",
"src": "27732:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "27743:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27748:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27739:3:16"
},
"nodeType": "YulFunctionCall",
"src": "27739:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "27732:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "27525:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "27533:3:16",
"type": ""
}
],
"src": "27391:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27934:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27944:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27956:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27967:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27952:3:16"
},
"nodeType": "YulFunctionCall",
"src": "27952:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27944:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27991:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28002:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27987:3:16"
},
"nodeType": "YulFunctionCall",
"src": "27987:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28010:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28016:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "28006:3:16"
},
"nodeType": "YulFunctionCall",
"src": "28006:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27980:6:16"
},
"nodeType": "YulFunctionCall",
"src": "27980:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "27980:47:16"
},
{
"nodeType": "YulAssignment",
"src": "28036:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28170:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "28044:124:16"
},
"nodeType": "YulFunctionCall",
"src": "28044:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28036:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "27914:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "27929:4:16",
"type": ""
}
],
"src": "27763:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28216:152:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28233:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28236:77:16",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28226:6:16"
},
"nodeType": "YulFunctionCall",
"src": "28226:88:16"
},
"nodeType": "YulExpressionStatement",
"src": "28226:88:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28330:1:16",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28333:4:16",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28323:6:16"
},
"nodeType": "YulFunctionCall",
"src": "28323:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "28323:15:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28354:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28357:4:16",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "28347:6:16"
},
"nodeType": "YulFunctionCall",
"src": "28347:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "28347:15:16"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "28188:180:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28419:146:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28429:25:16",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "28452:1:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "28434:17:16"
},
"nodeType": "YulFunctionCall",
"src": "28434:20:16"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "28429:1:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "28463:25:16",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "28486:1:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "28468:17:16"
},
"nodeType": "YulFunctionCall",
"src": "28468:20:16"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "28463:1:16"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "28510:22:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "28512:16:16"
},
"nodeType": "YulFunctionCall",
"src": "28512:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "28512:18:16"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "28504:1:16"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "28507:1:16"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "28501:2:16"
},
"nodeType": "YulFunctionCall",
"src": "28501:8:16"
},
"nodeType": "YulIf",
"src": "28498:34:16"
},
{
"nodeType": "YulAssignment",
"src": "28542:17:16",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "28554:1:16"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "28557:1:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "28550:3:16"
},
"nodeType": "YulFunctionCall",
"src": "28550:9:16"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "28542:4:16"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "28405:1:16",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "28408:1:16",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "28414:4:16",
"type": ""
}
],
"src": "28374:191:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28615:261:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28625:25:16",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "28648:1:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "28630:17:16"
},
"nodeType": "YulFunctionCall",
"src": "28630:20:16"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "28625:1:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "28659:25:16",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "28682:1:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "28664:17:16"
},
"nodeType": "YulFunctionCall",
"src": "28664:20:16"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "28659:1:16"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "28822:22:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "28824:16:16"
},
"nodeType": "YulFunctionCall",
"src": "28824:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "28824:18:16"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "28743:1:16"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28750:66:16",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "28818:1:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "28746:3:16"
},
"nodeType": "YulFunctionCall",
"src": "28746:74:16"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "28740:2:16"
},
"nodeType": "YulFunctionCall",
"src": "28740:81:16"
},
"nodeType": "YulIf",
"src": "28737:107:16"
},
{
"nodeType": "YulAssignment",
"src": "28854:16:16",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "28865:1:16"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "28868:1:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28861:3:16"
},
"nodeType": "YulFunctionCall",
"src": "28861:9:16"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "28854:3:16"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "28602:1:16",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "28605:1:16",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "28611:3:16",
"type": ""
}
],
"src": "28571:305:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28988:67:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "29010:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29018:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29006:3:16"
},
"nodeType": "YulFunctionCall",
"src": "29006:14:16"
},
{
"hexValue": "416363657373436f6e74726f6c3a206163636f756e7420",
"kind": "string",
"nodeType": "YulLiteral",
"src": "29022:25:16",
"type": "",
"value": "AccessControl: account "
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28999:6:16"
},
"nodeType": "YulFunctionCall",
"src": "28999:49:16"
},
"nodeType": "YulExpressionStatement",
"src": "28999:49:16"
}
]
},
"name": "store_literal_in_memory_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "28980:6:16",
"type": ""
}
],
"src": "28882:173:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29225:238:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29235:92:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "29319:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29324:2:16",
"type": "",
"value": "23"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "29242:76:16"
},
"nodeType": "YulFunctionCall",
"src": "29242:85:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "29235:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "29425:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874",
"nodeType": "YulIdentifier",
"src": "29336:88:16"
},
"nodeType": "YulFunctionCall",
"src": "29336:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "29336:93:16"
},
{
"nodeType": "YulAssignment",
"src": "29438:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "29449:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29454:2:16",
"type": "",
"value": "23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29445:3:16"
},
"nodeType": "YulFunctionCall",
"src": "29445:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "29438:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "29213:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "29221:3:16",
"type": ""
}
],
"src": "29061:402:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29575:61:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "29597:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29605:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29593:3:16"
},
"nodeType": "YulFunctionCall",
"src": "29593:14:16"
},
{
"hexValue": "206973206d697373696e6720726f6c6520",
"kind": "string",
"nodeType": "YulLiteral",
"src": "29609:19:16",
"type": "",
"value": " is missing role "
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29586:6:16"
},
"nodeType": "YulFunctionCall",
"src": "29586:43:16"
},
"nodeType": "YulExpressionStatement",
"src": "29586:43:16"
}
]
},
"name": "store_literal_in_memory_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "29567:6:16",
"type": ""
}
],
"src": "29469:167:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29806:238:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29816:92:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "29900:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29905:2:16",
"type": "",
"value": "17"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "29823:76:16"
},
"nodeType": "YulFunctionCall",
"src": "29823:85:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "29816:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "30006:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69",
"nodeType": "YulIdentifier",
"src": "29917:88:16"
},
"nodeType": "YulFunctionCall",
"src": "29917:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "29917:93:16"
},
{
"nodeType": "YulAssignment",
"src": "30019:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "30030:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30035:2:16",
"type": "",
"value": "17"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30026:3:16"
},
"nodeType": "YulFunctionCall",
"src": "30026:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "30019:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "29794:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "29802:3:16",
"type": ""
}
],
"src": "29642:402:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30436:581:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "30447:155:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "30598:3:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "30454:142:16"
},
"nodeType": "YulFunctionCall",
"src": "30454:148:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "30447:3:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "30612:102:16",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "30701:6:16"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "30710:3:16"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "30619:81:16"
},
"nodeType": "YulFunctionCall",
"src": "30619:95:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "30612:3:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "30724:155:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "30875:3:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "30731:142:16"
},
"nodeType": "YulFunctionCall",
"src": "30731:148:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "30724:3:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "30889:102:16",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "30978:6:16"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "30987:3:16"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "30896:81:16"
},
"nodeType": "YulFunctionCall",
"src": "30896:95:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "30889:3:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "31001:10:16",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "31008:3:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "31001:3:16"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_stringliteral_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874_t_string_memory_ptr_t_stringliteral_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "30407:3:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "30413:6:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "30421:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "30432:3:16",
"type": ""
}
],
"src": "30050:967:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31129:69:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "31151:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31159:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31147:3:16"
},
"nodeType": "YulFunctionCall",
"src": "31147:14:16"
},
{
"hexValue": "4552433732313a20617070726f766520746f2063616c6c6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "31163:27:16",
"type": "",
"value": "ERC721: approve to caller"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31140:6:16"
},
"nodeType": "YulFunctionCall",
"src": "31140:51:16"
},
"nodeType": "YulExpressionStatement",
"src": "31140:51:16"
}
]
},
"name": "store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "31121:6:16",
"type": ""
}
],
"src": "31023:175:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31350:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "31360:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "31426:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31431:2:16",
"type": "",
"value": "25"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "31367:58:16"
},
"nodeType": "YulFunctionCall",
"src": "31367:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "31360:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "31532:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05",
"nodeType": "YulIdentifier",
"src": "31443:88:16"
},
"nodeType": "YulFunctionCall",
"src": "31443:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "31443:93:16"
},
{
"nodeType": "YulAssignment",
"src": "31545:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "31556:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31561:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31552:3:16"
},
"nodeType": "YulFunctionCall",
"src": "31552:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "31545:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "31338:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "31346:3:16",
"type": ""
}
],
"src": "31204:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31747:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "31757:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31769:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31780:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31765:3:16"
},
"nodeType": "YulFunctionCall",
"src": "31765:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31757:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31804:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31815:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31800:3:16"
},
"nodeType": "YulFunctionCall",
"src": "31800:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31823:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31829:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "31819:3:16"
},
"nodeType": "YulFunctionCall",
"src": "31819:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31793:6:16"
},
"nodeType": "YulFunctionCall",
"src": "31793:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "31793:47:16"
},
{
"nodeType": "YulAssignment",
"src": "31849:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31983:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "31857:124:16"
},
"nodeType": "YulFunctionCall",
"src": "31857:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31849:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "31727:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "31742:4:16",
"type": ""
}
],
"src": "31576:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32107:131:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "32129:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32137:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32125:3:16"
},
"nodeType": "YulFunctionCall",
"src": "32125:14:16"
},
{
"hexValue": "4552433732313a207472616e7366657220746f206e6f6e204552433732315265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "32141:34:16",
"type": "",
"value": "ERC721: transfer to non ERC721Re"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32118:6:16"
},
"nodeType": "YulFunctionCall",
"src": "32118:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "32118:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "32197:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32205:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32193:3:16"
},
"nodeType": "YulFunctionCall",
"src": "32193:15:16"
},
{
"hexValue": "63656976657220696d706c656d656e746572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "32210:20:16",
"type": "",
"value": "ceiver implementer"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32186:6:16"
},
"nodeType": "YulFunctionCall",
"src": "32186:45:16"
},
"nodeType": "YulExpressionStatement",
"src": "32186:45:16"
}
]
},
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "32099:6:16",
"type": ""
}
],
"src": "32001:237:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32390:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "32400:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "32466:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32471:2:16",
"type": "",
"value": "50"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "32407:58:16"
},
"nodeType": "YulFunctionCall",
"src": "32407:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "32400:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "32572:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
"nodeType": "YulIdentifier",
"src": "32483:88:16"
},
"nodeType": "YulFunctionCall",
"src": "32483:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "32483:93:16"
},
{
"nodeType": "YulAssignment",
"src": "32585:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "32596:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32601:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32592:3:16"
},
"nodeType": "YulFunctionCall",
"src": "32592:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "32585:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "32378:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "32386:3:16",
"type": ""
}
],
"src": "32244:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32787:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "32797:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "32809:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32820:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32805:3:16"
},
"nodeType": "YulFunctionCall",
"src": "32805:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32797:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "32844:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32855:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32840:3:16"
},
"nodeType": "YulFunctionCall",
"src": "32840:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32863:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "32869:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "32859:3:16"
},
"nodeType": "YulFunctionCall",
"src": "32859:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32833:6:16"
},
"nodeType": "YulFunctionCall",
"src": "32833:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "32833:47:16"
},
{
"nodeType": "YulAssignment",
"src": "32889:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33023:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "32897:124:16"
},
"nodeType": "YulFunctionCall",
"src": "32897:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32889:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "32767:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "32782:4:16",
"type": ""
}
],
"src": "32616:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33084:190:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "33094:33:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "33121:5:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "33103:17:16"
},
"nodeType": "YulFunctionCall",
"src": "33103:24:16"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "33094:5:16"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "33217:22:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "33219:16:16"
},
"nodeType": "YulFunctionCall",
"src": "33219:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "33219:18:16"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "33142:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33149:66:16",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "33139:2:16"
},
"nodeType": "YulFunctionCall",
"src": "33139:77:16"
},
"nodeType": "YulIf",
"src": "33136:103:16"
},
{
"nodeType": "YulAssignment",
"src": "33248:20:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "33259:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33266:1:16",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33255:3:16"
},
"nodeType": "YulFunctionCall",
"src": "33255:13:16"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "33248:3:16"
}
]
}
]
},
"name": "increment_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "33070:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "33080:3:16",
"type": ""
}
],
"src": "33041:233:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33308:152:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33325:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33328:77:16",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "33318:6:16"
},
"nodeType": "YulFunctionCall",
"src": "33318:88:16"
},
"nodeType": "YulExpressionStatement",
"src": "33318:88:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33422:1:16",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33425:4:16",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "33415:6:16"
},
"nodeType": "YulFunctionCall",
"src": "33415:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "33415:15:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33446:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33449:4:16",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "33439:6:16"
},
"nodeType": "YulFunctionCall",
"src": "33439:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "33439:15:16"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "33280:180:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33508:143:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "33518:25:16",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "33541:1:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "33523:17:16"
},
"nodeType": "YulFunctionCall",
"src": "33523:20:16"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "33518:1:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "33552:25:16",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "33575:1:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "33557:17:16"
},
"nodeType": "YulFunctionCall",
"src": "33557:20:16"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "33552:1:16"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "33599:22:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "33601:16:16"
},
"nodeType": "YulFunctionCall",
"src": "33601:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "33601:18:16"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "33596:1:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "33589:6:16"
},
"nodeType": "YulFunctionCall",
"src": "33589:9:16"
},
"nodeType": "YulIf",
"src": "33586:35:16"
},
{
"nodeType": "YulAssignment",
"src": "33631:14:16",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "33640:1:16"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "33643:1:16"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "33636:3:16"
},
"nodeType": "YulFunctionCall",
"src": "33636:9:16"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "33631:1:16"
}
]
}
]
},
"name": "checked_div_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "33497:1:16",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "33500:1:16",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "33506:1:16",
"type": ""
}
],
"src": "33466:185:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33691:142:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "33701:25:16",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "33724:1:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "33706:17:16"
},
"nodeType": "YulFunctionCall",
"src": "33706:20:16"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "33701:1:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "33735:25:16",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "33758:1:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "33740:17:16"
},
"nodeType": "YulFunctionCall",
"src": "33740:20:16"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "33735:1:16"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "33782:22:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "33784:16:16"
},
"nodeType": "YulFunctionCall",
"src": "33784:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "33784:18:16"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "33779:1:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "33772:6:16"
},
"nodeType": "YulFunctionCall",
"src": "33772:9:16"
},
"nodeType": "YulIf",
"src": "33769:35:16"
},
{
"nodeType": "YulAssignment",
"src": "33813:14:16",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "33822:1:16"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "33825:1:16"
}
],
"functionName": {
"name": "mod",
"nodeType": "YulIdentifier",
"src": "33818:3:16"
},
"nodeType": "YulFunctionCall",
"src": "33818:9:16"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "33813:1:16"
}
]
}
]
},
"name": "mod_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "33680:1:16",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "33683:1:16",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "33689:1:16",
"type": ""
}
],
"src": "33657:176:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33887:300:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "33897:25:16",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "33920:1:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "33902:17:16"
},
"nodeType": "YulFunctionCall",
"src": "33902:20:16"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "33897:1:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "33931:25:16",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "33954:1:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "33936:17:16"
},
"nodeType": "YulFunctionCall",
"src": "33936:20:16"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "33931:1:16"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "34129:22:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "34131:16:16"
},
"nodeType": "YulFunctionCall",
"src": "34131:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "34131:18:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "34041:1:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "34034:6:16"
},
"nodeType": "YulFunctionCall",
"src": "34034:9:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "34027:6:16"
},
"nodeType": "YulFunctionCall",
"src": "34027:17:16"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "34049:1:16"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34056:66:16",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "34124:1:16"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "34052:3:16"
},
"nodeType": "YulFunctionCall",
"src": "34052:74:16"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "34046:2:16"
},
"nodeType": "YulFunctionCall",
"src": "34046:81:16"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "34023:3:16"
},
"nodeType": "YulFunctionCall",
"src": "34023:105:16"
},
"nodeType": "YulIf",
"src": "34020:131:16"
},
{
"nodeType": "YulAssignment",
"src": "34161:20:16",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "34176:1:16"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "34179:1:16"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "34172:3:16"
},
"nodeType": "YulFunctionCall",
"src": "34172:9:16"
},
"variableNames": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "34161:7:16"
}
]
}
]
},
"name": "checked_mul_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "33870:1:16",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "33873:1:16",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nodeType": "YulTypedName",
"src": "33879:7:16",
"type": ""
}
],
"src": "33839:348:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34236:128:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "34246:33:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "34273:5:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "34255:17:16"
},
"nodeType": "YulFunctionCall",
"src": "34255:24:16"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "34246:5:16"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "34307:22:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "34309:16:16"
},
"nodeType": "YulFunctionCall",
"src": "34309:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "34309:18:16"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "34294:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34301:4:16",
"type": "",
"value": "0x00"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "34291:2:16"
},
"nodeType": "YulFunctionCall",
"src": "34291:15:16"
},
"nodeType": "YulIf",
"src": "34288:41:16"
},
{
"nodeType": "YulAssignment",
"src": "34338:20:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "34349:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34356:1:16",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "34345:3:16"
},
"nodeType": "YulFunctionCall",
"src": "34345:13:16"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "34338:3:16"
}
]
}
]
},
"name": "decrement_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "34222:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "34232:3:16",
"type": ""
}
],
"src": "34193:171:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34476:76:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "34498:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34506:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34494:3:16"
},
"nodeType": "YulFunctionCall",
"src": "34494:14:16"
},
{
"hexValue": "537472696e67733a20686578206c656e67746820696e73756666696369656e74",
"kind": "string",
"nodeType": "YulLiteral",
"src": "34510:34:16",
"type": "",
"value": "Strings: hex length insufficient"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "34487:6:16"
},
"nodeType": "YulFunctionCall",
"src": "34487:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "34487:58:16"
}
]
},
"name": "store_literal_in_memory_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "34468:6:16",
"type": ""
}
],
"src": "34370:182:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34704:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "34714:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "34780:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34785:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "34721:58:16"
},
"nodeType": "YulFunctionCall",
"src": "34721:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "34714:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "34886:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2",
"nodeType": "YulIdentifier",
"src": "34797:88:16"
},
"nodeType": "YulFunctionCall",
"src": "34797:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "34797:93:16"
},
{
"nodeType": "YulAssignment",
"src": "34899:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "34910:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34915:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34906:3:16"
},
"nodeType": "YulFunctionCall",
"src": "34906:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "34899:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "34692:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "34700:3:16",
"type": ""
}
],
"src": "34558:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35101:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "35111:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "35123:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35134:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35119:3:16"
},
"nodeType": "YulFunctionCall",
"src": "35119:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "35111:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "35158:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35169:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35154:3:16"
},
"nodeType": "YulFunctionCall",
"src": "35154:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "35177:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "35183:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "35173:3:16"
},
"nodeType": "YulFunctionCall",
"src": "35173:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "35147:6:16"
},
"nodeType": "YulFunctionCall",
"src": "35147:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "35147:47:16"
},
{
"nodeType": "YulAssignment",
"src": "35203:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "35337:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "35211:124:16"
},
"nodeType": "YulFunctionCall",
"src": "35211:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "35203:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "35081:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "35096:4:16",
"type": ""
}
],
"src": "34930:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35413:40:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "35424:22:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "35440:5:16"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "35434:5:16"
},
"nodeType": "YulFunctionCall",
"src": "35434:12:16"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "35424:6:16"
}
]
}
]
},
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "35396:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "35406:6:16",
"type": ""
}
],
"src": "35355:98:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35554:73:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "35571:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "35576:6:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "35564:6:16"
},
"nodeType": "YulFunctionCall",
"src": "35564:19:16"
},
"nodeType": "YulExpressionStatement",
"src": "35564:19:16"
},
{
"nodeType": "YulAssignment",
"src": "35592:29:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "35611:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35616:4:16",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35607:3:16"
},
"nodeType": "YulFunctionCall",
"src": "35607:14:16"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "35592:11:16"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "35526:3:16",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "35531:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "35542:11:16",
"type": ""
}
],
"src": "35459:168:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35723:270:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "35733:52:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "35779:5:16"
}
],
"functionName": {
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "35747:31:16"
},
"nodeType": "YulFunctionCall",
"src": "35747:38:16"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "35737:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "35794:77:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "35859:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "35864:6:16"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "35801:57:16"
},
"nodeType": "YulFunctionCall",
"src": "35801:70:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "35794:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "35906:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35913:4:16",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35902:3:16"
},
"nodeType": "YulFunctionCall",
"src": "35902:16:16"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "35920:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "35925:6:16"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "35880:21:16"
},
"nodeType": "YulFunctionCall",
"src": "35880:52:16"
},
"nodeType": "YulExpressionStatement",
"src": "35880:52:16"
},
{
"nodeType": "YulAssignment",
"src": "35941:46:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "35952:3:16"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "35979:6:16"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "35957:21:16"
},
"nodeType": "YulFunctionCall",
"src": "35957:29:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35948:3:16"
},
"nodeType": "YulFunctionCall",
"src": "35948:39:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "35941:3:16"
}
]
}
]
},
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "35704:5:16",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "35711:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "35719:3:16",
"type": ""
}
],
"src": "35633:360:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36199:440:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "36209:27:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "36221:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36232:3:16",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36217:3:16"
},
"nodeType": "YulFunctionCall",
"src": "36217:19:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "36209:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "36290:6:16"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "36303:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36314:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36299:3:16"
},
"nodeType": "YulFunctionCall",
"src": "36299:17:16"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "36246:43:16"
},
"nodeType": "YulFunctionCall",
"src": "36246:71:16"
},
"nodeType": "YulExpressionStatement",
"src": "36246:71:16"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "36371:6:16"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "36384:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36395:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36380:3:16"
},
"nodeType": "YulFunctionCall",
"src": "36380:18:16"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "36327:43:16"
},
"nodeType": "YulFunctionCall",
"src": "36327:72:16"
},
"nodeType": "YulExpressionStatement",
"src": "36327:72:16"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "36453:6:16"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "36466:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36477:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36462:3:16"
},
"nodeType": "YulFunctionCall",
"src": "36462:18:16"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "36409:43:16"
},
"nodeType": "YulFunctionCall",
"src": "36409:72:16"
},
"nodeType": "YulExpressionStatement",
"src": "36409:72:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "36502:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36513:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36498:3:16"
},
"nodeType": "YulFunctionCall",
"src": "36498:18:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "36522:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "36528:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "36518:3:16"
},
"nodeType": "YulFunctionCall",
"src": "36518:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "36491:6:16"
},
"nodeType": "YulFunctionCall",
"src": "36491:48:16"
},
"nodeType": "YulExpressionStatement",
"src": "36491:48:16"
},
{
"nodeType": "YulAssignment",
"src": "36548:84:16",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "36618:6:16"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "36627:4:16"
}
],
"functionName": {
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "36556:61:16"
},
"nodeType": "YulFunctionCall",
"src": "36556:76:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "36548:4:16"
}
]
}
]
},
"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": "36147:9:16",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "36159:6:16",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "36167:6:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "36175:6:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "36183:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "36194:4:16",
"type": ""
}
],
"src": "35999:640:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36707:79:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "36717:22:16",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "36732:6:16"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "36726:5:16"
},
"nodeType": "YulFunctionCall",
"src": "36726:13:16"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "36717:5:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "36774:5:16"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "36748:25:16"
},
"nodeType": "YulFunctionCall",
"src": "36748:32:16"
},
"nodeType": "YulExpressionStatement",
"src": "36748:32:16"
}
]
},
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "36685:6:16",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "36693:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "36701:5:16",
"type": ""
}
],
"src": "36645:141:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36868:273:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "36914:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "36916:77:16"
},
"nodeType": "YulFunctionCall",
"src": "36916:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "36916:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "36889:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "36898:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "36885:3:16"
},
"nodeType": "YulFunctionCall",
"src": "36885:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36910:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "36881:3:16"
},
"nodeType": "YulFunctionCall",
"src": "36881:32:16"
},
"nodeType": "YulIf",
"src": "36878:119:16"
},
{
"nodeType": "YulBlock",
"src": "37007:127:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "37022:15:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "37036:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "37026:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "37051:73:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "37096:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "37107:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "37092:3:16"
},
"nodeType": "YulFunctionCall",
"src": "37092:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "37116:7:16"
}
],
"functionName": {
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulIdentifier",
"src": "37061:30:16"
},
"nodeType": "YulFunctionCall",
"src": "37061:63:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "37051:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "36838:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "36849:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "36861:6:16",
"type": ""
}
],
"src": "36792:349:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37253:76:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "37275:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37283:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "37271:3:16"
},
"nodeType": "YulFunctionCall",
"src": "37271:14:16"
},
{
"hexValue": "4552433732313a206d696e7420746f20746865207a65726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "37287:34:16",
"type": "",
"value": "ERC721: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "37264:6:16"
},
"nodeType": "YulFunctionCall",
"src": "37264:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "37264:58:16"
}
]
},
"name": "store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "37245:6:16",
"type": ""
}
],
"src": "37147:182:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37481:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "37491:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "37557:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37562:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "37498:58:16"
},
"nodeType": "YulFunctionCall",
"src": "37498:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "37491:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "37663:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6",
"nodeType": "YulIdentifier",
"src": "37574:88:16"
},
"nodeType": "YulFunctionCall",
"src": "37574:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "37574:93:16"
},
{
"nodeType": "YulAssignment",
"src": "37676:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "37687:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37692:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "37683:3:16"
},
"nodeType": "YulFunctionCall",
"src": "37683:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "37676:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "37469:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "37477:3:16",
"type": ""
}
],
"src": "37335:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37878:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "37888:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "37900:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37911:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "37896:3:16"
},
"nodeType": "YulFunctionCall",
"src": "37896:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "37888:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "37935:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37946:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "37931:3:16"
},
"nodeType": "YulFunctionCall",
"src": "37931:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "37954:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "37960:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "37950:3:16"
},
"nodeType": "YulFunctionCall",
"src": "37950:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "37924:6:16"
},
"nodeType": "YulFunctionCall",
"src": "37924:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "37924:47:16"
},
{
"nodeType": "YulAssignment",
"src": "37980:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "38114:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "37988:124:16"
},
"nodeType": "YulFunctionCall",
"src": "37988:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "37980:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "37858:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "37873:4:16",
"type": ""
}
],
"src": "37707:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "38238:72:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "38260:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38268:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "38256:3:16"
},
"nodeType": "YulFunctionCall",
"src": "38256:14:16"
},
{
"hexValue": "4552433732313a20746f6b656e20616c7265616479206d696e746564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "38272:30:16",
"type": "",
"value": "ERC721: token already minted"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "38249:6:16"
},
"nodeType": "YulFunctionCall",
"src": "38249:54:16"
},
"nodeType": "YulExpressionStatement",
"src": "38249:54:16"
}
]
},
"name": "store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "38230:6:16",
"type": ""
}
],
"src": "38132:178:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "38462:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "38472:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "38538:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38543:2:16",
"type": "",
"value": "28"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "38479:58:16"
},
"nodeType": "YulFunctionCall",
"src": "38479:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "38472:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "38644:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57",
"nodeType": "YulIdentifier",
"src": "38555:88:16"
},
"nodeType": "YulFunctionCall",
"src": "38555:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "38555:93:16"
},
{
"nodeType": "YulAssignment",
"src": "38657:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "38668:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38673:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "38664:3:16"
},
"nodeType": "YulFunctionCall",
"src": "38664:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "38657:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "38450:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "38458:3:16",
"type": ""
}
],
"src": "38316:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "38859:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "38869:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "38881:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38892:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "38877:3:16"
},
"nodeType": "YulFunctionCall",
"src": "38877:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "38869:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "38916:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38927:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "38912:3:16"
},
"nodeType": "YulFunctionCall",
"src": "38912:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "38935:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "38941:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "38931:3:16"
},
"nodeType": "YulFunctionCall",
"src": "38931:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "38905:6:16"
},
"nodeType": "YulFunctionCall",
"src": "38905:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "38905:47:16"
},
{
"nodeType": "YulAssignment",
"src": "38961:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "39095:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "38969:124:16"
},
"nodeType": "YulFunctionCall",
"src": "38969:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "38961:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "38839:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "38854:4:16",
"type": ""
}
],
"src": "38688:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "39141:152:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39158:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39161:77:16",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "39151:6:16"
},
"nodeType": "YulFunctionCall",
"src": "39151:88:16"
},
"nodeType": "YulExpressionStatement",
"src": "39151:88:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39255:1:16",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39258:4:16",
"type": "",
"value": "0x31"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "39248:6:16"
},
"nodeType": "YulFunctionCall",
"src": "39248:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "39248:15:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39279:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "39282:4:16",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "39272:6:16"
},
"nodeType": "YulFunctionCall",
"src": "39272:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "39272:15:16"
}
]
},
"name": "panic_error_0x31",
"nodeType": "YulFunctionDefinition",
"src": "39113:180:16"
}
]
},
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_bytes4(value) -> cleaned {\n cleaned := and(value, 0xffffffff00000000000000000000000000000000000000000000000000000000)\n }\n\n function validator_revert_t_bytes4(value) {\n if iszero(eq(value, cleanup_t_bytes4(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_bytes4(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bytes4(value)\n }\n\n function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes4(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_bytes32(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_bytes32(value) {\n if iszero(eq(value, cleanup_t_bytes32(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_bytes32(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bytes32(value)\n }\n\n function abi_decode_tuple_t_bytes32(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_bytes32_to_t_bytes32_fromStack(value, pos) {\n mstore(pos, cleanup_t_bytes32(value))\n }\n\n function abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_bytes32t_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function validator_revert_t_bool(value) {\n if iszero(eq(value, cleanup_t_bool(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_bool(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bool(value)\n }\n\n function abi_decode_tuple_t_addresst_bool(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_bool(add(headStart, offset), dataEnd)\n }\n\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function array_allocation_size_t_bytes_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function copy_calldata_to_memory(src, dst, length) {\n calldatacopy(dst, src, length)\n // clear end\n mstore(add(dst, length), 0)\n }\n\n function abi_decode_available_length_t_bytes_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_bytes_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_calldata_to_memory(src, dst, length)\n }\n\n // bytes\n function abi_decode_t_bytes_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_bytes_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3 {\n if slt(sub(dataEnd, headStart), 128) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 96))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value3 := abi_decode_t_bytes_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approved query for nonex\")\n\n mstore(add(memPtr, 32), \"istent token\")\n\n }\n\n function abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 44)\n store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approval to current owne\")\n\n mstore(add(memPtr, 32), \"r\")\n\n }\n\n function abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 33)\n store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approve caller is not ow\")\n\n mstore(add(memPtr, 32), \"ner nor approved for all\")\n\n }\n\n function abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 56)\n store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: transfer caller is not o\")\n\n mstore(add(memPtr, 32), \"wner nor approved\")\n\n }\n\n function abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 49)\n store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721Enumerable: owner index ou\")\n\n mstore(add(memPtr, 32), \"t of bounds\")\n\n }\n\n function abi_encode_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 43)\n store_literal_in_memory_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b(memPtr) {\n\n mstore(add(memPtr, 0), \"AccessControl: can only renounce\")\n\n mstore(add(memPtr, 32), \" roles for self\")\n\n }\n\n function abi_encode_t_stringliteral_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 47)\n store_literal_in_memory_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_ee6b7e810d7b317242d4688e6943ff4dd7897bb01d903b1a666812481b12a4f1(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721Burnable: caller is not ow\")\n\n mstore(add(memPtr, 32), \"ner nor approved\")\n\n }\n\n function abi_encode_t_stringliteral_ee6b7e810d7b317242d4688e6943ff4dd7897bb01d903b1a666812481b12a4f1_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 48)\n store_literal_in_memory_ee6b7e810d7b317242d4688e6943ff4dd7897bb01d903b1a666812481b12a4f1(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_ee6b7e810d7b317242d4688e6943ff4dd7897bb01d903b1a666812481b12a4f1__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_ee6b7e810d7b317242d4688e6943ff4dd7897bb01d903b1a666812481b12a4f1_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721Enumerable: global index o\")\n\n mstore(add(memPtr, 32), \"ut of bounds\")\n\n }\n\n function abi_encode_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 44)\n store_literal_in_memory_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function panic_error_0x32() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x32)\n revert(0, 0x24)\n }\n\n function store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: owner query for nonexist\")\n\n mstore(add(memPtr, 32), \"ent token\")\n\n }\n\n function abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 41)\n store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: balance query for the ze\")\n\n mstore(add(memPtr, 32), \"ro address\")\n\n }\n\n function abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 42)\n store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721Metadata: URI query for no\")\n\n mstore(add(memPtr, 32), \"nexistent token\")\n\n }\n\n function abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 47)\n store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length) -> updated_pos {\n updated_pos := pos\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, length)\n }\n\n function abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos , value1, value0) -> end {\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value0, pos)\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value1, pos)\n\n end := pos\n }\n\n function store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: operator query for nonex\")\n\n mstore(add(memPtr, 32), \"istent token\")\n\n }\n\n function abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 44)\n store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: transfer of token that i\")\n\n mstore(add(memPtr, 32), \"s not own\")\n\n }\n\n function abi_encode_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 41)\n store_literal_in_memory_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: transfer to the zero add\")\n\n mstore(add(memPtr, 32), \"ress\")\n\n }\n\n function abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 36)\n store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n if lt(x, y) { panic_error_0x11() }\n\n diff := sub(x, y)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function store_literal_in_memory_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874(memPtr) {\n\n mstore(add(memPtr, 0), \"AccessControl: account \")\n\n }\n\n function abi_encode_t_stringliteral_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874_to_t_string_memory_ptr_nonPadded_inplace_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, 23)\n store_literal_in_memory_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874(pos)\n end := add(pos, 23)\n }\n\n function store_literal_in_memory_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69(memPtr) {\n\n mstore(add(memPtr, 0), \" is missing role \")\n\n }\n\n function abi_encode_t_stringliteral_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69_to_t_string_memory_ptr_nonPadded_inplace_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, 17)\n store_literal_in_memory_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69(pos)\n end := add(pos, 17)\n }\n\n function abi_encode_tuple_packed_t_stringliteral_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874_t_string_memory_ptr_t_stringliteral_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos , value1, value0) -> end {\n\n pos := abi_encode_t_stringliteral_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874_to_t_string_memory_ptr_nonPadded_inplace_fromStack( pos)\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value0, pos)\n\n pos := abi_encode_t_stringliteral_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69_to_t_string_memory_ptr_nonPadded_inplace_fromStack( pos)\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value1, pos)\n\n end := pos\n }\n\n function store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approve to caller\")\n\n }\n\n function abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 25)\n store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: transfer to non ERC721Re\")\n\n mstore(add(memPtr, 32), \"ceiver implementer\")\n\n }\n\n function abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 50)\n store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function increment_t_uint256(value) -> ret {\n value := cleanup_t_uint256(value)\n if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n ret := add(value, 1)\n }\n\n function panic_error_0x12() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x12)\n revert(0, 0x24)\n }\n\n function checked_div_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n\n r := div(x, y)\n }\n\n function mod_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n r := mod(x, y)\n }\n\n function checked_mul_t_uint256(x, y) -> product {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x != 0 and y > (maxValue / x)\n if and(iszero(iszero(x)), gt(y, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, x))) { panic_error_0x11() }\n\n product := mul(x, y)\n }\n\n function decrement_t_uint256(value) -> ret {\n value := cleanup_t_uint256(value)\n if eq(value, 0x00) { panic_error_0x11() }\n ret := sub(value, 1)\n }\n\n function store_literal_in_memory_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2(memPtr) {\n\n mstore(add(memPtr, 0), \"Strings: hex length insufficient\")\n\n }\n\n function abi_encode_t_stringliteral_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function array_length_t_bytes_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_bytes_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed(headStart , value3, value2, value1, value0) -> tail {\n tail := add(headStart, 128)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_address_to_t_address_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n mstore(add(headStart, 96), sub(tail, headStart))\n tail := abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack(value3, tail)\n\n }\n\n function abi_decode_t_bytes4_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_bytes4(value)\n }\n\n function abi_decode_tuple_t_bytes4_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes4_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: mint to the zero address\")\n\n }\n\n function abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: token already minted\")\n\n }\n\n function abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 28)\n store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function panic_error_0x31() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x31)\n revert(0, 0x24)\n }\n\n}\n",
"id": 16,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106101735760003560e01c806342966c68116100de578063a217fddf11610097578063c87b56dd11610071578063c87b56dd1461046c578063d53913931461049c578063d547741f146104ba578063e985e9c5146104d657610173565b8063a217fddf14610416578063a22cb46514610434578063b88d4fde1461045057610173565b806342966c681461031c5780634f6ccce7146103385780636352211e1461036857806370a082311461039857806391d14854146103c857806395d89b41146103f857610173565b8063248a9ca311610130578063248a9ca31461024c5780632f2ff15d1461027c5780632f745c591461029857806336568abe146102c857806340d097c3146102e457806342842e0e1461030057610173565b806301ffc9a71461017857806306fdde03146101a8578063081812fc146101c6578063095ea7b3146101f657806318160ddd1461021257806323b872dd14610230575b600080fd5b610192600480360381019061018d9190612735565b610506565b60405161019f919061277d565b60405180910390f35b6101b0610518565b6040516101bd9190612831565b60405180910390f35b6101e060048036038101906101db9190612889565b6105aa565b6040516101ed91906128f7565b60405180910390f35b610210600480360381019061020b919061293e565b61062f565b005b61021a610747565b604051610227919061298d565b60405180910390f35b61024a600480360381019061024591906129a8565b610754565b005b61026660048036038101906102619190612a31565b6107b4565b6040516102739190612a6d565b60405180910390f35b61029660048036038101906102919190612a88565b6107d4565b005b6102b260048036038101906102ad919061293e565b6107fd565b6040516102bf919061298d565b60405180910390f35b6102e260048036038101906102dd9190612a88565b6108a2565b005b6102fe60048036038101906102f99190612ac8565b610925565b005b61031a600480360381019061031591906129a8565b61097e565b005b61033660048036038101906103319190612889565b61099e565b005b610352600480360381019061034d9190612889565b6109fa565b60405161035f919061298d565b60405180910390f35b610382600480360381019061037d9190612889565b610a6b565b60405161038f91906128f7565b60405180910390f35b6103b260048036038101906103ad9190612ac8565b610b1d565b6040516103bf919061298d565b60405180910390f35b6103e260048036038101906103dd9190612a88565b610bd5565b6040516103ef919061277d565b60405180910390f35b610400610c40565b60405161040d9190612831565b60405180910390f35b61041e610cd2565b60405161042b9190612a6d565b60405180910390f35b61044e60048036038101906104499190612b21565b610cd9565b005b61046a60048036038101906104659190612c96565b610cef565b005b61048660048036038101906104819190612889565b610d51565b6040516104939190612831565b60405180910390f35b6104a4610df8565b6040516104b19190612a6d565b60405180910390f35b6104d460048036038101906104cf9190612a88565b610e1c565b005b6104f060048036038101906104eb9190612d19565b610e45565b6040516104fd919061277d565b60405180910390f35b600061051182610ed9565b9050919050565b60606000805461052790612d88565b80601f016020809104026020016040519081016040528092919081815260200182805461055390612d88565b80156105a05780601f10610575576101008083540402835291602001916105a0565b820191906000526020600020905b81548152906001019060200180831161058357829003601f168201915b5050505050905090565b60006105b582610f53565b6105f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105eb90612e2c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061063a82610a6b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a290612ebe565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106ca610fbf565b73ffffffffffffffffffffffffffffffffffffffff1614806106f957506106f8816106f3610fbf565b610e45565b5b610738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072f90612f50565b60405180910390fd5b6107428383610fc7565b505050565b6000600880549050905090565b61076561075f610fbf565b82611080565b6107a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079b90612fe2565b60405180910390fd5b6107af83838361115e565b505050565b6000600a6000838152602001908152602001600020600101549050919050565b6107dd826107b4565b6107ee816107e9610fbf565b6113ba565b6107f88383611457565b505050565b600061080883610b1d565b8210610849576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084090613074565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6108aa610fbf565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090e90613106565b60405180910390fd5b6109218282611538565b5050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661095781610952610fbf565b6113ba565b6000610963600b61161a565b905061096f600b611628565b610979838261163e565b505050565b61099983838360405180602001604052806000815250610cef565b505050565b6109af6109a9610fbf565b82611080565b6109ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e590613198565b60405180910390fd5b6109f78161165c565b50565b6000610a04610747565b8210610a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3c9061322a565b60405180910390fd5b60088281548110610a5957610a5861324a565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0b906132eb565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b859061337d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060018054610c4f90612d88565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7b90612d88565b8015610cc85780601f10610c9d57610100808354040283529160200191610cc8565b820191906000526020600020905b815481529060010190602001808311610cab57829003601f168201915b5050505050905090565b6000801b81565b610ceb610ce4610fbf565b838361176d565b5050565b610d00610cfa610fbf565b83611080565b610d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3690612fe2565b60405180910390fd5b610d4b848484846118da565b50505050565b6060610d5c82610f53565b610d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d929061340f565b60405180910390fd5b6000610da5611936565b90506000815111610dc55760405180602001604052806000815250610df0565b80610dcf84611973565b604051602001610de092919061346b565b6040516020818303038152906040525b915050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610e25826107b4565b610e3681610e31610fbf565b6113ba565b610e408383611538565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610f4c5750610f4b82611ad4565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661103a83610a6b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061108b82610f53565b6110ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c190613501565b60405180910390fd5b60006110d583610a6b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061114457508373ffffffffffffffffffffffffffffffffffffffff1661112c846105aa565b73ffffffffffffffffffffffffffffffffffffffff16145b8061115557506111548185610e45565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661117e82610a6b565b73ffffffffffffffffffffffffffffffffffffffff16146111d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cb90613593565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123b90613625565b60405180910390fd5b61124f838383611b4e565b61125a600082610fc7565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112aa9190613674565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461130191906136a8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6113c48282610bd5565b611453576113e98173ffffffffffffffffffffffffffffffffffffffff166014611b5e565b6113f78360001c6020611b5e565b604051602001611408929190613796565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144a9190612831565b60405180910390fd5b5050565b6114618282610bd5565b611534576001600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506114d9610fbf565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6115428282610bd5565b15611616576000600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506115bb610fbf565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600081600001549050919050565b6001816000016000828254019250508190555050565b611658828260405180602001604052806000815250611d9a565b5050565b600061166782610a6b565b905061167581600084611b4e565b611680600083610fc7565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116d09190613674565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d39061381c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118cd919061277d565b60405180910390a3505050565b6118e584848461115e565b6118f184848484611df5565b611930576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611927906138ae565b60405180910390fd5b50505050565b60606040518060400160405280601981526020017f68747470733a2f2f7777772e66696e652e6469676974616c2f00000000000000815250905090565b606060008214156119bb576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611acf565b600082905060005b600082146119ed5780806119d6906138ce565b915050600a826119e69190613946565b91506119c3565b60008167ffffffffffffffff811115611a0957611a08612b6b565b5b6040519080825280601f01601f191660200182016040528015611a3b5781602001600182028036833780820191505090505b5090505b60008514611ac857600182611a549190613674565b9150600a85611a639190613977565b6030611a6f91906136a8565b60f81b818381518110611a8557611a8461324a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611ac19190613946565b9450611a3f565b8093505050505b919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b475750611b4682611f7d565b5b9050919050565b611b5983838361205f565b505050565b606060006002836002611b7191906139a8565b611b7b91906136a8565b67ffffffffffffffff811115611b9457611b93612b6b565b5b6040519080825280601f01601f191660200182016040528015611bc65781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611bfe57611bfd61324a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611c6257611c6161324a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611ca291906139a8565b611cac91906136a8565b90505b6001811115611d4c577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611cee57611ced61324a565b5b1a60f81b828281518110611d0557611d0461324a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611d4590613a02565b9050611caf565b5060008414611d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8790613a78565b60405180910390fd5b8091505092915050565b611da48383612173565b611db16000848484611df5565b611df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de7906138ae565b60405180910390fd5b505050565b6000611e168473ffffffffffffffffffffffffffffffffffffffff16612341565b15611f70578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e3f610fbf565b8786866040518563ffffffff1660e01b8152600401611e619493929190613aed565b6020604051808303816000875af1925050508015611e9d57506040513d601f19601f82011682018060405250810190611e9a9190613b4e565b60015b611f20573d8060008114611ecd576040519150601f19603f3d011682016040523d82523d6000602084013e611ed2565b606091505b50600081511415611f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0f906138ae565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611f75565b600190505b949350505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061204857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612058575061205782612354565b5b9050919050565b61206a8383836123be565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120ad576120a8816123c3565b6120ec565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146120eb576120ea838261240c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561212f5761212a81612579565b61216e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461216d5761216c828261264a565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121da90613bc7565b60405180910390fd5b6121ec81610f53565b1561222c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222390613c33565b60405180910390fd5b61223860008383611b4e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461228891906136a8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161241984610b1d565b6124239190613674565b9050600060076000848152602001908152602001600020549050818114612508576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061258d9190613674565b90506000600960008481526020019081526020016000205490506000600883815481106125bd576125bc61324a565b5b9060005260206000200154905080600883815481106125df576125de61324a565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061262e5761262d613c53565b5b6001900381819060005260206000200160009055905550505050565b600061265583610b1d565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612712816126dd565b811461271d57600080fd5b50565b60008135905061272f81612709565b92915050565b60006020828403121561274b5761274a6126d3565b5b600061275984828501612720565b91505092915050565b60008115159050919050565b61277781612762565b82525050565b6000602082019050612792600083018461276e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127d25780820151818401526020810190506127b7565b838111156127e1576000848401525b50505050565b6000601f19601f8301169050919050565b600061280382612798565b61280d81856127a3565b935061281d8185602086016127b4565b612826816127e7565b840191505092915050565b6000602082019050818103600083015261284b81846127f8565b905092915050565b6000819050919050565b61286681612853565b811461287157600080fd5b50565b6000813590506128838161285d565b92915050565b60006020828403121561289f5761289e6126d3565b5b60006128ad84828501612874565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128e1826128b6565b9050919050565b6128f1816128d6565b82525050565b600060208201905061290c60008301846128e8565b92915050565b61291b816128d6565b811461292657600080fd5b50565b60008135905061293881612912565b92915050565b60008060408385031215612955576129546126d3565b5b600061296385828601612929565b925050602061297485828601612874565b9150509250929050565b61298781612853565b82525050565b60006020820190506129a2600083018461297e565b92915050565b6000806000606084860312156129c1576129c06126d3565b5b60006129cf86828701612929565b93505060206129e086828701612929565b92505060406129f186828701612874565b9150509250925092565b6000819050919050565b612a0e816129fb565b8114612a1957600080fd5b50565b600081359050612a2b81612a05565b92915050565b600060208284031215612a4757612a466126d3565b5b6000612a5584828501612a1c565b91505092915050565b612a67816129fb565b82525050565b6000602082019050612a826000830184612a5e565b92915050565b60008060408385031215612a9f57612a9e6126d3565b5b6000612aad85828601612a1c565b9250506020612abe85828601612929565b9150509250929050565b600060208284031215612ade57612add6126d3565b5b6000612aec84828501612929565b91505092915050565b612afe81612762565b8114612b0957600080fd5b50565b600081359050612b1b81612af5565b92915050565b60008060408385031215612b3857612b376126d3565b5b6000612b4685828601612929565b9250506020612b5785828601612b0c565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ba3826127e7565b810181811067ffffffffffffffff82111715612bc257612bc1612b6b565b5b80604052505050565b6000612bd56126c9565b9050612be18282612b9a565b919050565b600067ffffffffffffffff821115612c0157612c00612b6b565b5b612c0a826127e7565b9050602081019050919050565b82818337600083830152505050565b6000612c39612c3484612be6565b612bcb565b905082815260208101848484011115612c5557612c54612b66565b5b612c60848285612c17565b509392505050565b600082601f830112612c7d57612c7c612b61565b5b8135612c8d848260208601612c26565b91505092915050565b60008060008060808587031215612cb057612caf6126d3565b5b6000612cbe87828801612929565b9450506020612ccf87828801612929565b9350506040612ce087828801612874565b925050606085013567ffffffffffffffff811115612d0157612d006126d8565b5b612d0d87828801612c68565b91505092959194509250565b60008060408385031215612d3057612d2f6126d3565b5b6000612d3e85828601612929565b9250506020612d4f85828601612929565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612da057607f821691505b60208210811415612db457612db3612d59565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612e16602c836127a3565b9150612e2182612dba565b604082019050919050565b60006020820190508181036000830152612e4581612e09565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ea86021836127a3565b9150612eb382612e4c565b604082019050919050565b60006020820190508181036000830152612ed781612e9b565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612f3a6038836127a3565b9150612f4582612ede565b604082019050919050565b60006020820190508181036000830152612f6981612f2d565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612fcc6031836127a3565b9150612fd782612f70565b604082019050919050565b60006020820190508181036000830152612ffb81612fbf565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b600061305e602b836127a3565b915061306982613002565b604082019050919050565b6000602082019050818103600083015261308d81613051565b9050919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b60006130f0602f836127a3565b91506130fb82613094565b604082019050919050565b6000602082019050818103600083015261311f816130e3565b9050919050565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b60006131826030836127a3565b915061318d82613126565b604082019050919050565b600060208201905081810360008301526131b181613175565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613214602c836127a3565b915061321f826131b8565b604082019050919050565b6000602082019050818103600083015261324381613207565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006132d56029836127a3565b91506132e082613279565b604082019050919050565b60006020820190508181036000830152613304816132c8565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613367602a836127a3565b91506133728261330b565b604082019050919050565b600060208201905081810360008301526133968161335a565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006133f9602f836127a3565b91506134048261339d565b604082019050919050565b60006020820190508181036000830152613428816133ec565b9050919050565b600081905092915050565b600061344582612798565b61344f818561342f565b935061345f8185602086016127b4565b80840191505092915050565b6000613477828561343a565b9150613483828461343a565b91508190509392505050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006134eb602c836127a3565b91506134f68261348f565b604082019050919050565b6000602082019050818103600083015261351a816134de565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b600061357d6029836127a3565b915061358882613521565b604082019050919050565b600060208201905081810360008301526135ac81613570565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061360f6024836127a3565b915061361a826135b3565b604082019050919050565b6000602082019050818103600083015261363e81613602565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061367f82612853565b915061368a83612853565b92508282101561369d5761369c613645565b5b828203905092915050565b60006136b382612853565b91506136be83612853565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136f3576136f2613645565b5b828201905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b600061373460178361342f565b915061373f826136fe565b601782019050919050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b600061378060118361342f565b915061378b8261374a565b601182019050919050565b60006137a182613727565b91506137ad828561343a565b91506137b882613773565b91506137c4828461343a565b91508190509392505050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006138066019836127a3565b9150613811826137d0565b602082019050919050565b60006020820190508181036000830152613835816137f9565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006138986032836127a3565b91506138a38261383c565b604082019050919050565b600060208201905081810360008301526138c78161388b565b9050919050565b60006138d982612853565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561390c5761390b613645565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061395182612853565b915061395c83612853565b92508261396c5761396b613917565b5b828204905092915050565b600061398282612853565b915061398d83612853565b92508261399d5761399c613917565b5b828206905092915050565b60006139b382612853565b91506139be83612853565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139f7576139f6613645565b5b828202905092915050565b6000613a0d82612853565b91506000821415613a2157613a20613645565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000613a626020836127a3565b9150613a6d82613a2c565b602082019050919050565b60006020820190508181036000830152613a9181613a55565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613abf82613a98565b613ac98185613aa3565b9350613ad98185602086016127b4565b613ae2816127e7565b840191505092915050565b6000608082019050613b0260008301876128e8565b613b0f60208301866128e8565b613b1c604083018561297e565b8181036060830152613b2e8184613ab4565b905095945050505050565b600081519050613b4881612709565b92915050565b600060208284031215613b6457613b636126d3565b5b6000613b7284828501613b39565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613bb16020836127a3565b9150613bbc82613b7b565b602082019050919050565b60006020820190508181036000830152613be081613ba4565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613c1d601c836127a3565b9150613c2882613be7565b602082019050919050565b60006020820190508181036000830152613c4c81613c10565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea26469706673582212205001e9651d58422593998a060c117484cc691d26c494777c4ec75275e39265e164736f6c634300080c0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x173 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x42966C68 GT PUSH2 0xDE JUMPI DUP1 PUSH4 0xA217FDDF GT PUSH2 0x97 JUMPI DUP1 PUSH4 0xC87B56DD GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x46C JUMPI DUP1 PUSH4 0xD5391393 EQ PUSH2 0x49C JUMPI DUP1 PUSH4 0xD547741F EQ PUSH2 0x4BA JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x4D6 JUMPI PUSH2 0x173 JUMP JUMPDEST DUP1 PUSH4 0xA217FDDF EQ PUSH2 0x416 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x434 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x450 JUMPI PUSH2 0x173 JUMP JUMPDEST DUP1 PUSH4 0x42966C68 EQ PUSH2 0x31C JUMPI DUP1 PUSH4 0x4F6CCCE7 EQ PUSH2 0x338 JUMPI DUP1 PUSH4 0x6352211E EQ PUSH2 0x368 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x398 JUMPI DUP1 PUSH4 0x91D14854 EQ PUSH2 0x3C8 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x3F8 JUMPI PUSH2 0x173 JUMP JUMPDEST DUP1 PUSH4 0x248A9CA3 GT PUSH2 0x130 JUMPI DUP1 PUSH4 0x248A9CA3 EQ PUSH2 0x24C JUMPI DUP1 PUSH4 0x2F2FF15D EQ PUSH2 0x27C JUMPI DUP1 PUSH4 0x2F745C59 EQ PUSH2 0x298 JUMPI DUP1 PUSH4 0x36568ABE EQ PUSH2 0x2C8 JUMPI DUP1 PUSH4 0x40D097C3 EQ PUSH2 0x2E4 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x300 JUMPI PUSH2 0x173 JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x178 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x1A8 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x1C6 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x1F6 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x212 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x230 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x192 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x18D SWAP2 SWAP1 PUSH2 0x2735 JUMP JUMPDEST PUSH2 0x506 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x19F SWAP2 SWAP1 PUSH2 0x277D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1B0 PUSH2 0x518 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BD SWAP2 SWAP1 PUSH2 0x2831 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1E0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1DB SWAP2 SWAP1 PUSH2 0x2889 JUMP JUMPDEST PUSH2 0x5AA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1ED SWAP2 SWAP1 PUSH2 0x28F7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x210 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x20B SWAP2 SWAP1 PUSH2 0x293E JUMP JUMPDEST PUSH2 0x62F JUMP JUMPDEST STOP JUMPDEST PUSH2 0x21A PUSH2 0x747 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x227 SWAP2 SWAP1 PUSH2 0x298D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x24A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x245 SWAP2 SWAP1 PUSH2 0x29A8 JUMP JUMPDEST PUSH2 0x754 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x266 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x261 SWAP2 SWAP1 PUSH2 0x2A31 JUMP JUMPDEST PUSH2 0x7B4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x273 SWAP2 SWAP1 PUSH2 0x2A6D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x296 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x291 SWAP2 SWAP1 PUSH2 0x2A88 JUMP JUMPDEST PUSH2 0x7D4 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2B2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2AD SWAP2 SWAP1 PUSH2 0x293E JUMP JUMPDEST PUSH2 0x7FD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2BF SWAP2 SWAP1 PUSH2 0x298D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2E2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2DD SWAP2 SWAP1 PUSH2 0x2A88 JUMP JUMPDEST PUSH2 0x8A2 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2FE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2F9 SWAP2 SWAP1 PUSH2 0x2AC8 JUMP JUMPDEST PUSH2 0x925 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x31A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x315 SWAP2 SWAP1 PUSH2 0x29A8 JUMP JUMPDEST PUSH2 0x97E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x336 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x331 SWAP2 SWAP1 PUSH2 0x2889 JUMP JUMPDEST PUSH2 0x99E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x352 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x34D SWAP2 SWAP1 PUSH2 0x2889 JUMP JUMPDEST PUSH2 0x9FA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x35F SWAP2 SWAP1 PUSH2 0x298D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x382 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x37D SWAP2 SWAP1 PUSH2 0x2889 JUMP JUMPDEST PUSH2 0xA6B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x38F SWAP2 SWAP1 PUSH2 0x28F7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3B2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3AD SWAP2 SWAP1 PUSH2 0x2AC8 JUMP JUMPDEST PUSH2 0xB1D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3BF SWAP2 SWAP1 PUSH2 0x298D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3E2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3DD SWAP2 SWAP1 PUSH2 0x2A88 JUMP JUMPDEST PUSH2 0xBD5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3EF SWAP2 SWAP1 PUSH2 0x277D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x400 PUSH2 0xC40 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x40D SWAP2 SWAP1 PUSH2 0x2831 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x41E PUSH2 0xCD2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x42B SWAP2 SWAP1 PUSH2 0x2A6D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x44E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x449 SWAP2 SWAP1 PUSH2 0x2B21 JUMP JUMPDEST PUSH2 0xCD9 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x46A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x465 SWAP2 SWAP1 PUSH2 0x2C96 JUMP JUMPDEST PUSH2 0xCEF JUMP JUMPDEST STOP JUMPDEST PUSH2 0x486 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x481 SWAP2 SWAP1 PUSH2 0x2889 JUMP JUMPDEST PUSH2 0xD51 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x493 SWAP2 SWAP1 PUSH2 0x2831 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4A4 PUSH2 0xDF8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4B1 SWAP2 SWAP1 PUSH2 0x2A6D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4D4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x4CF SWAP2 SWAP1 PUSH2 0x2A88 JUMP JUMPDEST PUSH2 0xE1C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x4F0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x4EB SWAP2 SWAP1 PUSH2 0x2D19 JUMP JUMPDEST PUSH2 0xE45 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4FD SWAP2 SWAP1 PUSH2 0x277D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 PUSH2 0x511 DUP3 PUSH2 0xED9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x527 SWAP1 PUSH2 0x2D88 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 0x553 SWAP1 PUSH2 0x2D88 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x5A0 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x575 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x5A0 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 0x583 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5B5 DUP3 PUSH2 0xF53 JUMP JUMPDEST PUSH2 0x5F4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5EB SWAP1 PUSH2 0x2E2C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x63A DUP3 PUSH2 0xA6B JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x6AB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6A2 SWAP1 PUSH2 0x2EBE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x6CA PUSH2 0xFBF JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x6F9 JUMPI POP PUSH2 0x6F8 DUP2 PUSH2 0x6F3 PUSH2 0xFBF JUMP JUMPDEST PUSH2 0xE45 JUMP JUMPDEST JUMPDEST PUSH2 0x738 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x72F SWAP1 PUSH2 0x2F50 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x742 DUP4 DUP4 PUSH2 0xFC7 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 DUP1 SLOAD SWAP1 POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x765 PUSH2 0x75F PUSH2 0xFBF JUMP JUMPDEST DUP3 PUSH2 0x1080 JUMP JUMPDEST PUSH2 0x7A4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x79B SWAP1 PUSH2 0x2FE2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x7AF DUP4 DUP4 DUP4 PUSH2 0x115E JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x7DD DUP3 PUSH2 0x7B4 JUMP JUMPDEST PUSH2 0x7EE DUP2 PUSH2 0x7E9 PUSH2 0xFBF JUMP JUMPDEST PUSH2 0x13BA JUMP JUMPDEST PUSH2 0x7F8 DUP4 DUP4 PUSH2 0x1457 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x808 DUP4 PUSH2 0xB1D JUMP JUMPDEST DUP3 LT PUSH2 0x849 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x840 SWAP1 PUSH2 0x3074 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x6 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x8AA PUSH2 0xFBF JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x917 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x90E SWAP1 PUSH2 0x3106 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x921 DUP3 DUP3 PUSH2 0x1538 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH32 0x9F2DF0FED2C77648DE5860A4CC508CD0818C85B8B8A1AB4CEEEF8D981C8956A6 PUSH2 0x957 DUP2 PUSH2 0x952 PUSH2 0xFBF JUMP JUMPDEST PUSH2 0x13BA JUMP JUMPDEST PUSH1 0x0 PUSH2 0x963 PUSH1 0xB PUSH2 0x161A JUMP JUMPDEST SWAP1 POP PUSH2 0x96F PUSH1 0xB PUSH2 0x1628 JUMP JUMPDEST PUSH2 0x979 DUP4 DUP3 PUSH2 0x163E JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x999 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0xCEF JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x9AF PUSH2 0x9A9 PUSH2 0xFBF JUMP JUMPDEST DUP3 PUSH2 0x1080 JUMP JUMPDEST PUSH2 0x9EE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9E5 SWAP1 PUSH2 0x3198 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x9F7 DUP2 PUSH2 0x165C JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA04 PUSH2 0x747 JUMP JUMPDEST DUP3 LT PUSH2 0xA45 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA3C SWAP1 PUSH2 0x322A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x8 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0xA59 JUMPI PUSH2 0xA58 PUSH2 0x324A JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x2 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xB14 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB0B SWAP1 PUSH2 0x32EB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xB8E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB85 SWAP1 PUSH2 0x337D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x3 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0xC4F SWAP1 PUSH2 0x2D88 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 0xC7B SWAP1 PUSH2 0x2D88 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xCC8 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xC9D JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xCC8 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 0xCAB JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 SHL DUP2 JUMP JUMPDEST PUSH2 0xCEB PUSH2 0xCE4 PUSH2 0xFBF JUMP JUMPDEST DUP4 DUP4 PUSH2 0x176D JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0xD00 PUSH2 0xCFA PUSH2 0xFBF JUMP JUMPDEST DUP4 PUSH2 0x1080 JUMP JUMPDEST PUSH2 0xD3F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD36 SWAP1 PUSH2 0x2FE2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xD4B DUP5 DUP5 DUP5 DUP5 PUSH2 0x18DA JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0xD5C DUP3 PUSH2 0xF53 JUMP JUMPDEST PUSH2 0xD9B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD92 SWAP1 PUSH2 0x340F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xDA5 PUSH2 0x1936 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0xDC5 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0xDF0 JUMP JUMPDEST DUP1 PUSH2 0xDCF DUP5 PUSH2 0x1973 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xDE0 SWAP3 SWAP2 SWAP1 PUSH2 0x346B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x9F2DF0FED2C77648DE5860A4CC508CD0818C85B8B8A1AB4CEEEF8D981C8956A6 DUP2 JUMP JUMPDEST PUSH2 0xE25 DUP3 PUSH2 0x7B4 JUMP JUMPDEST PUSH2 0xE36 DUP2 PUSH2 0xE31 PUSH2 0xFBF JUMP JUMPDEST PUSH2 0x13BA JUMP JUMPDEST PUSH2 0xE40 DUP4 DUP4 PUSH2 0x1538 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x7965DB0B00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0xF4C JUMPI POP PUSH2 0xF4B DUP3 PUSH2 0x1AD4 JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x2 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x103A DUP4 PUSH2 0xA6B JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x108B DUP3 PUSH2 0xF53 JUMP JUMPDEST PUSH2 0x10CA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x10C1 SWAP1 PUSH2 0x3501 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x10D5 DUP4 PUSH2 0xA6B JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x1144 JUMPI POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x112C DUP5 PUSH2 0x5AA JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST DUP1 PUSH2 0x1155 JUMPI POP PUSH2 0x1154 DUP2 DUP6 PUSH2 0xE45 JUMP JUMPDEST JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x117E DUP3 PUSH2 0xA6B JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x11D4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x11CB SWAP1 PUSH2 0x3593 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1244 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x123B SWAP1 PUSH2 0x3625 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x124F DUP4 DUP4 DUP4 PUSH2 0x1B4E JUMP JUMPDEST PUSH2 0x125A PUSH1 0x0 DUP3 PUSH2 0xFC7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x12AA SWAP2 SWAP1 PUSH2 0x3674 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1301 SWAP2 SWAP1 PUSH2 0x36A8 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP JUMP JUMPDEST PUSH2 0x13C4 DUP3 DUP3 PUSH2 0xBD5 JUMP JUMPDEST PUSH2 0x1453 JUMPI PUSH2 0x13E9 DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x14 PUSH2 0x1B5E JUMP JUMPDEST PUSH2 0x13F7 DUP4 PUSH1 0x0 SHR PUSH1 0x20 PUSH2 0x1B5E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x1408 SWAP3 SWAP2 SWAP1 PUSH2 0x3796 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x144A SWAP2 SWAP1 PUSH2 0x2831 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x1461 DUP3 DUP3 PUSH2 0xBD5 JUMP JUMPDEST PUSH2 0x1534 JUMPI PUSH1 0x1 PUSH1 0xA PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH2 0x14D9 PUSH2 0xFBF JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0x2F8788117E7EFF1D82E926EC794901D17C78024A50270940304540A733656F0D PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x1542 DUP3 DUP3 PUSH2 0xBD5 JUMP JUMPDEST ISZERO PUSH2 0x1616 JUMPI PUSH1 0x0 PUSH1 0xA PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH2 0x15BB PUSH2 0xFBF JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0xF6391F5C32D9C69D2A47EA670B442974B53935D1EDC7FD64EB21E047A839171B PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 PUSH1 0x0 ADD PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH2 0x1658 DUP3 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x1D9A JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1667 DUP3 PUSH2 0xA6B JUMP JUMPDEST SWAP1 POP PUSH2 0x1675 DUP2 PUSH1 0x0 DUP5 PUSH2 0x1B4E JUMP JUMPDEST PUSH2 0x1680 PUSH1 0x0 DUP4 PUSH2 0xFC7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x16D0 SWAP2 SWAP1 PUSH2 0x3674 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x2 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 SSTORE DUP2 PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x17DC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x17D3 SWAP1 PUSH2 0x381C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x5 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 DUP4 PUSH1 0x40 MLOAD PUSH2 0x18CD SWAP2 SWAP1 PUSH2 0x277D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x18E5 DUP5 DUP5 DUP5 PUSH2 0x115E JUMP JUMPDEST PUSH2 0x18F1 DUP5 DUP5 DUP5 DUP5 PUSH2 0x1DF5 JUMP JUMPDEST PUSH2 0x1930 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1927 SWAP1 PUSH2 0x38AE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x19 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x68747470733A2F2F7777772E66696E652E6469676974616C2F00000000000000 DUP2 MSTORE POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 EQ ISZERO PUSH2 0x19BB JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x3000000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP1 POP PUSH2 0x1ACF JUMP JUMPDEST PUSH1 0x0 DUP3 SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x0 DUP3 EQ PUSH2 0x19ED JUMPI DUP1 DUP1 PUSH2 0x19D6 SWAP1 PUSH2 0x38CE JUMP JUMPDEST SWAP2 POP POP PUSH1 0xA DUP3 PUSH2 0x19E6 SWAP2 SWAP1 PUSH2 0x3946 JUMP JUMPDEST SWAP2 POP PUSH2 0x19C3 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1A09 JUMPI PUSH2 0x1A08 PUSH2 0x2B6B JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1A3B JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x1 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP JUMPDEST PUSH1 0x0 DUP6 EQ PUSH2 0x1AC8 JUMPI PUSH1 0x1 DUP3 PUSH2 0x1A54 SWAP2 SWAP1 PUSH2 0x3674 JUMP JUMPDEST SWAP2 POP PUSH1 0xA DUP6 PUSH2 0x1A63 SWAP2 SWAP1 PUSH2 0x3977 JUMP JUMPDEST PUSH1 0x30 PUSH2 0x1A6F SWAP2 SWAP1 PUSH2 0x36A8 JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x1A85 JUMPI PUSH2 0x1A84 PUSH2 0x324A JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0xA DUP6 PUSH2 0x1AC1 SWAP2 SWAP1 PUSH2 0x3946 JUMP JUMPDEST SWAP5 POP PUSH2 0x1A3F JUMP JUMPDEST DUP1 SWAP4 POP POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x780E9D6300000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x1B47 JUMPI POP PUSH2 0x1B46 DUP3 PUSH2 0x1F7D JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1B59 DUP4 DUP4 DUP4 PUSH2 0x205F JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH1 0x2 DUP4 PUSH1 0x2 PUSH2 0x1B71 SWAP2 SWAP1 PUSH2 0x39A8 JUMP JUMPDEST PUSH2 0x1B7B SWAP2 SWAP1 PUSH2 0x36A8 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1B94 JUMPI PUSH2 0x1B93 PUSH2 0x2B6B JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1BC6 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x1 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP PUSH32 0x3000000000000000000000000000000000000000000000000000000000000000 DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x1BFE JUMPI PUSH2 0x1BFD PUSH2 0x324A JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH32 0x7800000000000000000000000000000000000000000000000000000000000000 DUP2 PUSH1 0x1 DUP2 MLOAD DUP2 LT PUSH2 0x1C62 JUMPI PUSH2 0x1C61 PUSH2 0x324A JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0x0 PUSH1 0x1 DUP5 PUSH1 0x2 PUSH2 0x1CA2 SWAP2 SWAP1 PUSH2 0x39A8 JUMP JUMPDEST PUSH2 0x1CAC SWAP2 SWAP1 PUSH2 0x36A8 JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH1 0x1 DUP2 GT ISZERO PUSH2 0x1D4C JUMPI PUSH32 0x3031323334353637383961626364656600000000000000000000000000000000 PUSH1 0xF DUP7 AND PUSH1 0x10 DUP2 LT PUSH2 0x1CEE JUMPI PUSH2 0x1CED PUSH2 0x324A JUMP JUMPDEST JUMPDEST BYTE PUSH1 0xF8 SHL DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x1D05 JUMPI PUSH2 0x1D04 PUSH2 0x324A JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0x4 DUP6 SWAP1 SHR SWAP5 POP DUP1 PUSH2 0x1D45 SWAP1 PUSH2 0x3A02 JUMP JUMPDEST SWAP1 POP PUSH2 0x1CAF JUMP JUMPDEST POP PUSH1 0x0 DUP5 EQ PUSH2 0x1D90 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1D87 SWAP1 PUSH2 0x3A78 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1DA4 DUP4 DUP4 PUSH2 0x2173 JUMP JUMPDEST PUSH2 0x1DB1 PUSH1 0x0 DUP5 DUP5 DUP5 PUSH2 0x1DF5 JUMP JUMPDEST PUSH2 0x1DF0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1DE7 SWAP1 PUSH2 0x38AE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E16 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x2341 JUMP JUMPDEST ISZERO PUSH2 0x1F70 JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 PUSH2 0x1E3F PUSH2 0xFBF JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1E61 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3AED JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1E9D JUMPI POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1E9A SWAP2 SWAP1 PUSH2 0x3B4E JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x1F20 JUMPI RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x1ECD 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 0x1ED2 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH1 0x0 DUP2 MLOAD EQ ISZERO PUSH2 0x1F18 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F0F SWAP1 PUSH2 0x38AE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 MLOAD DUP2 PUSH1 0x20 ADD REVERT JUMPDEST PUSH4 0x150B7A02 PUSH1 0xE0 SHL PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP2 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP2 POP POP PUSH2 0x1F75 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x80AC58CD00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x2048 JUMPI POP PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH2 0x2058 JUMPI POP PUSH2 0x2057 DUP3 PUSH2 0x2354 JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x206A DUP4 DUP4 DUP4 PUSH2 0x23BE JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x20AD JUMPI PUSH2 0x20A8 DUP2 PUSH2 0x23C3 JUMP JUMPDEST PUSH2 0x20EC JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x20EB JUMPI PUSH2 0x20EA DUP4 DUP3 PUSH2 0x240C JUMP JUMPDEST JUMPDEST JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x212F JUMPI PUSH2 0x212A DUP2 PUSH2 0x2579 JUMP JUMPDEST PUSH2 0x216E JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x216D JUMPI PUSH2 0x216C DUP3 DUP3 PUSH2 0x264A JUMP JUMPDEST JUMPDEST JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x21E3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x21DA SWAP1 PUSH2 0x3BC7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x21EC DUP2 PUSH2 0xF53 JUMP JUMPDEST ISZERO PUSH2 0x222C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2223 SWAP1 PUSH2 0x3C33 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2238 PUSH1 0x0 DUP4 DUP4 PUSH2 0x1B4E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x2288 SWAP2 SWAP1 PUSH2 0x36A8 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 EXTCODESIZE SWAP1 POP PUSH1 0x0 DUP2 GT SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x8 DUP1 SLOAD SWAP1 POP PUSH1 0x9 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH1 0x8 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP SSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH2 0x2419 DUP5 PUSH2 0xB1D JUMP JUMPDEST PUSH2 0x2423 SWAP2 SWAP1 PUSH2 0x3674 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x7 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 EQ PUSH2 0x2508 JUMPI PUSH1 0x0 PUSH1 0x6 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP1 PUSH1 0x6 PUSH1 0x0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x7 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP POP JUMPDEST PUSH1 0x7 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SSTORE PUSH1 0x6 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x8 DUP1 SLOAD SWAP1 POP PUSH2 0x258D SWAP2 SWAP1 PUSH2 0x3674 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x9 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP PUSH1 0x0 PUSH1 0x8 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x25BD JUMPI PUSH2 0x25BC PUSH2 0x324A JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP DUP1 PUSH1 0x8 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x25DF JUMPI PUSH2 0x25DE PUSH2 0x324A JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x9 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH1 0x9 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SSTORE PUSH1 0x8 DUP1 SLOAD DUP1 PUSH2 0x262E JUMPI PUSH2 0x262D PUSH2 0x3C53 JUMP JUMPDEST 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 0x2655 DUP4 PUSH2 0xB1D JUMP JUMPDEST SWAP1 POP DUP2 PUSH1 0x6 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x7 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2712 DUP2 PUSH2 0x26DD JUMP JUMPDEST DUP2 EQ PUSH2 0x271D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x272F DUP2 PUSH2 0x2709 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x274B JUMPI PUSH2 0x274A PUSH2 0x26D3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2759 DUP5 DUP3 DUP6 ADD PUSH2 0x2720 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2777 DUP2 PUSH2 0x2762 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2792 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x276E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x27D2 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x27B7 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x27E1 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2803 DUP3 PUSH2 0x2798 JUMP JUMPDEST PUSH2 0x280D DUP2 DUP6 PUSH2 0x27A3 JUMP JUMPDEST SWAP4 POP PUSH2 0x281D DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x27B4 JUMP JUMPDEST PUSH2 0x2826 DUP2 PUSH2 0x27E7 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x284B DUP2 DUP5 PUSH2 0x27F8 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2866 DUP2 PUSH2 0x2853 JUMP JUMPDEST DUP2 EQ PUSH2 0x2871 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2883 DUP2 PUSH2 0x285D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x289F JUMPI PUSH2 0x289E PUSH2 0x26D3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x28AD DUP5 DUP3 DUP6 ADD PUSH2 0x2874 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x28E1 DUP3 PUSH2 0x28B6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x28F1 DUP2 PUSH2 0x28D6 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x290C PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x28E8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x291B DUP2 PUSH2 0x28D6 JUMP JUMPDEST DUP2 EQ PUSH2 0x2926 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2938 DUP2 PUSH2 0x2912 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2955 JUMPI PUSH2 0x2954 PUSH2 0x26D3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2963 DUP6 DUP3 DUP7 ADD PUSH2 0x2929 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2974 DUP6 DUP3 DUP7 ADD PUSH2 0x2874 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x2987 DUP2 PUSH2 0x2853 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x29A2 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x297E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x29C1 JUMPI PUSH2 0x29C0 PUSH2 0x26D3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x29CF DUP7 DUP3 DUP8 ADD PUSH2 0x2929 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x29E0 DUP7 DUP3 DUP8 ADD PUSH2 0x2929 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x29F1 DUP7 DUP3 DUP8 ADD PUSH2 0x2874 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2A0E DUP2 PUSH2 0x29FB JUMP JUMPDEST DUP2 EQ PUSH2 0x2A19 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2A2B DUP2 PUSH2 0x2A05 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2A47 JUMPI PUSH2 0x2A46 PUSH2 0x26D3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2A55 DUP5 DUP3 DUP6 ADD PUSH2 0x2A1C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2A67 DUP2 PUSH2 0x29FB JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2A82 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2A5E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2A9F JUMPI PUSH2 0x2A9E PUSH2 0x26D3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2AAD DUP6 DUP3 DUP7 ADD PUSH2 0x2A1C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2ABE DUP6 DUP3 DUP7 ADD PUSH2 0x2929 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2ADE JUMPI PUSH2 0x2ADD PUSH2 0x26D3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2AEC DUP5 DUP3 DUP6 ADD PUSH2 0x2929 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2AFE DUP2 PUSH2 0x2762 JUMP JUMPDEST DUP2 EQ PUSH2 0x2B09 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2B1B DUP2 PUSH2 0x2AF5 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2B38 JUMPI PUSH2 0x2B37 PUSH2 0x26D3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2B46 DUP6 DUP3 DUP7 ADD PUSH2 0x2929 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2B57 DUP6 DUP3 DUP7 ADD PUSH2 0x2B0C JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x2BA3 DUP3 PUSH2 0x27E7 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x2BC2 JUMPI PUSH2 0x2BC1 PUSH2 0x2B6B JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2BD5 PUSH2 0x26C9 JUMP JUMPDEST SWAP1 POP PUSH2 0x2BE1 DUP3 DUP3 PUSH2 0x2B9A JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x2C01 JUMPI PUSH2 0x2C00 PUSH2 0x2B6B JUMP JUMPDEST JUMPDEST PUSH2 0x2C0A DUP3 PUSH2 0x27E7 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2C39 PUSH2 0x2C34 DUP5 PUSH2 0x2BE6 JUMP JUMPDEST PUSH2 0x2BCB JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x2C55 JUMPI PUSH2 0x2C54 PUSH2 0x2B66 JUMP JUMPDEST JUMPDEST PUSH2 0x2C60 DUP5 DUP3 DUP6 PUSH2 0x2C17 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x2C7D JUMPI PUSH2 0x2C7C PUSH2 0x2B61 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x2C8D DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x2C26 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x2CB0 JUMPI PUSH2 0x2CAF PUSH2 0x26D3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2CBE DUP8 DUP3 DUP9 ADD PUSH2 0x2929 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x2CCF DUP8 DUP3 DUP9 ADD PUSH2 0x2929 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x2CE0 DUP8 DUP3 DUP9 ADD PUSH2 0x2874 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2D01 JUMPI PUSH2 0x2D00 PUSH2 0x26D8 JUMP JUMPDEST JUMPDEST PUSH2 0x2D0D DUP8 DUP3 DUP9 ADD PUSH2 0x2C68 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 0x2D30 JUMPI PUSH2 0x2D2F PUSH2 0x26D3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2D3E DUP6 DUP3 DUP7 ADD PUSH2 0x2929 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2D4F DUP6 DUP3 DUP7 ADD PUSH2 0x2929 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x2DA0 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x2DB4 JUMPI PUSH2 0x2DB3 PUSH2 0x2D59 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76656420717565727920666F72206E6F6E6578 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E16 PUSH1 0x2C DUP4 PUSH2 0x27A3 JUMP JUMPDEST SWAP2 POP PUSH2 0x2E21 DUP3 PUSH2 0x2DBA JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2E45 DUP2 PUSH2 0x2E09 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7200000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2EA8 PUSH1 0x21 DUP4 PUSH2 0x27A3 JUMP JUMPDEST SWAP2 POP PUSH2 0x2EB3 DUP3 PUSH2 0x2E4C JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2ED7 DUP2 PUSH2 0x2E9B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F74206F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6572206E6F7220617070726F76656420666F7220616C6C0000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2F3A PUSH1 0x38 DUP4 PUSH2 0x27A3 JUMP JUMPDEST SWAP2 POP PUSH2 0x2F45 DUP3 PUSH2 0x2EDE JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2F69 DUP2 PUSH2 0x2F2D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E736665722063616C6C6572206973206E6F74206F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x776E6572206E6F7220617070726F766564000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2FCC PUSH1 0x31 DUP4 PUSH2 0x27A3 JUMP JUMPDEST SWAP2 POP PUSH2 0x2FD7 DUP3 PUSH2 0x2F70 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2FFB DUP2 PUSH2 0x2FBF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x455243373231456E756D657261626C653A206F776E657220696E646578206F75 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x74206F6620626F756E6473000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x305E PUSH1 0x2B DUP4 PUSH2 0x27A3 JUMP JUMPDEST SWAP2 POP PUSH2 0x3069 DUP3 PUSH2 0x3002 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x308D DUP2 PUSH2 0x3051 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x416363657373436F6E74726F6C3A2063616E206F6E6C792072656E6F756E6365 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x20726F6C657320666F722073656C660000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x30F0 PUSH1 0x2F DUP4 PUSH2 0x27A3 JUMP JUMPDEST SWAP2 POP PUSH2 0x30FB DUP3 PUSH2 0x3094 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x311F DUP2 PUSH2 0x30E3 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732314275726E61626C653A2063616C6C6572206973206E6F74206F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6572206E6F7220617070726F76656400000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3182 PUSH1 0x30 DUP4 PUSH2 0x27A3 JUMP JUMPDEST SWAP2 POP PUSH2 0x318D DUP3 PUSH2 0x3126 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x31B1 DUP2 PUSH2 0x3175 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x455243373231456E756D657261626C653A20676C6F62616C20696E646578206F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7574206F6620626F756E64730000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3214 PUSH1 0x2C DUP4 PUSH2 0x27A3 JUMP JUMPDEST SWAP2 POP PUSH2 0x321F DUP3 PUSH2 0x31B8 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3243 DUP2 PUSH2 0x3207 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4552433732313A206F776E657220717565727920666F72206E6F6E6578697374 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x656E7420746F6B656E0000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x32D5 PUSH1 0x29 DUP4 PUSH2 0x27A3 JUMP JUMPDEST SWAP2 POP PUSH2 0x32E0 DUP3 PUSH2 0x3279 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3304 DUP2 PUSH2 0x32C8 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A2062616C616E636520717565727920666F7220746865207A65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x726F206164647265737300000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3367 PUSH1 0x2A DUP4 PUSH2 0x27A3 JUMP JUMPDEST SWAP2 POP PUSH2 0x3372 DUP3 PUSH2 0x330B JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3396 DUP2 PUSH2 0x335A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732314D657461646174613A2055524920717565727920666F72206E6F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6578697374656E7420746F6B656E0000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x33F9 PUSH1 0x2F DUP4 PUSH2 0x27A3 JUMP JUMPDEST SWAP2 POP PUSH2 0x3404 DUP3 PUSH2 0x339D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3428 DUP2 PUSH2 0x33EC JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3445 DUP3 PUSH2 0x2798 JUMP JUMPDEST PUSH2 0x344F DUP2 DUP6 PUSH2 0x342F JUMP JUMPDEST SWAP4 POP PUSH2 0x345F DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x27B4 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3477 DUP3 DUP6 PUSH2 0x343A JUMP JUMPDEST SWAP2 POP PUSH2 0x3483 DUP3 DUP5 PUSH2 0x343A JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x4552433732313A206F70657261746F7220717565727920666F72206E6F6E6578 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x34EB PUSH1 0x2C DUP4 PUSH2 0x27A3 JUMP JUMPDEST SWAP2 POP PUSH2 0x34F6 DUP3 PUSH2 0x348F JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x351A DUP2 PUSH2 0x34DE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E73666572206F6620746F6B656E20746861742069 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x73206E6F74206F776E0000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x357D PUSH1 0x29 DUP4 PUSH2 0x27A3 JUMP JUMPDEST SWAP2 POP PUSH2 0x3588 DUP3 PUSH2 0x3521 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x35AC DUP2 PUSH2 0x3570 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x360F PUSH1 0x24 DUP4 PUSH2 0x27A3 JUMP JUMPDEST SWAP2 POP PUSH2 0x361A DUP3 PUSH2 0x35B3 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x363E DUP2 PUSH2 0x3602 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x367F DUP3 PUSH2 0x2853 JUMP JUMPDEST SWAP2 POP PUSH2 0x368A DUP4 PUSH2 0x2853 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x369D JUMPI PUSH2 0x369C PUSH2 0x3645 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x36B3 DUP3 PUSH2 0x2853 JUMP JUMPDEST SWAP2 POP PUSH2 0x36BE DUP4 PUSH2 0x2853 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x36F3 JUMPI PUSH2 0x36F2 PUSH2 0x3645 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x416363657373436F6E74726F6C3A206163636F756E7420000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3734 PUSH1 0x17 DUP4 PUSH2 0x342F JUMP JUMPDEST SWAP2 POP PUSH2 0x373F DUP3 PUSH2 0x36FE JUMP JUMPDEST PUSH1 0x17 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x206973206D697373696E6720726F6C6520000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3780 PUSH1 0x11 DUP4 PUSH2 0x342F JUMP JUMPDEST SWAP2 POP PUSH2 0x378B DUP3 PUSH2 0x374A JUMP JUMPDEST PUSH1 0x11 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x37A1 DUP3 PUSH2 0x3727 JUMP JUMPDEST SWAP2 POP PUSH2 0x37AD DUP3 DUP6 PUSH2 0x343A JUMP JUMPDEST SWAP2 POP PUSH2 0x37B8 DUP3 PUSH2 0x3773 JUMP JUMPDEST SWAP2 POP PUSH2 0x37C4 DUP3 DUP5 PUSH2 0x343A JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3806 PUSH1 0x19 DUP4 PUSH2 0x27A3 JUMP JUMPDEST SWAP2 POP PUSH2 0x3811 DUP3 PUSH2 0x37D0 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3835 DUP2 PUSH2 0x37F9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x63656976657220696D706C656D656E7465720000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3898 PUSH1 0x32 DUP4 PUSH2 0x27A3 JUMP JUMPDEST SWAP2 POP PUSH2 0x38A3 DUP3 PUSH2 0x383C JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x38C7 DUP2 PUSH2 0x388B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x38D9 DUP3 PUSH2 0x2853 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x390C JUMPI PUSH2 0x390B PUSH2 0x3645 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x3951 DUP3 PUSH2 0x2853 JUMP JUMPDEST SWAP2 POP PUSH2 0x395C DUP4 PUSH2 0x2853 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x396C JUMPI PUSH2 0x396B PUSH2 0x3917 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3982 DUP3 PUSH2 0x2853 JUMP JUMPDEST SWAP2 POP PUSH2 0x398D DUP4 PUSH2 0x2853 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x399D JUMPI PUSH2 0x399C PUSH2 0x3917 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MOD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x39B3 DUP3 PUSH2 0x2853 JUMP JUMPDEST SWAP2 POP PUSH2 0x39BE DUP4 PUSH2 0x2853 JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x39F7 JUMPI PUSH2 0x39F6 PUSH2 0x3645 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3A0D DUP3 PUSH2 0x2853 JUMP JUMPDEST SWAP2 POP PUSH1 0x0 DUP3 EQ ISZERO PUSH2 0x3A21 JUMPI PUSH2 0x3A20 PUSH2 0x3645 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 SUB SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x537472696E67733A20686578206C656E67746820696E73756666696369656E74 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3A62 PUSH1 0x20 DUP4 PUSH2 0x27A3 JUMP JUMPDEST SWAP2 POP PUSH2 0x3A6D DUP3 PUSH2 0x3A2C JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3A91 DUP2 PUSH2 0x3A55 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3ABF DUP3 PUSH2 0x3A98 JUMP JUMPDEST PUSH2 0x3AC9 DUP2 DUP6 PUSH2 0x3AA3 JUMP JUMPDEST SWAP4 POP PUSH2 0x3AD9 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x27B4 JUMP JUMPDEST PUSH2 0x3AE2 DUP2 PUSH2 0x27E7 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x3B02 PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x28E8 JUMP JUMPDEST PUSH2 0x3B0F PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x28E8 JUMP JUMPDEST PUSH2 0x3B1C PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x297E JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x3B2E DUP2 DUP5 PUSH2 0x3AB4 JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x3B48 DUP2 PUSH2 0x2709 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3B64 JUMPI PUSH2 0x3B63 PUSH2 0x26D3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3B72 DUP5 DUP3 DUP6 ADD PUSH2 0x3B39 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4552433732313A206D696E7420746F20746865207A65726F2061646472657373 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3BB1 PUSH1 0x20 DUP4 PUSH2 0x27A3 JUMP JUMPDEST SWAP2 POP PUSH2 0x3BBC DUP3 PUSH2 0x3B7B JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3BE0 DUP2 PUSH2 0x3BA4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20746F6B656E20616C7265616479206D696E74656400000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3C1D PUSH1 0x1C DUP4 PUSH2 0x27A3 JUMP JUMPDEST SWAP2 POP PUSH2 0x3C28 DUP3 PUSH2 0x3BE7 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3C4C DUP2 PUSH2 0x3C10 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x31 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 POP ADD 0xE9 PUSH6 0x1D5842259399 DUP11 MOD 0xC GT PUSH21 0x84CC691D26C494777C4EC75275E39265E164736F6C PUSH4 0x4300080C STOP CALLER ",
"sourceMap": "463:1211:15:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1452:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2473:98:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3984:217;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3522:401;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1615:111:6;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4711:330:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3977:121:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4348:145;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1291:253:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5365:214:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;985:188:15;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5107:179:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;529:241:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1798:230:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2176:235:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1914:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2894:137:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2635:102:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2012:49:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4268:153:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5352:320;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2803:329;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;591:62:15;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4727:147:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4487:162:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1452:220:15;1602:4;1629:36;1653:11;1629:23;:36::i;:::-;1622:43;;1452:220;;;:::o;2473:98:2:-;2527:13;2559:5;2552:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2473:98;:::o;3984:217::-;4060:7;4087:16;4095:7;4087;:16::i;:::-;4079:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4170:15;:24;4186:7;4170:24;;;;;;;;;;;;;;;;;;;;;4163:31;;3984:217;;;:::o;3522:401::-;3602:13;3618:23;3633:7;3618:14;:23::i;:::-;3602:39;;3665:5;3659:11;;:2;:11;;;;3651:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3756:5;3740:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3765:37;3782:5;3789:12;:10;:12::i;:::-;3765:16;:37::i;:::-;3740:62;3719:165;;;;;;;;;;;;:::i;:::-;;;;;;;;;3895:21;3904:2;3908:7;3895:8;:21::i;:::-;3592:331;3522:401;;:::o;1615:111:6:-;1676:7;1702:10;:17;;;;1695:24;;1615:111;:::o;4711:330:2:-;4900:41;4919:12;:10;:12::i;:::-;4933:7;4900:18;:41::i;:::-;4892:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5006:28;5016:4;5022:2;5026:7;5006:9;:28::i;:::-;4711:330;;;:::o;3977:121:0:-;4043:7;4069:6;:12;4076:4;4069:12;;;;;;;;;;;:22;;;4062:29;;3977:121;;;:::o;4348:145::-;4431:18;4444:4;4431:12;:18::i;:::-;2490:30;2501:4;2507:12;:10;:12::i;:::-;2490:10;:30::i;:::-;4461:25:::1;4472:4;4478:7;4461:10;:25::i;:::-;4348:145:::0;;;:::o;1291:253:6:-;1388:7;1423:23;1440:5;1423:16;:23::i;:::-;1415:5;:31;1407:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1511:12;:19;1524:5;1511:19;;;;;;;;;;;;;;;:26;1531:5;1511:26;;;;;;;;;;;;1504:33;;1291:253;;;;:::o;5365:214:0:-;5471:12;:10;:12::i;:::-;5460:23;;:7;:23;;;5452:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;5546:26;5558:4;5564:7;5546:11;:26::i;:::-;5365:214;;:::o;985:188:15:-;629:24;2490:30:0;2501:4;2507:12;:10;:12::i;:::-;2490:10;:30::i;:::-;1054:15:15::1;1072:25;:15;:23;:25::i;:::-;1054:43;;1107:27;:15;:25;:27::i;:::-;1144:22;1154:2;1158:7;1144:9;:22::i;:::-;1044:129;985:188:::0;;:::o;5107:179:2:-;5240:39;5257:4;5263:2;5267:7;5240:39;;;;;;;;;;;;:16;:39::i;:::-;5107:179;;;:::o;529:241:5:-;645:41;664:12;:10;:12::i;:::-;678:7;645:18;:41::i;:::-;637:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;749:14;755:7;749:5;:14::i;:::-;529:241;:::o;1798:230:6:-;1873:7;1908:30;:28;:30::i;:::-;1900:5;:38;1892:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;2004:10;2015:5;2004:17;;;;;;;;:::i;:::-;;;;;;;;;;1997:24;;1798:230;;;:::o;2176:235:2:-;2248:7;2267:13;2283:7;:16;2291:7;2283:16;;;;;;;;;;;;;;;;;;;;;2267:32;;2334:1;2317:19;;:5;:19;;;;2309:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2399:5;2392:12;;;2176:235;;;:::o;1914:205::-;1986:7;2030:1;2013:19;;:5;:19;;;;2005:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;2096:9;:16;2106:5;2096:16;;;;;;;;;;;;;;;;2089:23;;1914:205;;;:::o;2894:137:0:-;2972:4;2995:6;:12;3002:4;2995:12;;;;;;;;;;;:20;;:29;3016:7;2995:29;;;;;;;;;;;;;;;;;;;;;;;;;2988:36;;2894:137;;;;:::o;2635:102:2:-;2691:13;2723:7;2716:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2635:102;:::o;2012:49:0:-;2057:4;2012:49;;;:::o;4268:153:2:-;4362:52;4381:12;:10;:12::i;:::-;4395:8;4405;4362:18;:52::i;:::-;4268:153;;:::o;5352:320::-;5521:41;5540:12;:10;:12::i;:::-;5554:7;5521:18;:41::i;:::-;5513:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5626:39;5640:4;5646:2;5650:7;5659:5;5626:13;:39::i;:::-;5352:320;;;;:::o;2803:329::-;2876:13;2909:16;2917:7;2909;:16::i;:::-;2901:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;2988:21;3012:10;:8;:10::i;:::-;2988:34;;3063:1;3045:7;3039:21;:25;:86;;;;;;;;;;;;;;;;;3091:7;3100:18;:7;:16;:18::i;:::-;3074:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3039:86;3032:93;;;2803:329;;;:::o;591:62:15:-;629:24;591:62;:::o;4727:147:0:-;4811:18;4824:4;4811:12;:18::i;:::-;2490:30;2501:4;2507:12;:10;:12::i;:::-;2490:10;:30::i;:::-;4841:26:::1;4853:4;4859:7;4841:11;:26::i;:::-;4727:147:::0;;;:::o;4487:162:2:-;4584:4;4607:18;:25;4626:5;4607:25;;;;;;;;;;;;;;;:35;4633:8;4607:35;;;;;;;;;;;;;;;;;;;;;;;;;4600:42;;4487:162;;;;:::o;2605:202:0:-;2690:4;2728:32;2713:47;;;:11;:47;;;;:87;;;;2764:36;2788:11;2764:23;:36::i;:::-;2713:87;2706:94;;2605:202;;;:::o;7144:125:2:-;7209:4;7260:1;7232:30;;:7;:16;7240:7;7232:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7225:37;;7144:125;;;:::o;640:96:10:-;693:7;719:10;712:17;;640:96;:::o;10995:171:2:-;11096:2;11069:15;:24;11085:7;11069:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11151:7;11147:2;11113:46;;11122:23;11137:7;11122:14;:23::i;:::-;11113:46;;;;;;;;;;;;10995:171;;:::o;7427:344::-;7520:4;7544:16;7552:7;7544;:16::i;:::-;7536:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7619:13;7635:23;7650:7;7635:14;:23::i;:::-;7619:39;;7687:5;7676:16;;:7;:16;;;:51;;;;7720:7;7696:31;;:20;7708:7;7696:11;:20::i;:::-;:31;;;7676:51;:87;;;;7731:32;7748:5;7755:7;7731:16;:32::i;:::-;7676:87;7668:96;;;7427:344;;;;:::o;10324:560::-;10478:4;10451:31;;:23;10466:7;10451:14;:23::i;:::-;:31;;;10443:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10560:1;10546:16;;:2;:16;;;;10538:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10614:39;10635:4;10641:2;10645:7;10614:20;:39::i;:::-;10715:29;10732:1;10736:7;10715:8;:29::i;:::-;10774:1;10755:9;:15;10765:4;10755:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;10802:1;10785:9;:13;10795:2;10785:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;10832:2;10813:7;:16;10821:7;10813:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;10869:7;10865:2;10850:27;;10859:4;10850:27;;;;;;;;;;;;10324:560;;;:::o;3312:484:0:-;3392:22;3400:4;3406:7;3392;:22::i;:::-;3387:403;;3575:41;3603:7;3575:41;;3613:2;3575:19;:41::i;:::-;3687:38;3715:4;3707:13;;3722:2;3687:19;:38::i;:::-;3482:265;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3430:349;;;;;;;;;;;:::i;:::-;;;;;;;;3387:403;3312:484;;:::o;6822:233::-;6905:22;6913:4;6919:7;6905;:22::i;:::-;6900:149;;6975:4;6943:6;:12;6950:4;6943:12;;;;;;;;;;;:20;;:29;6964:7;6943:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;7025:12;:10;:12::i;:::-;6998:40;;7016:7;6998:40;;7010:4;6998:40;;;;;;;;;;6900:149;6822:233;;:::o;7180:234::-;7263:22;7271:4;7277:7;7263;:22::i;:::-;7259:149;;;7333:5;7301:6;:12;7308:4;7301:12;;;;;;;;;;;:20;;:29;7322:7;7301:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;7384:12;:10;:12::i;:::-;7357:40;;7375:7;7357:40;;7369:4;7357:40;;;;;;;;;;7259:149;7180:234;;:::o;827:112:11:-;892:7;918;:14;;;911:21;;827:112;;;:::o;945:123::-;1050:1;1032:7;:14;;;:19;;;;;;;;;;;945:123;:::o;8101:108:2:-;8176:26;8186:2;8190:7;8176:26;;;;;;;;;;;;:9;:26::i;:::-;8101:108;;:::o;9652:348::-;9711:13;9727:23;9742:7;9727:14;:23::i;:::-;9711:39;;9761:48;9782:5;9797:1;9801:7;9761:20;:48::i;:::-;9847:29;9864:1;9868:7;9847:8;:29::i;:::-;9907:1;9887:9;:16;9897:5;9887:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;9925:7;:16;9933:7;9925:16;;;;;;;;;;;;9918:23;;;;;;;;;;;9985:7;9981:1;9957:36;;9966:5;9957:36;;;;;;;;;;;;9701:299;9652:348;:::o;11301:307::-;11451:8;11442:17;;:5;:17;;;;11434:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;11537:8;11499:18;:25;11518:5;11499:25;;;;;;;;;;;;;;;:35;11525:8;11499:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;11582:8;11560:41;;11575:5;11560:41;;;11592:8;11560:41;;;;;;:::i;:::-;;;;;;;;11301:307;;;:::o;6534:::-;6685:28;6695:4;6701:2;6705:7;6685:9;:28::i;:::-;6731:48;6754:4;6760:2;6764:7;6773:5;6731:22;:48::i;:::-;6723:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6534:307;;;;:::o;861:118:15:-;913:13;938:34;;;;;;;;;;;;;;;;;;;861:118;:::o;328:703:12:-;384:13;610:1;601:5;:10;597:51;;;627:10;;;;;;;;;;;;;;;;;;;;;597:51;657:12;672:5;657:20;;687:14;711:75;726:1;718:4;:9;711:75;;743:8;;;;;:::i;:::-;;;;773:2;765:10;;;;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;795:39;;844:150;860:1;851:5;:10;844:150;;887:1;877:11;;;;;:::i;:::-;;;953:2;945:5;:10;;;;:::i;:::-;932:2;:24;;;;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;844:150;;;1017:6;1003:21;;;;;328:703;;;;:::o;990:222:6:-;1092:4;1130:35;1115:50;;;:11;:50;;;;:90;;;;1169:36;1193:11;1169:23;:36::i;:::-;1115:90;1108:97;;990:222;;;:::o;1247:199:15:-;1394:45;1421:4;1427:2;1431:7;1394:26;:45::i;:::-;1247:199;;;:::o;1588:441:12:-;1663:13;1688:19;1733:1;1724:6;1720:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;1710:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1688:47;;1745:15;:6;1752:1;1745:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;1770;:6;1777:1;1770:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;1800:9;1825:1;1816:6;1812:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;1800:26;;1795:132;1832:1;1828;:5;1795:132;;;1866:12;1887:3;1879:5;:11;1866:25;;;;;;;:::i;:::-;;;;;1854:6;1861:1;1854:9;;;;;;;;:::i;:::-;;;;;:37;;;;;;;;;;;1915:1;1905:11;;;;;1835:3;;;;:::i;:::-;;;1795:132;;;;1953:1;1944:5;:10;1936:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;2015:6;2001:21;;;1588:441;;;;:::o;8430:311:2:-;8555:18;8561:2;8565:7;8555:5;:18::i;:::-;8604:54;8635:1;8639:2;8643:7;8652:5;8604:22;:54::i;:::-;8583:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;8430:311;;;:::o;12161:778::-;12311:4;12331:15;:2;:13;;;:15::i;:::-;12327:606;;;12382:2;12366:36;;;12403:12;:10;:12::i;:::-;12417:4;12423:7;12432:5;12366:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;12362:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12622:1;12605:6;:13;:18;12601:266;;;12647:60;;;;;;;;;;:::i;:::-;;;;;;;;12601:266;12819:6;12813:13;12804:6;12800:2;12796:15;12789:38;12362:519;12498:41;;;12488:51;;;:6;:51;;;;12481:58;;;;;12327:606;12918:4;12911:11;;12161:778;;;;;;;:::o;1555:300::-;1657:4;1707:25;1692:40;;;:11;:40;;;;:104;;;;1763:33;1748:48;;;:11;:48;;;;1692:104;:156;;;;1812:36;1836:11;1812:23;:36::i;:::-;1692:156;1673:175;;1555:300;;;:::o;2624:572:6:-;2763:45;2790:4;2796:2;2800:7;2763:26;:45::i;:::-;2839:1;2823:18;;:4;:18;;;2819:183;;;2857:40;2889:7;2857:31;:40::i;:::-;2819:183;;;2926:2;2918:10;;:4;:10;;;2914:88;;2944:47;2977:4;2983:7;2944:32;:47::i;:::-;2914:88;2819:183;3029:1;3015:16;;:2;:16;;;3011:179;;;3047:45;3084:7;3047:36;:45::i;:::-;3011:179;;;3119:4;3113:10;;:2;:10;;;3109:81;;3139:40;3167:2;3171:7;3139:27;:40::i;:::-;3109:81;3011:179;2624:572;;;:::o;9063:372:2:-;9156:1;9142:16;;:2;:16;;;;9134:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9214:16;9222:7;9214;:16::i;:::-;9213:17;9205:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9274:45;9303:1;9307:2;9311:7;9274:20;:45::i;:::-;9347:1;9330:9;:13;9340:2;9330:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9377:2;9358:7;:16;9366:7;9358:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9420:7;9416:2;9395:33;;9412:1;9395:33;;;;;;;;;;;;9063:372;;:::o;771:377:9:-;831:4;1034:12;1099:7;1087:20;1079:28;;1140:1;1133:4;:8;1126:15;;;771:377;;;:::o;829:155:13:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;13495:122:2:-;;;;:::o;3902:161:6:-;4005:10;:17;;;;3978:15;:24;3994:7;3978:24;;;;;;;;;;;:44;;;;4032:10;4048:7;4032:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3902:161;:::o;4680:970::-;4942:22;4992:1;4967:22;4984:4;4967:16;:22::i;:::-;:26;;;;:::i;:::-;4942:51;;5003:18;5024:17;:26;5042:7;5024:26;;;;;;;;;;;;5003:47;;5168:14;5154:10;:28;5150:323;;5198:19;5220:12;:18;5233:4;5220:18;;;;;;;;;;;;;;;:34;5239:14;5220:34;;;;;;;;;;;;5198:56;;5302:11;5269:12;:18;5282:4;5269:18;;;;;;;;;;;;;;;:30;5288:10;5269:30;;;;;;;;;;;:44;;;;5418:10;5385:17;:30;5403:11;5385:30;;;;;;;;;;;:43;;;;5184:289;5150:323;5566:17;:26;5584:7;5566:26;;;;;;;;;;;5559:33;;;5609:12;:18;5622:4;5609:18;;;;;;;;;;;;;;;:34;5628:14;5609:34;;;;;;;;;;;5602:41;;;4761:889;;4680:970;;:::o;5938:1061::-;6187:22;6232:1;6212:10;:17;;;;:21;;;;:::i;:::-;6187:46;;6243:18;6264:15;:24;6280:7;6264:24;;;;;;;;;;;;6243:45;;6610:19;6632:10;6643:14;6632:26;;;;;;;;:::i;:::-;;;;;;;;;;6610:48;;6694:11;6669:10;6680;6669:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;6804:10;6773:15;:28;6789:11;6773:28;;;;;;;;;;;:41;;;;6942:15;:24;6958:7;6942:24;;;;;;;;;;;6935:31;;;6976:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6009:990;;;5938:1061;:::o;3490:217::-;3574:14;3591:20;3608:2;3591:16;:20::i;:::-;3574:37;;3648:7;3621:12;:16;3634:2;3621:16;;;;;;;;;;;;;;;:24;3638:6;3621:24;;;;;;;;;;;:34;;;;3694:6;3665:17;:26;3683:7;3665:26;;;;;;;;;;;:35;;;;3564:143;3490:217;;:::o;7:75:16:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:77::-;5952:7;5981:5;5970:16;;5915:77;;;:::o;5998:122::-;6071:24;6089:5;6071:24;:::i;:::-;6064:5;6061:35;6051:63;;6110:1;6107;6100:12;6051:63;5998:122;:::o;6126:139::-;6172:5;6210:6;6197:20;6188:29;;6226:33;6253:5;6226:33;:::i;:::-;6126:139;;;;:::o;6271:329::-;6330:6;6379:2;6367:9;6358:7;6354:23;6350:32;6347:119;;;6385:79;;:::i;:::-;6347:119;6505:1;6530:53;6575:7;6566:6;6555:9;6551:22;6530:53;:::i;:::-;6520:63;;6476:117;6271:329;;;;:::o;6606:118::-;6693:24;6711:5;6693:24;:::i;:::-;6688:3;6681:37;6606:118;;:::o;6730:222::-;6823:4;6861:2;6850:9;6846:18;6838:26;;6874:71;6942:1;6931:9;6927:17;6918:6;6874:71;:::i;:::-;6730:222;;;;:::o;6958:474::-;7026:6;7034;7083:2;7071:9;7062:7;7058:23;7054:32;7051:119;;;7089:79;;:::i;:::-;7051:119;7209:1;7234:53;7279:7;7270:6;7259:9;7255:22;7234:53;:::i;:::-;7224:63;;7180:117;7336:2;7362:53;7407:7;7398:6;7387:9;7383:22;7362:53;:::i;:::-;7352:63;;7307:118;6958:474;;;;;:::o;7438:329::-;7497:6;7546:2;7534:9;7525:7;7521:23;7517:32;7514:119;;;7552:79;;:::i;:::-;7514:119;7672:1;7697:53;7742:7;7733:6;7722:9;7718:22;7697:53;:::i;:::-;7687:63;;7643:117;7438:329;;;;:::o;7773:116::-;7843:21;7858:5;7843:21;:::i;:::-;7836:5;7833:32;7823:60;;7879:1;7876;7869:12;7823:60;7773:116;:::o;7895:133::-;7938:5;7976:6;7963:20;7954:29;;7992:30;8016:5;7992:30;:::i;:::-;7895:133;;;;:::o;8034:468::-;8099:6;8107;8156:2;8144:9;8135:7;8131:23;8127:32;8124:119;;;8162:79;;:::i;:::-;8124:119;8282:1;8307:53;8352:7;8343:6;8332:9;8328:22;8307:53;:::i;:::-;8297:63;;8253:117;8409:2;8435:50;8477:7;8468:6;8457:9;8453:22;8435:50;:::i;:::-;8425:60;;8380:115;8034:468;;;;;:::o;8508:117::-;8617:1;8614;8607:12;8631:117;8740:1;8737;8730:12;8754:180;8802:77;8799:1;8792:88;8899:4;8896:1;8889:15;8923:4;8920:1;8913:15;8940:281;9023:27;9045:4;9023:27;:::i;:::-;9015:6;9011:40;9153:6;9141:10;9138:22;9117:18;9105:10;9102:34;9099:62;9096:88;;;9164:18;;:::i;:::-;9096:88;9204:10;9200:2;9193:22;8983:238;8940:281;;:::o;9227:129::-;9261:6;9288:20;;:::i;:::-;9278:30;;9317:33;9345:4;9337:6;9317:33;:::i;:::-;9227:129;;;:::o;9362:307::-;9423:4;9513:18;9505:6;9502:30;9499:56;;;9535:18;;:::i;:::-;9499:56;9573:29;9595:6;9573:29;:::i;:::-;9565:37;;9657:4;9651;9647:15;9639:23;;9362:307;;;:::o;9675:154::-;9759:6;9754:3;9749;9736:30;9821:1;9812:6;9807:3;9803:16;9796:27;9675:154;;;:::o;9835:410::-;9912:5;9937:65;9953:48;9994:6;9953:48;:::i;:::-;9937:65;:::i;:::-;9928:74;;10025:6;10018:5;10011:21;10063:4;10056:5;10052:16;10101:3;10092:6;10087:3;10083:16;10080:25;10077:112;;;10108:79;;:::i;:::-;10077:112;10198:41;10232:6;10227:3;10222;10198:41;:::i;:::-;9918:327;9835:410;;;;;:::o;10264:338::-;10319:5;10368:3;10361:4;10353:6;10349:17;10345:27;10335:122;;10376:79;;:::i;:::-;10335:122;10493:6;10480:20;10518:78;10592:3;10584:6;10577:4;10569:6;10565:17;10518:78;:::i;:::-;10509:87;;10325:277;10264:338;;;;:::o;10608:943::-;10703:6;10711;10719;10727;10776:3;10764:9;10755:7;10751:23;10747:33;10744:120;;;10783:79;;:::i;:::-;10744:120;10903:1;10928:53;10973:7;10964:6;10953:9;10949:22;10928:53;:::i;:::-;10918:63;;10874:117;11030:2;11056:53;11101:7;11092:6;11081:9;11077:22;11056:53;:::i;:::-;11046:63;;11001:118;11158:2;11184:53;11229:7;11220:6;11209:9;11205:22;11184:53;:::i;:::-;11174:63;;11129:118;11314:2;11303:9;11299:18;11286:32;11345:18;11337:6;11334:30;11331:117;;;11367:79;;:::i;:::-;11331:117;11472:62;11526:7;11517:6;11506:9;11502:22;11472:62;:::i;:::-;11462:72;;11257:287;10608:943;;;;;;;:::o;11557:474::-;11625:6;11633;11682:2;11670:9;11661:7;11657:23;11653:32;11650:119;;;11688:79;;:::i;:::-;11650:119;11808:1;11833:53;11878:7;11869:6;11858:9;11854:22;11833:53;:::i;:::-;11823:63;;11779:117;11935:2;11961:53;12006:7;11997:6;11986:9;11982:22;11961:53;:::i;:::-;11951:63;;11906:118;11557:474;;;;;:::o;12037:180::-;12085:77;12082:1;12075:88;12182:4;12179:1;12172:15;12206:4;12203:1;12196:15;12223:320;12267:6;12304:1;12298:4;12294:12;12284:22;;12351:1;12345:4;12341:12;12372:18;12362:81;;12428:4;12420:6;12416:17;12406:27;;12362:81;12490:2;12482:6;12479:14;12459:18;12456:38;12453:84;;;12509:18;;:::i;:::-;12453:84;12274:269;12223:320;;;:::o;12549:231::-;12689:34;12685:1;12677:6;12673:14;12666:58;12758:14;12753:2;12745:6;12741:15;12734:39;12549:231;:::o;12786:366::-;12928:3;12949:67;13013:2;13008:3;12949:67;:::i;:::-;12942:74;;13025:93;13114:3;13025:93;:::i;:::-;13143:2;13138:3;13134:12;13127:19;;12786:366;;;:::o;13158:419::-;13324:4;13362:2;13351:9;13347:18;13339:26;;13411:9;13405:4;13401:20;13397:1;13386:9;13382:17;13375:47;13439:131;13565:4;13439:131;:::i;:::-;13431:139;;13158:419;;;:::o;13583:220::-;13723:34;13719:1;13711:6;13707:14;13700:58;13792:3;13787:2;13779:6;13775:15;13768:28;13583:220;:::o;13809:366::-;13951:3;13972:67;14036:2;14031:3;13972:67;:::i;:::-;13965:74;;14048:93;14137:3;14048:93;:::i;:::-;14166:2;14161:3;14157:12;14150:19;;13809:366;;;:::o;14181:419::-;14347:4;14385:2;14374:9;14370:18;14362:26;;14434:9;14428:4;14424:20;14420:1;14409:9;14405:17;14398:47;14462:131;14588:4;14462:131;:::i;:::-;14454:139;;14181:419;;;:::o;14606:243::-;14746:34;14742:1;14734:6;14730:14;14723:58;14815:26;14810:2;14802:6;14798:15;14791:51;14606:243;:::o;14855:366::-;14997:3;15018:67;15082:2;15077:3;15018:67;:::i;:::-;15011:74;;15094:93;15183:3;15094:93;:::i;:::-;15212:2;15207:3;15203:12;15196:19;;14855:366;;;:::o;15227:419::-;15393:4;15431:2;15420:9;15416:18;15408:26;;15480:9;15474:4;15470:20;15466:1;15455:9;15451:17;15444:47;15508:131;15634:4;15508:131;:::i;:::-;15500:139;;15227:419;;;:::o;15652:236::-;15792:34;15788:1;15780:6;15776:14;15769:58;15861:19;15856:2;15848:6;15844:15;15837:44;15652:236;:::o;15894:366::-;16036:3;16057:67;16121:2;16116:3;16057:67;:::i;:::-;16050:74;;16133:93;16222:3;16133:93;:::i;:::-;16251:2;16246:3;16242:12;16235:19;;15894:366;;;:::o;16266:419::-;16432:4;16470:2;16459:9;16455:18;16447:26;;16519:9;16513:4;16509:20;16505:1;16494:9;16490:17;16483:47;16547:131;16673:4;16547:131;:::i;:::-;16539:139;;16266:419;;;:::o;16691:230::-;16831:34;16827:1;16819:6;16815:14;16808:58;16900:13;16895:2;16887:6;16883:15;16876:38;16691:230;:::o;16927:366::-;17069:3;17090:67;17154:2;17149:3;17090:67;:::i;:::-;17083:74;;17166:93;17255:3;17166:93;:::i;:::-;17284:2;17279:3;17275:12;17268:19;;16927:366;;;:::o;17299:419::-;17465:4;17503:2;17492:9;17488:18;17480:26;;17552:9;17546:4;17542:20;17538:1;17527:9;17523:17;17516:47;17580:131;17706:4;17580:131;:::i;:::-;17572:139;;17299:419;;;:::o;17724:234::-;17864:34;17860:1;17852:6;17848:14;17841:58;17933:17;17928:2;17920:6;17916:15;17909:42;17724:234;:::o;17964:366::-;18106:3;18127:67;18191:2;18186:3;18127:67;:::i;:::-;18120:74;;18203:93;18292:3;18203:93;:::i;:::-;18321:2;18316:3;18312:12;18305:19;;17964:366;;;:::o;18336:419::-;18502:4;18540:2;18529:9;18525:18;18517:26;;18589:9;18583:4;18579:20;18575:1;18564:9;18560:17;18553:47;18617:131;18743:4;18617:131;:::i;:::-;18609:139;;18336:419;;;:::o;18761:235::-;18901:34;18897:1;18889:6;18885:14;18878:58;18970:18;18965:2;18957:6;18953:15;18946:43;18761:235;:::o;19002:366::-;19144:3;19165:67;19229:2;19224:3;19165:67;:::i;:::-;19158:74;;19241:93;19330:3;19241:93;:::i;:::-;19359:2;19354:3;19350:12;19343:19;;19002:366;;;:::o;19374:419::-;19540:4;19578:2;19567:9;19563:18;19555:26;;19627:9;19621:4;19617:20;19613:1;19602:9;19598:17;19591:47;19655:131;19781:4;19655:131;:::i;:::-;19647:139;;19374:419;;;:::o;19799:231::-;19939:34;19935:1;19927:6;19923:14;19916:58;20008:14;20003:2;19995:6;19991:15;19984:39;19799:231;:::o;20036:366::-;20178:3;20199:67;20263:2;20258:3;20199:67;:::i;:::-;20192:74;;20275:93;20364:3;20275:93;:::i;:::-;20393:2;20388:3;20384:12;20377:19;;20036:366;;;:::o;20408:419::-;20574:4;20612:2;20601:9;20597:18;20589:26;;20661:9;20655:4;20651:20;20647:1;20636:9;20632:17;20625:47;20689:131;20815:4;20689:131;:::i;:::-;20681:139;;20408:419;;;:::o;20833:180::-;20881:77;20878:1;20871:88;20978:4;20975:1;20968:15;21002:4;20999:1;20992:15;21019:228;21159:34;21155:1;21147:6;21143:14;21136:58;21228:11;21223:2;21215:6;21211:15;21204:36;21019:228;:::o;21253:366::-;21395:3;21416:67;21480:2;21475:3;21416:67;:::i;:::-;21409:74;;21492:93;21581:3;21492:93;:::i;:::-;21610:2;21605:3;21601:12;21594:19;;21253:366;;;:::o;21625:419::-;21791:4;21829:2;21818:9;21814:18;21806:26;;21878:9;21872:4;21868:20;21864:1;21853:9;21849:17;21842:47;21906:131;22032:4;21906:131;:::i;:::-;21898:139;;21625:419;;;:::o;22050:229::-;22190:34;22186:1;22178:6;22174:14;22167:58;22259:12;22254:2;22246:6;22242:15;22235:37;22050:229;:::o;22285:366::-;22427:3;22448:67;22512:2;22507:3;22448:67;:::i;:::-;22441:74;;22524:93;22613:3;22524:93;:::i;:::-;22642:2;22637:3;22633:12;22626:19;;22285:366;;;:::o;22657:419::-;22823:4;22861:2;22850:9;22846:18;22838:26;;22910:9;22904:4;22900:20;22896:1;22885:9;22881:17;22874:47;22938:131;23064:4;22938:131;:::i;:::-;22930:139;;22657:419;;;:::o;23082:234::-;23222:34;23218:1;23210:6;23206:14;23199:58;23291:17;23286:2;23278:6;23274:15;23267:42;23082:234;:::o;23322:366::-;23464:3;23485:67;23549:2;23544:3;23485:67;:::i;:::-;23478:74;;23561:93;23650:3;23561:93;:::i;:::-;23679:2;23674:3;23670:12;23663:19;;23322:366;;;:::o;23694:419::-;23860:4;23898:2;23887:9;23883:18;23875:26;;23947:9;23941:4;23937:20;23933:1;23922:9;23918:17;23911:47;23975:131;24101:4;23975:131;:::i;:::-;23967:139;;23694:419;;;:::o;24119:148::-;24221:11;24258:3;24243:18;;24119:148;;;;:::o;24273:377::-;24379:3;24407:39;24440:5;24407:39;:::i;:::-;24462:89;24544:6;24539:3;24462:89;:::i;:::-;24455:96;;24560:52;24605:6;24600:3;24593:4;24586:5;24582:16;24560:52;:::i;:::-;24637:6;24632:3;24628:16;24621:23;;24383:267;24273:377;;;;:::o;24656:435::-;24836:3;24858:95;24949:3;24940:6;24858:95;:::i;:::-;24851:102;;24970:95;25061:3;25052:6;24970:95;:::i;:::-;24963:102;;25082:3;25075:10;;24656:435;;;;;:::o;25097:231::-;25237:34;25233:1;25225:6;25221:14;25214:58;25306:14;25301:2;25293:6;25289:15;25282:39;25097:231;:::o;25334:366::-;25476:3;25497:67;25561:2;25556:3;25497:67;:::i;:::-;25490:74;;25573:93;25662:3;25573:93;:::i;:::-;25691:2;25686:3;25682:12;25675:19;;25334:366;;;:::o;25706:419::-;25872:4;25910:2;25899:9;25895:18;25887:26;;25959:9;25953:4;25949:20;25945:1;25934:9;25930:17;25923:47;25987:131;26113:4;25987:131;:::i;:::-;25979:139;;25706:419;;;:::o;26131:228::-;26271:34;26267:1;26259:6;26255:14;26248:58;26340:11;26335:2;26327:6;26323:15;26316:36;26131:228;:::o;26365:366::-;26507:3;26528:67;26592:2;26587:3;26528:67;:::i;:::-;26521:74;;26604:93;26693:3;26604:93;:::i;:::-;26722:2;26717:3;26713:12;26706:19;;26365:366;;;:::o;26737:419::-;26903:4;26941:2;26930:9;26926:18;26918:26;;26990:9;26984:4;26980:20;26976:1;26965:9;26961:17;26954:47;27018:131;27144:4;27018:131;:::i;:::-;27010:139;;26737:419;;;:::o;27162:223::-;27302:34;27298:1;27290:6;27286:14;27279:58;27371:6;27366:2;27358:6;27354:15;27347:31;27162:223;:::o;27391:366::-;27533:3;27554:67;27618:2;27613:3;27554:67;:::i;:::-;27547:74;;27630:93;27719:3;27630:93;:::i;:::-;27748:2;27743:3;27739:12;27732:19;;27391:366;;;:::o;27763:419::-;27929:4;27967:2;27956:9;27952:18;27944:26;;28016:9;28010:4;28006:20;28002:1;27991:9;27987:17;27980:47;28044:131;28170:4;28044:131;:::i;:::-;28036:139;;27763:419;;;:::o;28188:180::-;28236:77;28233:1;28226:88;28333:4;28330:1;28323:15;28357:4;28354:1;28347:15;28374:191;28414:4;28434:20;28452:1;28434:20;:::i;:::-;28429:25;;28468:20;28486:1;28468:20;:::i;:::-;28463:25;;28507:1;28504;28501:8;28498:34;;;28512:18;;:::i;:::-;28498:34;28557:1;28554;28550:9;28542:17;;28374:191;;;;:::o;28571:305::-;28611:3;28630:20;28648:1;28630:20;:::i;:::-;28625:25;;28664:20;28682:1;28664:20;:::i;:::-;28659:25;;28818:1;28750:66;28746:74;28743:1;28740:81;28737:107;;;28824:18;;:::i;:::-;28737:107;28868:1;28865;28861:9;28854:16;;28571:305;;;;:::o;28882:173::-;29022:25;29018:1;29010:6;29006:14;28999:49;28882:173;:::o;29061:402::-;29221:3;29242:85;29324:2;29319:3;29242:85;:::i;:::-;29235:92;;29336:93;29425:3;29336:93;:::i;:::-;29454:2;29449:3;29445:12;29438:19;;29061:402;;;:::o;29469:167::-;29609:19;29605:1;29597:6;29593:14;29586:43;29469:167;:::o;29642:402::-;29802:3;29823:85;29905:2;29900:3;29823:85;:::i;:::-;29816:92;;29917:93;30006:3;29917:93;:::i;:::-;30035:2;30030:3;30026:12;30019:19;;29642:402;;;:::o;30050:967::-;30432:3;30454:148;30598:3;30454:148;:::i;:::-;30447:155;;30619:95;30710:3;30701:6;30619:95;:::i;:::-;30612:102;;30731:148;30875:3;30731:148;:::i;:::-;30724:155;;30896:95;30987:3;30978:6;30896:95;:::i;:::-;30889:102;;31008:3;31001:10;;30050:967;;;;;:::o;31023:175::-;31163:27;31159:1;31151:6;31147:14;31140:51;31023:175;:::o;31204:366::-;31346:3;31367:67;31431:2;31426:3;31367:67;:::i;:::-;31360:74;;31443:93;31532:3;31443:93;:::i;:::-;31561:2;31556:3;31552:12;31545:19;;31204:366;;;:::o;31576:419::-;31742:4;31780:2;31769:9;31765:18;31757:26;;31829:9;31823:4;31819:20;31815:1;31804:9;31800:17;31793:47;31857:131;31983:4;31857:131;:::i;:::-;31849:139;;31576:419;;;:::o;32001:237::-;32141:34;32137:1;32129:6;32125:14;32118:58;32210:20;32205:2;32197:6;32193:15;32186:45;32001:237;:::o;32244:366::-;32386:3;32407:67;32471:2;32466:3;32407:67;:::i;:::-;32400:74;;32483:93;32572:3;32483:93;:::i;:::-;32601:2;32596:3;32592:12;32585:19;;32244:366;;;:::o;32616:419::-;32782:4;32820:2;32809:9;32805:18;32797:26;;32869:9;32863:4;32859:20;32855:1;32844:9;32840:17;32833:47;32897:131;33023:4;32897:131;:::i;:::-;32889:139;;32616:419;;;:::o;33041:233::-;33080:3;33103:24;33121:5;33103:24;:::i;:::-;33094:33;;33149:66;33142:5;33139:77;33136:103;;;33219:18;;:::i;:::-;33136:103;33266:1;33259:5;33255:13;33248:20;;33041:233;;;:::o;33280:180::-;33328:77;33325:1;33318:88;33425:4;33422:1;33415:15;33449:4;33446:1;33439:15;33466:185;33506:1;33523:20;33541:1;33523:20;:::i;:::-;33518:25;;33557:20;33575:1;33557:20;:::i;:::-;33552:25;;33596:1;33586:35;;33601:18;;:::i;:::-;33586:35;33643:1;33640;33636:9;33631:14;;33466:185;;;;:::o;33657:176::-;33689:1;33706:20;33724:1;33706:20;:::i;:::-;33701:25;;33740:20;33758:1;33740:20;:::i;:::-;33735:25;;33779:1;33769:35;;33784:18;;:::i;:::-;33769:35;33825:1;33822;33818:9;33813:14;;33657:176;;;;:::o;33839:348::-;33879:7;33902:20;33920:1;33902:20;:::i;:::-;33897:25;;33936:20;33954:1;33936:20;:::i;:::-;33931:25;;34124:1;34056:66;34052:74;34049:1;34046:81;34041:1;34034:9;34027:17;34023:105;34020:131;;;34131:18;;:::i;:::-;34020:131;34179:1;34176;34172:9;34161:20;;33839:348;;;;:::o;34193:171::-;34232:3;34255:24;34273:5;34255:24;:::i;:::-;34246:33;;34301:4;34294:5;34291:15;34288:41;;;34309:18;;:::i;:::-;34288:41;34356:1;34349:5;34345:13;34338:20;;34193:171;;;:::o;34370:182::-;34510:34;34506:1;34498:6;34494:14;34487:58;34370:182;:::o;34558:366::-;34700:3;34721:67;34785:2;34780:3;34721:67;:::i;:::-;34714:74;;34797:93;34886:3;34797:93;:::i;:::-;34915:2;34910:3;34906:12;34899:19;;34558:366;;;:::o;34930:419::-;35096:4;35134:2;35123:9;35119:18;35111:26;;35183:9;35177:4;35173:20;35169:1;35158:9;35154:17;35147:47;35211:131;35337:4;35211:131;:::i;:::-;35203:139;;34930:419;;;:::o;35355:98::-;35406:6;35440:5;35434:12;35424:22;;35355:98;;;:::o;35459:168::-;35542:11;35576:6;35571:3;35564:19;35616:4;35611:3;35607:14;35592:29;;35459:168;;;;:::o;35633:360::-;35719:3;35747:38;35779:5;35747:38;:::i;:::-;35801:70;35864:6;35859:3;35801:70;:::i;:::-;35794:77;;35880:52;35925:6;35920:3;35913:4;35906:5;35902:16;35880:52;:::i;:::-;35957:29;35979:6;35957:29;:::i;:::-;35952:3;35948:39;35941:46;;35723:270;35633:360;;;;:::o;35999:640::-;36194:4;36232:3;36221:9;36217:19;36209:27;;36246:71;36314:1;36303:9;36299:17;36290:6;36246:71;:::i;:::-;36327:72;36395:2;36384:9;36380:18;36371:6;36327:72;:::i;:::-;36409;36477:2;36466:9;36462:18;36453:6;36409:72;:::i;:::-;36528:9;36522:4;36518:20;36513:2;36502:9;36498:18;36491:48;36556:76;36627:4;36618:6;36556:76;:::i;:::-;36548:84;;35999:640;;;;;;;:::o;36645:141::-;36701:5;36732:6;36726:13;36717:22;;36748:32;36774:5;36748:32;:::i;:::-;36645:141;;;;:::o;36792:349::-;36861:6;36910:2;36898:9;36889:7;36885:23;36881:32;36878:119;;;36916:79;;:::i;:::-;36878:119;37036:1;37061:63;37116:7;37107:6;37096:9;37092:22;37061:63;:::i;:::-;37051:73;;37007:127;36792:349;;;;:::o;37147:182::-;37287:34;37283:1;37275:6;37271:14;37264:58;37147:182;:::o;37335:366::-;37477:3;37498:67;37562:2;37557:3;37498:67;:::i;:::-;37491:74;;37574:93;37663:3;37574:93;:::i;:::-;37692:2;37687:3;37683:12;37676:19;;37335:366;;;:::o;37707:419::-;37873:4;37911:2;37900:9;37896:18;37888:26;;37960:9;37954:4;37950:20;37946:1;37935:9;37931:17;37924:47;37988:131;38114:4;37988:131;:::i;:::-;37980:139;;37707:419;;;:::o;38132:178::-;38272:30;38268:1;38260:6;38256:14;38249:54;38132:178;:::o;38316:366::-;38458:3;38479:67;38543:2;38538:3;38479:67;:::i;:::-;38472:74;;38555:93;38644:3;38555:93;:::i;:::-;38673:2;38668:3;38664:12;38657:19;;38316:366;;;:::o;38688:419::-;38854:4;38892:2;38881:9;38877:18;38869:26;;38941:9;38935:4;38931:20;38927:1;38916:9;38912:17;38905:47;38969:131;39095:4;38969:131;:::i;:::-;38961:139;;38688:419;;;:::o;39113:180::-;39161:77;39158:1;39151:88;39258:4;39255:1;39248:15;39282:4;39279:1;39272:15"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "3108800",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"DEFAULT_ADMIN_ROLE()": "380",
"MINTER_ROLE()": "395",
"approve(address,uint256)": "infinite",
"balanceOf(address)": "2968",
"burn(uint256)": "infinite",
"getApproved(uint256)": "5228",
"getRoleAdmin(bytes32)": "infinite",
"grantRole(bytes32,address)": "infinite",
"hasRole(bytes32,address)": "3251",
"isApprovedForAll(address,address)": "infinite",
"name()": "infinite",
"ownerOf(uint256)": "3044",
"renounceRole(bytes32,address)": "infinite",
"revokeRole(bytes32,address)": "infinite",
"safeMint(address)": "infinite",
"safeTransferFrom(address,address,uint256)": "infinite",
"safeTransferFrom(address,address,uint256,bytes)": "infinite",
"setApprovalForAll(address,bool)": "infinite",
"supportsInterface(bytes4)": "1018",
"symbol()": "infinite",
"tokenByIndex(uint256)": "infinite",
"tokenOfOwnerByIndex(address,uint256)": "infinite",
"tokenURI(uint256)": "infinite",
"totalSupply()": "2557",
"transferFrom(address,address,uint256)": "infinite"
},
"internal": {
"_baseURI()": "infinite",
"_beforeTokenTransfer(address,address,uint256)": "infinite"
}
},
"methodIdentifiers": {
"DEFAULT_ADMIN_ROLE()": "a217fddf",
"MINTER_ROLE()": "d5391393",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"burn(uint256)": "42966c68",
"getApproved(uint256)": "081812fc",
"getRoleAdmin(bytes32)": "248a9ca3",
"grantRole(bytes32,address)": "2f2ff15d",
"hasRole(bytes32,address)": "91d14854",
"isApprovedForAll(address,address)": "e985e9c5",
"name()": "06fdde03",
"ownerOf(uint256)": "6352211e",
"renounceRole(bytes32,address)": "36568abe",
"revokeRole(bytes32,address)": "d547741f",
"safeMint(address)": "40d097c3",
"safeTransferFrom(address,address,uint256)": "42842e0e",
"safeTransferFrom(address,address,uint256,bytes)": "b88d4fde",
"setApprovalForAll(address,bool)": "a22cb465",
"supportsInterface(bytes4)": "01ffc9a7",
"symbol()": "95d89b41",
"tokenByIndex(uint256)": "4f6ccce7",
"tokenOfOwnerByIndex(address,uint256)": "2f745c59",
"tokenURI(uint256)": "c87b56dd",
"totalSupply()": "18160ddd",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"abi": [
{
"inputs": [],
"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": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"indexed": true,
"internalType": "bytes32",
"name": "previousAdminRole",
"type": "bytes32"
},
{
"indexed": true,
"internalType": "bytes32",
"name": "newAdminRole",
"type": "bytes32"
}
],
"name": "RoleAdminChanged",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"indexed": true,
"internalType": "address",
"name": "account",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "sender",
"type": "address"
}
],
"name": "RoleGranted",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"indexed": true,
"internalType": "address",
"name": "account",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "sender",
"type": "address"
}
],
"name": "RoleRevoked",
"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": [],
"name": "DEFAULT_ADMIN_ROLE",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "MINTER_ROLE",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"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": "burn",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "getApproved",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
}
],
"name": "getRoleAdmin",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "grantRole",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "hasRole",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"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": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "renounceRole",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "revokeRole",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
}
],
"name": "safeMint",
"outputs": [],
"stateMutability": "nonpayable",
"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": "index",
"type": "uint256"
}
],
"name": "tokenByIndex",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "uint256",
"name": "index",
"type": "uint256"
}
],
"name": "tokenOfOwnerByIndex",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "tokenURI",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;
import "@openzeppelin/contracts@4.4.2/access/AccessControl.sol";
import "@openzeppelin/contracts@4.4.2/utils/Counters.sol";
//import "./libraries/Random.sol";
interface RandomizerInt {
function returnValue() external view returns (bytes32);
}
/// @custom:security-contact skyfly200@gmail.com
contract FineCore is AccessControl {
using Counters for Counters.Counter;
//using Random for bytes32[];
RandomizerInt entropySource;
Counters.Counter private _projectCounter;
mapping(uint => address) public projects;
mapping(address => bool) public allowlist;
constructor(address entropySourceAddress) {
_grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
entropySource = RandomizerInt(entropySourceAddress);
}
// Project Mgmt Functions
/**
* @dev add a project
* @param project address of the project contract
* @dev Only the admin can call this
*/
function addProject(address project) external onlyRole(DEFAULT_ADMIN_ROLE) {
uint id = _projectCounter.current();
_projectCounter.increment();
projects[id] = project;
allowlist[project] = true;
}
/**
* @dev rollback last project add
* @dev Only the admin can call this
*/
function rollbackLastProject() external onlyRole(DEFAULT_ADMIN_ROLE) {
_projectCounter.decrement();
uint id = _projectCounter.current();
address project = projects[id];
allowlist[project] = false;
}
/**
* @dev remove a project from the allowlist
* @param id of the project to remove
* @dev Only the admin can call this
*/
function removeProject(uint id) external onlyRole(DEFAULT_ADMIN_ROLE) {
address project = projects[id];
allowlist[project] = false;
}
/**
* @dev remove a project from the allowlist
* @param project address to remove from allowlist
* @dev Only the admin can call this
*/
function removeProject(address project) external onlyRole(DEFAULT_ADMIN_ROLE) {
allowlist[project] = false;
}
function getProjectByID(uint id) external view returns (address) {
return projects[id];
}
// Randomizer
/**
* @dev set Randomizer
*/
function setRandom(address rand) external onlyRole(DEFAULT_ADMIN_ROLE) {
entropySource = RandomizerInt(rand);
}
/**
* @dev test Randomizer
*/
function testRandom() external view onlyRole(DEFAULT_ADMIN_ROLE) returns (bytes32) {
return entropySource.returnValue();
}
/**
* @dev Call the Randomizer and get some randomness
*/
function getRandomness(uint256 id, uint256 seed)
external view returns (uint256 randomnesss)
{
require(true); // TODO: check caller address is true in NFT contract allowlist
uint256 randomness = uint256(keccak256(abi.encodePacked(
entropySource.returnValue(),
id,
seed
)));
return randomness;
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;
import "@openzeppelin/contracts@4.4.2/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts@4.4.2/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts@4.4.2/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts@4.4.2/access/AccessControl.sol";
import "@openzeppelin/contracts@4.4.2/utils/Counters.sol";
interface FineCore {
function getRandomness(uint256 id, uint256 seed) external view returns (uint256 randomnesss);
}
/// @custom:security-contact skyfly200@gmail.com
contract FineNFT is ERC721, ERC721Enumerable, ERC721Burnable, AccessControl {
using Counters for Counters.Counter;
bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
FineCore coreContract;
Counters.Counter private _tokenIdCounter;
mapping(uint => uint) public hashes;
string baseURI = "https://api.fine.digital/metadata/";
constructor(address coreAddress) ERC721("FINE Digital", "FINE") {
_grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
_grantRole(MINTER_ROLE, msg.sender);
coreContract = FineCore(coreAddress);
}
function _baseURI() internal view override returns (string memory) {
return baseURI;
}
// On-chain data
/**
* @dev Update the base URI field
* @param _script base for all tokens
* @dev Only the admin can call this
*/
function addScript(string calldata _script) onlyRole(DEFAULT_ADMIN_ROLE) external {
// TODO: save script to contract data
}
/**
* @dev Update the base URI field
* @param _uri base for all tokens
* @dev Only the admin can call this
*/
function setBaseURI(string calldata _uri) onlyRole(DEFAULT_ADMIN_ROLE) external {
baseURI = _uri;
}
/**
* @dev Mint a token
* @param to address to mint the token to
* @dev Only the minter role can call this
*/
function mint(address to) external onlyRole(MINTER_ROLE) return (uint tokenId) {
tokenId = _tokenIdCounter.current();
_tokenIdCounter.increment();
_safeMint(to, tokenId);
uint256 seed = 0; // TODO: use better seed
hashes[tokenId] = coreContract.getRandomness(tokenId, seed);
}
// The following functions are overrides required by Solidity.
function _beforeTokenTransfer(address from, address to, uint256 tokenId)
internal
override(ERC721, ERC721Enumerable)
{
super._beforeTokenTransfer(from, to, tokenId);
}
function supportsInterface(bytes4 interfaceId)
public
view
override(ERC721, ERC721Enumerable, AccessControl)
returns (bool)
{
return super.supportsInterface(interfaceId);
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;
import "@openzeppelin/contracts@4.4.2/access/AccessControl.sol";
interface FineCore {
function getProjectByID(uint id) external view returns (address);
}
interface FineNFT {
function mint(address to) external;
}
interface ERC20 {
function balanceOf(address _owner) external view returns (uint balance);
function transferFrom(address _from, address _to, uint _value) external returns (bool success);
function allowance(address _owner, address _spender) external view returns (uint remaining);
}
/// @custom:security-contact skyfly200@gmail.com
contract FineShop is AccessControl {
FineCore fineCore;
constructor(address _fineCoreAddresss) {
_grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
fineCore = FineCore(_fineCoreAddresss);
}
// Shop Functions
/**
* @dev purchase tokens of a project
* @param projectID to purchase
*/
function purchase(uint projectID) external payable returns (uint256) {
FineNFT nftContract = FineNFT(fineCore.getProjectByID(projectID));
address to = msg.sender;
uint tokenID = nftContract.mint(to);
return tokenID;
}
}
// approval
// enteries?
// drawing and transfer
// query result?
import "@openzeppelin/contracts@4.4.2/access/AccessControl.sol";
import "@openzeppelin/contracts@4.4.2/utils/Counters.sol";
import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";
//import "./libraries/Random.sol";
interface NFTContract {
function safeTransferFrom() external;
}
contract Giveaway is AccessControl {
using Counters for Counters.Counter;
using EnumerableSet for EnumerableSet.AddressSet;
//using Random for bytes32[];
bytes32 public constant CURATOR_ROLE = keccak256("CURATOR_ROLE");
Counters.Counter private _giveawayIdCounter;
mapping(uint => uint) public giveaways; // TODO: use struct w token contract address and ID(s)
// nested enumerable mapping of entries in each giveaway
EnumerableSet.AddressSet private mySet;
constructor(address entropySourceAddress) {
_grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
_grantRole(CURATOR_ROLE, msg.sender);
}
function create() external onlyRole(CURATOR_ROLE) returns (uint) {
uint256 giveawayId = _tokenIdCounter.current();
NFTContract();
_tokenIdCounter.increment();
return giveawayId;
}
function enter() external returns (string memory) {
return baseURI;
}
function complete() external returns (string memory) {
uint256 seed = 0; // TODO: use better seed
hashes[tokenId] = getRandomness(tokenId, seed);
address payable winner;
safeTransferFrom();
return winner;
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract RandomStub {
// stub the core RNG service function
function returnValue() external view returns (bytes32){
return keccak256(abi.encodePacked(
block.number,
block.coinbase,
block.timestamp,
blockhash(block.number - 1),
tx.origin
));
}
}
View raw

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

View raw

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

This file has been truncated, but you can view the full file.
{
"compiler": {
"version": "0.8.12+commit.f00d7308"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"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": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"indexed": true,
"internalType": "bytes32",
"name": "previousAdminRole",
"type": "bytes32"
},
{
"indexed": true,
"internalType": "bytes32",
"name": "newAdminRole",
"type": "bytes32"
}
],
"name": "RoleAdminChanged",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"indexed": true,
"internalType": "address",
"name": "account",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "sender",
"type": "address"
}
],
"name": "RoleGranted",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"indexed": true,
"internalType": "address",
"name": "account",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "sender",
"type": "address"
}
],
"name": "RoleRevoked",
"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": [],
"name": "DEFAULT_ADMIN_ROLE",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "MINTER_ROLE",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"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": "burn",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "getApproved",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
}
],
"name": "getRoleAdmin",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "grantRole",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "hasRole",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"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": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "renounceRole",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "revokeRole",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
}
],
"name": "safeMint",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "
View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

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