Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save EtherTyper/145fca3f70c24f6a10586a12703099d6 to your computer and use it in GitHub Desktop.
Save EtherTyper/145fca3f70c24f6a10586a12703099d6 to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.7+commit.e28d00a7.js&optimize=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/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);
}
}
REMIX EXAMPLE PROJECT
Remix example project is present when Remix loads for the very first time or there are no files existing in the File Explorer.
It contains 3 directories:
1. 'contracts': Holds three contracts with different complexity level, denoted with number prefix in file name.
2. 'scripts': Holds two scripts to deploy a contract. It is explained below.
3. 'tests': Contains one test file for 'Ballot' contract with unit tests in Solidity.
SCRIPTS
The 'scripts' folder contains example async/await scripts for deploying the 'Storage' contract.
For the deployment of any other contract, 'contractName' and 'constructorArgs' should be updated (along with other code if required).
Scripts have full access to the web3.js and ethers.js libraries.
To run a script, right click on file name in the file explorer and click 'Run'. Remember, Solidity file must already be compiled.
Output from script will appear in remix terminal.
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
/**
* @title Storage
* @dev Store & retrieve value in a variable
*/
contract Storage {
uint256 number;
/**
* @dev Store value in variable
* @param num value to store
*/
function store(uint256 num) public {
number = num;
}
/**
* @dev Return value
* @return value of 'number'
*/
function retrieve() public view returns (uint256){
return number;
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
/**
* @title Owner
* @dev Set & change owner
*/
contract Owner {
address private owner;
// event for EVM logging
event OwnerSet(address indexed oldOwner, address indexed newOwner);
// modifier to check if caller is owner
modifier isOwner() {
// If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly.
// As a second argument, you can also provide an explanation about what went wrong.
require(msg.sender == owner, "Caller is not owner");
_;
}
/**
* @dev Set contract deployer as owner
*/
constructor() {
owner = msg.sender; // 'msg.sender' is sender of current call, contract deployer for a constructor
emit OwnerSet(address(0), owner);
}
/**
* @dev Change owner
* @param newOwner address of new owner
*/
function changeOwner(address newOwner) public isOwner {
emit OwnerSet(owner, newOwner);
owner = newOwner;
}
/**
* @dev Return owner address
* @return address of owner
*/
function getOwner() external view returns (address) {
return owner;
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
/**
* @title Ballot
* @dev Implements voting process along with vote delegation
*/
contract Ballot {
struct Voter {
uint weight; // weight is accumulated by delegation
bool voted; // if true, that person already voted
address delegate; // person delegated to
uint vote; // index of the voted proposal
}
struct Proposal {
// If you can limit the length to a certain number of bytes,
// always use one of bytes1 to bytes32 because they are much cheaper
bytes32 name; // short name (up to 32 bytes)
uint voteCount; // number of accumulated votes
}
address public chairperson;
mapping(address => Voter) public voters;
Proposal[] public proposals;
/**
* @dev Create a new ballot to choose one of 'proposalNames'.
* @param proposalNames names of proposals
*/
constructor(bytes32[] memory proposalNames) {
chairperson = msg.sender;
voters[chairperson].weight = 1;
for (uint i = 0; i < proposalNames.length; i++) {
// 'Proposal({...})' creates a temporary
// Proposal object and 'proposals.push(...)'
// appends it to the end of 'proposals'.
proposals.push(Proposal({
name: proposalNames[i],
voteCount: 0
}));
}
}
/**
* @dev Give 'voter' the right to vote on this ballot. May only be called by 'chairperson'.
* @param voter address of voter
*/
function giveRightToVote(address voter) public {
require(
msg.sender == chairperson,
"Only chairperson can give right to vote."
);
require(
!voters[voter].voted,
"The voter already voted."
);
require(voters[voter].weight == 0);
voters[voter].weight = 1;
}
/**
* @dev Delegate your vote to the voter 'to'.
* @param to address to which vote is delegated
*/
function delegate(address to) public {
Voter storage sender = voters[msg.sender];
require(!sender.voted, "You already voted.");
require(to != msg.sender, "Self-delegation is disallowed.");
while (voters[to].delegate != address(0)) {
to = voters[to].delegate;
// We found a loop in the delegation, not allowed.
require(to != msg.sender, "Found loop in delegation.");
}
sender.voted = true;
sender.delegate = to;
Voter storage delegate_ = voters[to];
if (delegate_.voted) {
// If the delegate already voted,
// directly add to the number of votes
proposals[delegate_.vote].voteCount += sender.weight;
} else {
// If the delegate did not vote yet,
// add to her weight.
delegate_.weight += sender.weight;
}
}
/**
* @dev Give your vote (including votes delegated to you) to proposal 'proposals[proposal].name'.
* @param proposal index of proposal in the proposals array
*/
function vote(uint proposal) public {
Voter storage sender = voters[msg.sender];
require(sender.weight != 0, "Has no right to vote");
require(!sender.voted, "Already voted.");
sender.voted = true;
sender.vote = proposal;
// If 'proposal' is out of the range of the array,
// this will throw automatically and revert all
// changes.
proposals[proposal].voteCount += sender.weight;
}
/**
* @dev Computes the winning proposal taking all previous votes into account.
* @return winningProposal_ index of winning proposal in the proposals array
*/
function winningProposal() public view
returns (uint winningProposal_)
{
uint winningVoteCount = 0;
for (uint p = 0; p < proposals.length; p++) {
if (proposals[p].voteCount > winningVoteCount) {
winningVoteCount = proposals[p].voteCount;
winningProposal_ = p;
}
}
}
/**
* @dev Calls winningProposal() function to get the index of the winner contained in the proposals array and then
* @return winnerName_ the name of the winner
*/
function winnerName() public view
returns (bytes32 winnerName_)
{
winnerName_ = proposals[winningProposal()].name;
}
}
{
"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": {
"@_1810": {
"entryPoint": null,
"id": 1810,
"parameterSlots": 0,
"returnSlots": 0
},
"@_62": {
"entryPoint": null,
"id": 62,
"parameterSlots": 2,
"returnSlots": 0
},
"@_afterTokenTransfer_864": {
"entryPoint": 1129,
"id": 864,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_853": {
"entryPoint": 1124,
"id": 853,
"parameterSlots": 3,
"returnSlots": 0
},
"@_exists_438": {
"entryPoint": 1016,
"id": 438,
"parameterSlots": 1,
"returnSlots": 1
},
"@_mint_589": {
"entryPoint": 359,
"id": 589,
"parameterSlots": 2,
"returnSlots": 0
},
"@_setTokenURI_1096": {
"entryPoint": 865,
"id": 1096,
"parameterSlots": 2,
"returnSlots": 0
},
"@awardItem_1843": {
"entryPoint": 248,
"id": 1843,
"parameterSlots": 2,
"returnSlots": 1
},
"@current_1489": {
"entryPoint": 345,
"id": 1489,
"parameterSlots": 1,
"returnSlots": 1
},
"@increment_1503": {
"entryPoint": 994,
"id": 1503,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1310,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1349,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1388,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1427,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1461,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1495,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 1529,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 1546,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 1639,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 1649,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 1703,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 1750,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57": {
"entryPoint": 1797,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4": {
"entryPoint": 1838,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6": {
"entryPoint": 1917,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:4273:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "153:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "163:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "229:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "234:2:12",
"type": "",
"value": "28"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "170:58:12"
},
"nodeType": "YulFunctionCall",
"src": "170:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "163:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "335:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57",
"nodeType": "YulIdentifier",
"src": "246:88:12"
},
"nodeType": "YulFunctionCall",
"src": "246:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "246:93:12"
},
{
"nodeType": "YulAssignment",
"src": "348:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "359:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "364:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "355:3:12"
},
"nodeType": "YulFunctionCall",
"src": "355:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "348:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "141:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "149:3:12",
"type": ""
}
],
"src": "7:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "525:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "535:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "601:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "606:2:12",
"type": "",
"value": "46"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "542:58:12"
},
"nodeType": "YulFunctionCall",
"src": "542:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "535:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "707:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4",
"nodeType": "YulIdentifier",
"src": "618:88:12"
},
"nodeType": "YulFunctionCall",
"src": "618:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "618:93:12"
},
{
"nodeType": "YulAssignment",
"src": "720:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "731:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "736:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "727:3:12"
},
"nodeType": "YulFunctionCall",
"src": "727:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "720:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "513:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "521:3:12",
"type": ""
}
],
"src": "379:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "897:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "907:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "973:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "978:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "914:58:12"
},
"nodeType": "YulFunctionCall",
"src": "914:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "907:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1079:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6",
"nodeType": "YulIdentifier",
"src": "990:88:12"
},
"nodeType": "YulFunctionCall",
"src": "990:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "990:93:12"
},
{
"nodeType": "YulAssignment",
"src": "1092:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1103:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1108:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1099:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1099:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1092:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "885:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "893:3:12",
"type": ""
}
],
"src": "751:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1294:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1304:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1316:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1327:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1312:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1312:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1304:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1351:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1362:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1347:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1347:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1370:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1376:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1366:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1366:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1340:6:12"
},
"nodeType": "YulFunctionCall",
"src": "1340:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "1340:47:12"
},
{
"nodeType": "YulAssignment",
"src": "1396:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1530:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1404:124:12"
},
"nodeType": "YulFunctionCall",
"src": "1404:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1396:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1274:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1289:4:12",
"type": ""
}
],
"src": "1123:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1719:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1729:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1741:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1752:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1737:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1737:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1729:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1776:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1787:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1772:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1772:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1795:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1801:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1791:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1791:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1765:6:12"
},
"nodeType": "YulFunctionCall",
"src": "1765:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "1765:47:12"
},
{
"nodeType": "YulAssignment",
"src": "1821:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1955:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1829:124:12"
},
"nodeType": "YulFunctionCall",
"src": "1829:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1821:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1699:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1714:4:12",
"type": ""
}
],
"src": "1548:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2144:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2154:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2166:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2177:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2162:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2162:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2154:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2201:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2212:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2197:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2197:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2220:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2226:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2216:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2216:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2190:6:12"
},
"nodeType": "YulFunctionCall",
"src": "2190:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "2190:47:12"
},
{
"nodeType": "YulAssignment",
"src": "2246:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2380:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2254:124:12"
},
"nodeType": "YulFunctionCall",
"src": "2254:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2246:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2124:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2139:4:12",
"type": ""
}
],
"src": "1973:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2494:73:12",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2511:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2516:6:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2504:6:12"
},
"nodeType": "YulFunctionCall",
"src": "2504:19:12"
},
"nodeType": "YulExpressionStatement",
"src": "2504:19:12"
},
{
"nodeType": "YulAssignment",
"src": "2532:29:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2551:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2556:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2547:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2547:14:12"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "2532:11:12"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2466:3:12",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2471:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "2482:11:12",
"type": ""
}
],
"src": "2398:169:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2617:261:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2627:25:12",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2650:1:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2632:17:12"
},
"nodeType": "YulFunctionCall",
"src": "2632:20:12"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2627:1:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2661:25:12",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2684:1:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2666:17:12"
},
"nodeType": "YulFunctionCall",
"src": "2666:20:12"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2661:1:12"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2824:22:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "2826:16:12"
},
"nodeType": "YulFunctionCall",
"src": "2826:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "2826:18:12"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2745:1:12"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2752:66:12",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2820:1:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2748:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2748:74:12"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2742:2:12"
},
"nodeType": "YulFunctionCall",
"src": "2742:81:12"
},
"nodeType": "YulIf",
"src": "2739:107:12"
},
{
"nodeType": "YulAssignment",
"src": "2856:16:12",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2867:1:12"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2870:1:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2863:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2863:9:12"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "2856:3:12"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "2604:1:12",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "2607:1:12",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "2613:3:12",
"type": ""
}
],
"src": "2573:305:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2929:32:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2939:16:12",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "2950:5:12"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2939:7:12"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2911:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2921:7:12",
"type": ""
}
],
"src": "2884:77:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3018:269:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3028:22:12",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3042:4:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3048:1:12",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "3038:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3038:12:12"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3028:6:12"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "3059:38:12",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3089:4:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3095:1:12",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3085:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3085:12:12"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "3063:18:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3136:51:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3150:27:12",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3164:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3172:4:12",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3160:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3160:17:12"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3150:6:12"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "3116:18:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3109:6:12"
},
"nodeType": "YulFunctionCall",
"src": "3109:26:12"
},
"nodeType": "YulIf",
"src": "3106:81:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3239:42:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "3253:16:12"
},
"nodeType": "YulFunctionCall",
"src": "3253:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "3253:18:12"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "3203:18:12"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3226:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3234:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3223:2:12"
},
"nodeType": "YulFunctionCall",
"src": "3223:14:12"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "3200:2:12"
},
"nodeType": "YulFunctionCall",
"src": "3200:38:12"
},
"nodeType": "YulIf",
"src": "3197:84:12"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "3002:4:12",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3011:6:12",
"type": ""
}
],
"src": "2967:320:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3321:152:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3338:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3341:77:12",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3331:6:12"
},
"nodeType": "YulFunctionCall",
"src": "3331:88:12"
},
"nodeType": "YulExpressionStatement",
"src": "3331:88:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3435:1:12",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3438:4:12",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3428:6:12"
},
"nodeType": "YulFunctionCall",
"src": "3428:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "3428:15:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3459:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3462:4:12",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3452:6:12"
},
"nodeType": "YulFunctionCall",
"src": "3452:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "3452:15:12"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "3293:180:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3507:152:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3524:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3527:77:12",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3517:6:12"
},
"nodeType": "YulFunctionCall",
"src": "3517:88:12"
},
"nodeType": "YulExpressionStatement",
"src": "3517:88:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3621:1:12",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3624:4:12",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3614:6:12"
},
"nodeType": "YulFunctionCall",
"src": "3614:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "3614:15:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3645:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3648:4:12",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3638:6:12"
},
"nodeType": "YulFunctionCall",
"src": "3638:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "3638:15:12"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "3479:180:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3771:72:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3793:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3801:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3789:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3789:14:12"
},
{
"hexValue": "4552433732313a20746f6b656e20616c7265616479206d696e746564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "3805:30:12",
"type": "",
"value": "ERC721: token already minted"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3782:6:12"
},
"nodeType": "YulFunctionCall",
"src": "3782:54:12"
},
"nodeType": "YulExpressionStatement",
"src": "3782:54:12"
}
]
},
"name": "store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "3763:6:12",
"type": ""
}
],
"src": "3665:178:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3955:127:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3977:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3985:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3973:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3973:14:12"
},
{
"hexValue": "45524337323155524953746f726167653a2055524920736574206f66206e6f6e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "3989:34:12",
"type": "",
"value": "ERC721URIStorage: URI set of non"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3966:6:12"
},
"nodeType": "YulFunctionCall",
"src": "3966:58:12"
},
"nodeType": "YulExpressionStatement",
"src": "3966:58:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4045:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4053:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4041:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4041:15:12"
},
{
"hexValue": "6578697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "4058:16:12",
"type": "",
"value": "existent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4034:6:12"
},
"nodeType": "YulFunctionCall",
"src": "4034:41:12"
},
"nodeType": "YulExpressionStatement",
"src": "4034:41:12"
}
]
},
"name": "store_literal_in_memory_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "3947:6:12",
"type": ""
}
],
"src": "3849:233:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4194:76:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4216:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4224:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4212:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4212:14:12"
},
{
"hexValue": "4552433732313a206d696e7420746f20746865207a65726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "4228:34:12",
"type": "",
"value": "ERC721: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4205:6:12"
},
"nodeType": "YulFunctionCall",
"src": "4205:58:12"
},
"nodeType": "YulExpressionStatement",
"src": "4205:58:12"
}
]
},
"name": "store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "4186:6:12",
"type": ""
}
],
"src": "4088:182:12"
}
]
},
"contents": "{\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_t_stringliteral_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 46)\n store_literal_in_memory_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4(pos)\n end := add(pos, 64)\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_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 abi_encode_tuple_t_stringliteral_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4__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_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4_to_t_string_memory_ptr_fromStack( tail)\n\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 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 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 cleanup_t_uint256(value) -> cleaned {\n cleaned := value\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 panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\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 store_literal_in_memory_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721URIStorage: URI set of non\")\n\n mstore(add(memPtr, 32), \"existent token\")\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}\n",
"id": 12,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b506040518060400160405280600881526020017f54727565204172740000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4d4f4e4b450000000000000000000000000000000000000000000000000000008152508160009080519060200190620000969291906200046e565b508060019080519060200190620000af9291906200046e565b505050620000f1739b78dcf2ff15c32f1e33673268e5ac0f5270da9560405180606001604052806034815260200162002dac60349139620000f860201b60201c565b50620007a6565b6000806200011260076200015960201b62000aa71760201c565b90506200012684826200016760201b60201c565b6200013881846200036160201b60201c565b6200014f6007620003e260201b62000ab51760201c565b8091505092915050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620001da576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001d190620005d7565b60405180910390fd5b620001eb81620003f860201b60201c565b156200022e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002259062000593565b60405180910390fd5b62000242600083836200046460201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200029491906200060a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200035d600083836200046960201b60201c565b5050565b6200037282620003f860201b60201c565b620003b4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003ab90620005b5565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190620003dd9291906200046e565b505050565b6001816000016000828254019250508190555050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b8280546200047c9062000671565b90600052602060002090601f016020900481019282620004a05760008555620004ec565b82601f10620004bb57805160ff1916838001178555620004ec565b82800160010185558215620004ec579182015b82811115620004eb578251825591602001919060010190620004ce565b5b509050620004fb9190620004ff565b5090565b5b808211156200051a57600081600090555060010162000500565b5090565b60006200052d601c83620005f9565b91506200053a8262000705565b602082019050919050565b600062000554602e83620005f9565b915062000561826200072e565b604082019050919050565b60006200057b602083620005f9565b915062000588826200077d565b602082019050919050565b60006020820190508181036000830152620005ae816200051e565b9050919050565b60006020820190508181036000830152620005d08162000545565b9050919050565b60006020820190508181036000830152620005f2816200056c565b9050919050565b600082825260208201905092915050565b6000620006178262000667565b9150620006248362000667565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200065c576200065b620006a7565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200068a57607f821691505b60208210811415620006a157620006a0620006d6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6125f680620007b66000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c80636352211e1161008c578063a22cb46511610066578063a22cb46514610224578063b88d4fde14610240578063c87b56dd1461025c578063e985e9c51461028c576100cf565b80636352211e146101a657806370a08231146101d657806395d89b4114610206576100cf565b806301ffc9a7146100d457806306fdde0314610104578063081812fc14610122578063095ea7b31461015257806323b872dd1461016e57806342842e0e1461018a575b600080fd5b6100ee60048036038101906100e991906117ef565b6102bc565b6040516100fb9190611b98565b60405180910390f35b61010c61039e565b6040516101199190611bb3565b60405180910390f35b61013c60048036038101906101379190611849565b610430565b6040516101499190611b31565b60405180910390f35b61016c600480360381019061016791906117af565b6104b5565b005b61018860048036038101906101839190611699565b6105cd565b005b6101a4600480360381019061019f9190611699565b61062d565b005b6101c060048036038101906101bb9190611849565b61064d565b6040516101cd9190611b31565b60405180910390f35b6101f060048036038101906101eb919061162c565b6106ff565b6040516101fd9190611d75565b60405180910390f35b61020e6107b7565b60405161021b9190611bb3565b60405180910390f35b61023e6004803603810190610239919061176f565b610849565b005b61025a600480360381019061025591906116ec565b61085f565b005b61027660048036038101906102719190611849565b6108c1565b6040516102839190611bb3565b60405180910390f35b6102a660048036038101906102a19190611659565b610a13565b6040516102b39190611b98565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061038757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610397575061039682610acb565b5b9050919050565b6060600080546103ad90611f9a565b80601f01602080910402602001604051908101604052809291908181526020018280546103d990611f9a565b80156104265780601f106103fb57610100808354040283529160200191610426565b820191906000526020600020905b81548152906001019060200180831161040957829003601f168201915b5050505050905090565b600061043b82610b35565b61047a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161047190611cf5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006104c08261064d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052890611d35565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610550610ba1565b73ffffffffffffffffffffffffffffffffffffffff16148061057f575061057e81610579610ba1565b610a13565b5b6105be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b590611c75565b60405180910390fd5b6105c88383610ba9565b505050565b6105de6105d8610ba1565b82610c62565b61061d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061490611d55565b60405180910390fd5b610628838383610d40565b505050565b6106488383836040518060200160405280600081525061085f565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156106f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ed90611cb5565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610770576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076790611c95565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600180546107c690611f9a565b80601f01602080910402602001604051908101604052809291908181526020018280546107f290611f9a565b801561083f5780601f106108145761010080835404028352916020019161083f565b820191906000526020600020905b81548152906001019060200180831161082257829003601f168201915b5050505050905090565b61085b610854610ba1565b8383610fa7565b5050565b61087061086a610ba1565b83610c62565b6108af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a690611d55565b60405180910390fd5b6108bb84848484611114565b50505050565b60606108cc82610b35565b61090b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090290611cd5565b60405180910390fd5b600060066000848152602001908152602001600020805461092b90611f9a565b80601f016020809104026020016040519081016040528092919081815260200182805461095790611f9a565b80156109a45780601f10610979576101008083540402835291602001916109a4565b820191906000526020600020905b81548152906001019060200180831161098757829003601f168201915b5050505050905060006109b5611170565b90506000815114156109cb578192505050610a0e565b600082511115610a005780826040516020016109e8929190611b0d565b60405160208183030381529060405292505050610a0e565b610a0984611187565b925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600081600001549050919050565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610c1c8361064d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610c6d82610b35565b610cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca390611c55565b60405180910390fd5b6000610cb78361064d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610d2657508373ffffffffffffffffffffffffffffffffffffffff16610d0e84610430565b73ffffffffffffffffffffffffffffffffffffffff16145b80610d375750610d368185610a13565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610d608261064d565b73ffffffffffffffffffffffffffffffffffffffff1614610db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dad90611bf5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1d90611c15565b60405180910390fd5b610e3183838361122e565b610e3c600082610ba9565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e8c9190611eb0565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ee39190611e29565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610fa2838383611233565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100d90611c35565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111079190611b98565b60405180910390a3505050565b61111f848484610d40565b61112b84848484611238565b61116a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116190611bd5565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b606061119282610b35565b6111d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c890611d15565b60405180910390fd5b60006111db611170565b905060008151116111fb5760405180602001604052806000815250611226565b80611205846113cf565b604051602001611216929190611b0d565b6040516020818303038152906040525b915050919050565b505050565b505050565b60006112598473ffffffffffffffffffffffffffffffffffffffff16611530565b156113c2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611282610ba1565b8786866040518563ffffffff1660e01b81526004016112a49493929190611b4c565b602060405180830381600087803b1580156112be57600080fd5b505af19250505080156112ef57506040513d601f19601f820116820180604052508101906112ec919061181c565b60015b611372573d806000811461131f576040519150601f19603f3d011682016040523d82523d6000602084013e611324565b606091505b5060008151141561136a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136190611bd5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506113c7565b600190505b949350505050565b60606000821415611417576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061152b565b600082905060005b6000821461144957808061143290611ffd565b915050600a826114429190611e7f565b915061141f565b60008167ffffffffffffffff81111561146557611464612133565b5b6040519080825280601f01601f1916602001820160405280156114975781602001600182028036833780820191505090505b5090505b60008514611524576001826114b09190611eb0565b9150600a856114bf9190612046565b60306114cb9190611e29565b60f81b8183815181106114e1576114e0612104565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561151d9190611e7f565b945061149b565b8093505050505b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600061156661156184611db5565b611d90565b90508281526020810184848401111561158257611581612167565b5b61158d848285611f58565b509392505050565b6000813590506115a481612564565b92915050565b6000813590506115b98161257b565b92915050565b6000813590506115ce81612592565b92915050565b6000815190506115e381612592565b92915050565b600082601f8301126115fe576115fd612162565b5b813561160e848260208601611553565b91505092915050565b600081359050611626816125a9565b92915050565b60006020828403121561164257611641612171565b5b600061165084828501611595565b91505092915050565b600080604083850312156116705761166f612171565b5b600061167e85828601611595565b925050602061168f85828601611595565b9150509250929050565b6000806000606084860312156116b2576116b1612171565b5b60006116c086828701611595565b93505060206116d186828701611595565b92505060406116e286828701611617565b9150509250925092565b6000806000806080858703121561170657611705612171565b5b600061171487828801611595565b945050602061172587828801611595565b935050604061173687828801611617565b925050606085013567ffffffffffffffff8111156117575761175661216c565b5b611763878288016115e9565b91505092959194509250565b6000806040838503121561178657611785612171565b5b600061179485828601611595565b92505060206117a5858286016115aa565b9150509250929050565b600080604083850312156117c6576117c5612171565b5b60006117d485828601611595565b92505060206117e585828601611617565b9150509250929050565b60006020828403121561180557611804612171565b5b6000611813848285016115bf565b91505092915050565b60006020828403121561183257611831612171565b5b6000611840848285016115d4565b91505092915050565b60006020828403121561185f5761185e612171565b5b600061186d84828501611617565b91505092915050565b61187f81611ee4565b82525050565b61188e81611ef6565b82525050565b600061189f82611de6565b6118a98185611dfc565b93506118b9818560208601611f67565b6118c281612176565b840191505092915050565b60006118d882611df1565b6118e28185611e0d565b93506118f2818560208601611f67565b6118fb81612176565b840191505092915050565b600061191182611df1565b61191b8185611e1e565b935061192b818560208601611f67565b80840191505092915050565b6000611944603283611e0d565b915061194f82612187565b604082019050919050565b6000611967602583611e0d565b9150611972826121d6565b604082019050919050565b600061198a602483611e0d565b915061199582612225565b604082019050919050565b60006119ad601983611e0d565b91506119b882612274565b602082019050919050565b60006119d0602c83611e0d565b91506119db8261229d565b604082019050919050565b60006119f3603883611e0d565b91506119fe826122ec565b604082019050919050565b6000611a16602a83611e0d565b9150611a218261233b565b604082019050919050565b6000611a39602983611e0d565b9150611a448261238a565b604082019050919050565b6000611a5c603183611e0d565b9150611a67826123d9565b604082019050919050565b6000611a7f602c83611e0d565b9150611a8a82612428565b604082019050919050565b6000611aa2602f83611e0d565b9150611aad82612477565b604082019050919050565b6000611ac5602183611e0d565b9150611ad0826124c6565b604082019050919050565b6000611ae8603183611e0d565b9150611af382612515565b604082019050919050565b611b0781611f4e565b82525050565b6000611b198285611906565b9150611b258284611906565b91508190509392505050565b6000602082019050611b466000830184611876565b92915050565b6000608082019050611b616000830187611876565b611b6e6020830186611876565b611b7b6040830185611afe565b8181036060830152611b8d8184611894565b905095945050505050565b6000602082019050611bad6000830184611885565b92915050565b60006020820190508181036000830152611bcd81846118cd565b905092915050565b60006020820190508181036000830152611bee81611937565b9050919050565b60006020820190508181036000830152611c0e8161195a565b9050919050565b60006020820190508181036000830152611c2e8161197d565b9050919050565b60006020820190508181036000830152611c4e816119a0565b9050919050565b60006020820190508181036000830152611c6e816119c3565b9050919050565b60006020820190508181036000830152611c8e816119e6565b9050919050565b60006020820190508181036000830152611cae81611a09565b9050919050565b60006020820190508181036000830152611cce81611a2c565b9050919050565b60006020820190508181036000830152611cee81611a4f565b9050919050565b60006020820190508181036000830152611d0e81611a72565b9050919050565b60006020820190508181036000830152611d2e81611a95565b9050919050565b60006020820190508181036000830152611d4e81611ab8565b9050919050565b60006020820190508181036000830152611d6e81611adb565b9050919050565b6000602082019050611d8a6000830184611afe565b92915050565b6000611d9a611dab565b9050611da68282611fcc565b919050565b6000604051905090565b600067ffffffffffffffff821115611dd057611dcf612133565b5b611dd982612176565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000611e3482611f4e565b9150611e3f83611f4e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611e7457611e73612077565b5b828201905092915050565b6000611e8a82611f4e565b9150611e9583611f4e565b925082611ea557611ea46120a6565b5b828204905092915050565b6000611ebb82611f4e565b9150611ec683611f4e565b925082821015611ed957611ed8612077565b5b828203905092915050565b6000611eef82611f2e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015611f85578082015181840152602081019050611f6a565b83811115611f94576000848401525b50505050565b60006002820490506001821680611fb257607f821691505b60208210811415611fc657611fc56120d5565b5b50919050565b611fd582612176565b810181811067ffffffffffffffff82111715611ff457611ff3612133565b5b80604052505050565b600061200882611f4e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561203b5761203a612077565b5b600182019050919050565b600061205182611f4e565b915061205c83611f4e565b92508261206c5761206b6120a6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61256d81611ee4565b811461257857600080fd5b50565b61258481611ef6565b811461258f57600080fd5b50565b61259b81611f02565b81146125a657600080fd5b50565b6125b281611f4e565b81146125bd57600080fd5b5056fea2646970667358221220458fb77adafdcd5dc6a5287d1946a5bea8d460c1747bfb6f4d846b9a76f0acaf64736f6c6343000807003368747470733a2f2f692e7974696d672e636f6d2f76692f654d6f6e475a454230496b2f6d617872657364656661756c742e6a7067",
"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 0x8 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5472756520417274000000000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4D4F4E4B45000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 PUSH1 0x0 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x96 SWAP3 SWAP2 SWAP1 PUSH3 0x46E JUMP JUMPDEST POP DUP1 PUSH1 0x1 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xAF SWAP3 SWAP2 SWAP1 PUSH3 0x46E JUMP JUMPDEST POP POP POP PUSH3 0xF1 PUSH20 0x9B78DCF2FF15C32F1E33673268E5AC0F5270DA95 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x34 DUP2 MSTORE PUSH1 0x20 ADD PUSH3 0x2DAC PUSH1 0x34 SWAP2 CODECOPY PUSH3 0xF8 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP PUSH3 0x7A6 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH3 0x112 PUSH1 0x7 PUSH3 0x159 PUSH1 0x20 SHL PUSH3 0xAA7 OR PUSH1 0x20 SHR JUMP JUMPDEST SWAP1 POP PUSH3 0x126 DUP5 DUP3 PUSH3 0x167 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x138 DUP2 DUP5 PUSH3 0x361 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x14F PUSH1 0x7 PUSH3 0x3E2 PUSH1 0x20 SHL PUSH3 0xAB5 OR PUSH1 0x20 SHR JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH3 0x1DA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x1D1 SWAP1 PUSH3 0x5D7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0x1EB DUP2 PUSH3 0x3F8 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST ISZERO PUSH3 0x22E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x225 SWAP1 PUSH3 0x593 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0x242 PUSH1 0x0 DUP4 DUP4 PUSH3 0x464 PUSH1 0x20 SHL PUSH1 0x20 SHR 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 PUSH3 0x294 SWAP2 SWAP1 PUSH3 0x60A 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 PUSH3 0x35D PUSH1 0x0 DUP4 DUP4 PUSH3 0x469 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH3 0x372 DUP3 PUSH3 0x3F8 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x3B4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x3AB SWAP1 PUSH3 0x5B5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x6 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x3DD SWAP3 SWAP2 SWAP1 PUSH3 0x46E JUMP JUMPDEST POP POP 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 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 POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x47C SWAP1 PUSH3 0x671 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x4A0 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x4EC JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x4BB JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x4EC JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x4EC JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x4EB JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x4CE JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x4FB SWAP2 SWAP1 PUSH3 0x4FF JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x51A JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x500 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH3 0x52D PUSH1 0x1C DUP4 PUSH3 0x5F9 JUMP JUMPDEST SWAP2 POP PUSH3 0x53A DUP3 PUSH3 0x705 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x554 PUSH1 0x2E DUP4 PUSH3 0x5F9 JUMP JUMPDEST SWAP2 POP PUSH3 0x561 DUP3 PUSH3 0x72E JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x57B PUSH1 0x20 DUP4 PUSH3 0x5F9 JUMP JUMPDEST SWAP2 POP PUSH3 0x588 DUP3 PUSH3 0x77D 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 PUSH3 0x5AE DUP2 PUSH3 0x51E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x5D0 DUP2 PUSH3 0x545 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x5F2 DUP2 PUSH3 0x56C JUMP JUMPDEST 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 PUSH3 0x617 DUP3 PUSH3 0x667 JUMP JUMPDEST SWAP2 POP PUSH3 0x624 DUP4 PUSH3 0x667 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH3 0x65C JUMPI PUSH3 0x65B PUSH3 0x6A7 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x68A JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x6A1 JUMPI PUSH3 0x6A0 PUSH3 0x6D6 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4552433732313A20746F6B656E20616C7265616479206D696E74656400000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524337323155524953746F726167653A2055524920736574206F66206E6F6E PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6578697374656E7420746F6B656E000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A206D696E7420746F20746865207A65726F2061646472657373 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x25F6 DUP1 PUSH3 0x7B6 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xCF JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6352211E GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x224 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x240 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x25C JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x28C JUMPI PUSH2 0xCF JUMP JUMPDEST DUP1 PUSH4 0x6352211E EQ PUSH2 0x1A6 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1D6 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x206 JUMPI PUSH2 0xCF JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xD4 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x104 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x122 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x152 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x16E JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x18A JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xEE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xE9 SWAP2 SWAP1 PUSH2 0x17EF JUMP JUMPDEST PUSH2 0x2BC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xFB SWAP2 SWAP1 PUSH2 0x1B98 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x10C PUSH2 0x39E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x119 SWAP2 SWAP1 PUSH2 0x1BB3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x13C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x137 SWAP2 SWAP1 PUSH2 0x1849 JUMP JUMPDEST PUSH2 0x430 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x149 SWAP2 SWAP1 PUSH2 0x1B31 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x16C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x167 SWAP2 SWAP1 PUSH2 0x17AF JUMP JUMPDEST PUSH2 0x4B5 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x188 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x183 SWAP2 SWAP1 PUSH2 0x1699 JUMP JUMPDEST PUSH2 0x5CD JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1A4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x19F SWAP2 SWAP1 PUSH2 0x1699 JUMP JUMPDEST PUSH2 0x62D JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1C0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1BB SWAP2 SWAP1 PUSH2 0x1849 JUMP JUMPDEST PUSH2 0x64D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1CD SWAP2 SWAP1 PUSH2 0x1B31 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1F0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1EB SWAP2 SWAP1 PUSH2 0x162C JUMP JUMPDEST PUSH2 0x6FF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1FD SWAP2 SWAP1 PUSH2 0x1D75 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x20E PUSH2 0x7B7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x21B SWAP2 SWAP1 PUSH2 0x1BB3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x23E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x239 SWAP2 SWAP1 PUSH2 0x176F JUMP JUMPDEST PUSH2 0x849 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x25A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x255 SWAP2 SWAP1 PUSH2 0x16EC JUMP JUMPDEST PUSH2 0x85F JUMP JUMPDEST STOP JUMPDEST PUSH2 0x276 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x271 SWAP2 SWAP1 PUSH2 0x1849 JUMP JUMPDEST PUSH2 0x8C1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x283 SWAP2 SWAP1 PUSH2 0x1BB3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2A6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2A1 SWAP2 SWAP1 PUSH2 0x1659 JUMP JUMPDEST PUSH2 0xA13 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2B3 SWAP2 SWAP1 PUSH2 0x1B98 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 PUSH32 0x80AC58CD00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x387 JUMPI POP PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH2 0x397 JUMPI POP PUSH2 0x396 DUP3 PUSH2 0xACB JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x3AD SWAP1 PUSH2 0x1F9A 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 0x3D9 SWAP1 PUSH2 0x1F9A JUMP JUMPDEST DUP1 ISZERO PUSH2 0x426 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3FB JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x426 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 0x409 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x43B DUP3 PUSH2 0xB35 JUMP JUMPDEST PUSH2 0x47A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x471 SWAP1 PUSH2 0x1CF5 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 0x4C0 DUP3 PUSH2 0x64D JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x531 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x528 SWAP1 PUSH2 0x1D35 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x550 PUSH2 0xBA1 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x57F JUMPI POP PUSH2 0x57E DUP2 PUSH2 0x579 PUSH2 0xBA1 JUMP JUMPDEST PUSH2 0xA13 JUMP JUMPDEST JUMPDEST PUSH2 0x5BE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5B5 SWAP1 PUSH2 0x1C75 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x5C8 DUP4 DUP4 PUSH2 0xBA9 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x5DE PUSH2 0x5D8 PUSH2 0xBA1 JUMP JUMPDEST DUP3 PUSH2 0xC62 JUMP JUMPDEST PUSH2 0x61D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x614 SWAP1 PUSH2 0x1D55 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x628 DUP4 DUP4 DUP4 PUSH2 0xD40 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x648 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x85F JUMP JUMPDEST POP POP 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 0x6F6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6ED SWAP1 PUSH2 0x1CB5 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 0x770 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x767 SWAP1 PUSH2 0x1C95 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 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x7C6 SWAP1 PUSH2 0x1F9A 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 0x7F2 SWAP1 PUSH2 0x1F9A JUMP JUMPDEST DUP1 ISZERO PUSH2 0x83F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x814 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x83F 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 0x822 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x85B PUSH2 0x854 PUSH2 0xBA1 JUMP JUMPDEST DUP4 DUP4 PUSH2 0xFA7 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x870 PUSH2 0x86A PUSH2 0xBA1 JUMP JUMPDEST DUP4 PUSH2 0xC62 JUMP JUMPDEST PUSH2 0x8AF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8A6 SWAP1 PUSH2 0x1D55 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8BB DUP5 DUP5 DUP5 DUP5 PUSH2 0x1114 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x8CC DUP3 PUSH2 0xB35 JUMP JUMPDEST PUSH2 0x90B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x902 SWAP1 PUSH2 0x1CD5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x6 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP1 SLOAD PUSH2 0x92B SWAP1 PUSH2 0x1F9A 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 0x957 SWAP1 PUSH2 0x1F9A JUMP JUMPDEST DUP1 ISZERO PUSH2 0x9A4 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x979 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x9A4 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 0x987 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP PUSH1 0x0 PUSH2 0x9B5 PUSH2 0x1170 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD EQ ISZERO PUSH2 0x9CB JUMPI DUP2 SWAP3 POP POP POP PUSH2 0xA0E JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD GT ISZERO PUSH2 0xA00 JUMPI DUP1 DUP3 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x9E8 SWAP3 SWAP2 SWAP1 PUSH2 0x1B0D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP3 POP POP POP PUSH2 0xA0E JUMP JUMPDEST PUSH2 0xA09 DUP5 PUSH2 0x1187 JUMP JUMPDEST SWAP3 POP POP POP JUMPDEST SWAP2 SWAP1 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 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 PUSH1 0x0 PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ 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 0xC1C DUP4 PUSH2 0x64D 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 0xC6D DUP3 PUSH2 0xB35 JUMP JUMPDEST PUSH2 0xCAC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xCA3 SWAP1 PUSH2 0x1C55 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xCB7 DUP4 PUSH2 0x64D JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0xD26 JUMPI POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xD0E DUP5 PUSH2 0x430 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST DUP1 PUSH2 0xD37 JUMPI POP PUSH2 0xD36 DUP2 DUP6 PUSH2 0xA13 JUMP JUMPDEST JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xD60 DUP3 PUSH2 0x64D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xDB6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDAD SWAP1 PUSH2 0x1BF5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xE26 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE1D SWAP1 PUSH2 0x1C15 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xE31 DUP4 DUP4 DUP4 PUSH2 0x122E JUMP JUMPDEST PUSH2 0xE3C PUSH1 0x0 DUP3 PUSH2 0xBA9 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 0xE8C SWAP2 SWAP1 PUSH2 0x1EB0 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 0xEE3 SWAP2 SWAP1 PUSH2 0x1E29 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 PUSH2 0xFA2 DUP4 DUP4 DUP4 PUSH2 0x1233 JUMP JUMPDEST POP POP POP JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1016 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x100D SWAP1 PUSH2 0x1C35 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 0x1107 SWAP2 SWAP1 PUSH2 0x1B98 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x111F DUP5 DUP5 DUP5 PUSH2 0xD40 JUMP JUMPDEST PUSH2 0x112B DUP5 DUP5 DUP5 DUP5 PUSH2 0x1238 JUMP JUMPDEST PUSH2 0x116A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1161 SWAP1 PUSH2 0x1BD5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x1192 DUP3 PUSH2 0xB35 JUMP JUMPDEST PUSH2 0x11D1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x11C8 SWAP1 PUSH2 0x1D15 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x11DB PUSH2 0x1170 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x11FB JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x1226 JUMP JUMPDEST DUP1 PUSH2 0x1205 DUP5 PUSH2 0x13CF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x1216 SWAP3 SWAP2 SWAP1 PUSH2 0x1B0D 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 POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1259 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1530 JUMP JUMPDEST ISZERO PUSH2 0x13C2 JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 PUSH2 0x1282 PUSH2 0xBA1 JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x12A4 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1B4C JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x12BE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x12EF 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 0x12EC SWAP2 SWAP1 PUSH2 0x181C JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x1372 JUMPI RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x131F 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 0x1324 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH1 0x0 DUP2 MLOAD EQ ISZERO PUSH2 0x136A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1361 SWAP1 PUSH2 0x1BD5 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 0x13C7 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 EQ ISZERO PUSH2 0x1417 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 0x152B JUMP JUMPDEST PUSH1 0x0 DUP3 SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x0 DUP3 EQ PUSH2 0x1449 JUMPI DUP1 DUP1 PUSH2 0x1432 SWAP1 PUSH2 0x1FFD JUMP JUMPDEST SWAP2 POP POP PUSH1 0xA DUP3 PUSH2 0x1442 SWAP2 SWAP1 PUSH2 0x1E7F JUMP JUMPDEST SWAP2 POP PUSH2 0x141F JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1465 JUMPI PUSH2 0x1464 PUSH2 0x2133 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 0x1497 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 0x1524 JUMPI PUSH1 0x1 DUP3 PUSH2 0x14B0 SWAP2 SWAP1 PUSH2 0x1EB0 JUMP JUMPDEST SWAP2 POP PUSH1 0xA DUP6 PUSH2 0x14BF SWAP2 SWAP1 PUSH2 0x2046 JUMP JUMPDEST PUSH1 0x30 PUSH2 0x14CB SWAP2 SWAP1 PUSH2 0x1E29 JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x14E1 JUMPI PUSH2 0x14E0 PUSH2 0x2104 JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0xA DUP6 PUSH2 0x151D SWAP2 SWAP1 PUSH2 0x1E7F JUMP JUMPDEST SWAP5 POP PUSH2 0x149B JUMP JUMPDEST DUP1 SWAP4 POP POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1566 PUSH2 0x1561 DUP5 PUSH2 0x1DB5 JUMP JUMPDEST PUSH2 0x1D90 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x1582 JUMPI PUSH2 0x1581 PUSH2 0x2167 JUMP JUMPDEST JUMPDEST PUSH2 0x158D DUP5 DUP3 DUP6 PUSH2 0x1F58 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x15A4 DUP2 PUSH2 0x2564 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x15B9 DUP2 PUSH2 0x257B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x15CE DUP2 PUSH2 0x2592 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x15E3 DUP2 PUSH2 0x2592 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x15FE JUMPI PUSH2 0x15FD PUSH2 0x2162 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x160E DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x1553 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1626 DUP2 PUSH2 0x25A9 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1642 JUMPI PUSH2 0x1641 PUSH2 0x2171 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1650 DUP5 DUP3 DUP6 ADD PUSH2 0x1595 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1670 JUMPI PUSH2 0x166F PUSH2 0x2171 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x167E DUP6 DUP3 DUP7 ADD PUSH2 0x1595 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x168F DUP6 DUP3 DUP7 ADD PUSH2 0x1595 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x16B2 JUMPI PUSH2 0x16B1 PUSH2 0x2171 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x16C0 DUP7 DUP3 DUP8 ADD PUSH2 0x1595 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x16D1 DUP7 DUP3 DUP8 ADD PUSH2 0x1595 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x16E2 DUP7 DUP3 DUP8 ADD PUSH2 0x1617 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1706 JUMPI PUSH2 0x1705 PUSH2 0x2171 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1714 DUP8 DUP3 DUP9 ADD PUSH2 0x1595 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x1725 DUP8 DUP3 DUP9 ADD PUSH2 0x1595 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x1736 DUP8 DUP3 DUP9 ADD PUSH2 0x1617 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1757 JUMPI PUSH2 0x1756 PUSH2 0x216C JUMP JUMPDEST JUMPDEST PUSH2 0x1763 DUP8 DUP3 DUP9 ADD PUSH2 0x15E9 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 0x1786 JUMPI PUSH2 0x1785 PUSH2 0x2171 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1794 DUP6 DUP3 DUP7 ADD PUSH2 0x1595 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x17A5 DUP6 DUP3 DUP7 ADD PUSH2 0x15AA JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x17C6 JUMPI PUSH2 0x17C5 PUSH2 0x2171 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x17D4 DUP6 DUP3 DUP7 ADD PUSH2 0x1595 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x17E5 DUP6 DUP3 DUP7 ADD PUSH2 0x1617 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1805 JUMPI PUSH2 0x1804 PUSH2 0x2171 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1813 DUP5 DUP3 DUP6 ADD PUSH2 0x15BF JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1832 JUMPI PUSH2 0x1831 PUSH2 0x2171 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1840 DUP5 DUP3 DUP6 ADD PUSH2 0x15D4 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x185F JUMPI PUSH2 0x185E PUSH2 0x2171 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x186D DUP5 DUP3 DUP6 ADD PUSH2 0x1617 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x187F DUP2 PUSH2 0x1EE4 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x188E DUP2 PUSH2 0x1EF6 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x189F DUP3 PUSH2 0x1DE6 JUMP JUMPDEST PUSH2 0x18A9 DUP2 DUP6 PUSH2 0x1DFC JUMP JUMPDEST SWAP4 POP PUSH2 0x18B9 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1F67 JUMP JUMPDEST PUSH2 0x18C2 DUP2 PUSH2 0x2176 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x18D8 DUP3 PUSH2 0x1DF1 JUMP JUMPDEST PUSH2 0x18E2 DUP2 DUP6 PUSH2 0x1E0D JUMP JUMPDEST SWAP4 POP PUSH2 0x18F2 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1F67 JUMP JUMPDEST PUSH2 0x18FB DUP2 PUSH2 0x2176 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1911 DUP3 PUSH2 0x1DF1 JUMP JUMPDEST PUSH2 0x191B DUP2 DUP6 PUSH2 0x1E1E JUMP JUMPDEST SWAP4 POP PUSH2 0x192B DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1F67 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1944 PUSH1 0x32 DUP4 PUSH2 0x1E0D JUMP JUMPDEST SWAP2 POP PUSH2 0x194F DUP3 PUSH2 0x2187 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1967 PUSH1 0x25 DUP4 PUSH2 0x1E0D JUMP JUMPDEST SWAP2 POP PUSH2 0x1972 DUP3 PUSH2 0x21D6 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x198A PUSH1 0x24 DUP4 PUSH2 0x1E0D JUMP JUMPDEST SWAP2 POP PUSH2 0x1995 DUP3 PUSH2 0x2225 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x19AD PUSH1 0x19 DUP4 PUSH2 0x1E0D JUMP JUMPDEST SWAP2 POP PUSH2 0x19B8 DUP3 PUSH2 0x2274 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x19D0 PUSH1 0x2C DUP4 PUSH2 0x1E0D JUMP JUMPDEST SWAP2 POP PUSH2 0x19DB DUP3 PUSH2 0x229D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x19F3 PUSH1 0x38 DUP4 PUSH2 0x1E0D JUMP JUMPDEST SWAP2 POP PUSH2 0x19FE DUP3 PUSH2 0x22EC JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1A16 PUSH1 0x2A DUP4 PUSH2 0x1E0D JUMP JUMPDEST SWAP2 POP PUSH2 0x1A21 DUP3 PUSH2 0x233B JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1A39 PUSH1 0x29 DUP4 PUSH2 0x1E0D JUMP JUMPDEST SWAP2 POP PUSH2 0x1A44 DUP3 PUSH2 0x238A JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1A5C PUSH1 0x31 DUP4 PUSH2 0x1E0D JUMP JUMPDEST SWAP2 POP PUSH2 0x1A67 DUP3 PUSH2 0x23D9 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1A7F PUSH1 0x2C DUP4 PUSH2 0x1E0D JUMP JUMPDEST SWAP2 POP PUSH2 0x1A8A DUP3 PUSH2 0x2428 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1AA2 PUSH1 0x2F DUP4 PUSH2 0x1E0D JUMP JUMPDEST SWAP2 POP PUSH2 0x1AAD DUP3 PUSH2 0x2477 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1AC5 PUSH1 0x21 DUP4 PUSH2 0x1E0D JUMP JUMPDEST SWAP2 POP PUSH2 0x1AD0 DUP3 PUSH2 0x24C6 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1AE8 PUSH1 0x31 DUP4 PUSH2 0x1E0D JUMP JUMPDEST SWAP2 POP PUSH2 0x1AF3 DUP3 PUSH2 0x2515 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1B07 DUP2 PUSH2 0x1F4E JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1B19 DUP3 DUP6 PUSH2 0x1906 JUMP JUMPDEST SWAP2 POP PUSH2 0x1B25 DUP3 DUP5 PUSH2 0x1906 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1B46 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1876 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x1B61 PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x1876 JUMP JUMPDEST PUSH2 0x1B6E PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x1876 JUMP JUMPDEST PUSH2 0x1B7B PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x1AFE JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x1B8D DUP2 DUP5 PUSH2 0x1894 JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1BAD PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1885 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1BCD DUP2 DUP5 PUSH2 0x18CD JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1BEE DUP2 PUSH2 0x1937 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1C0E DUP2 PUSH2 0x195A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1C2E DUP2 PUSH2 0x197D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1C4E DUP2 PUSH2 0x19A0 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1C6E DUP2 PUSH2 0x19C3 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1C8E DUP2 PUSH2 0x19E6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1CAE DUP2 PUSH2 0x1A09 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1CCE DUP2 PUSH2 0x1A2C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1CEE DUP2 PUSH2 0x1A4F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1D0E DUP2 PUSH2 0x1A72 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1D2E DUP2 PUSH2 0x1A95 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1D4E DUP2 PUSH2 0x1AB8 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1D6E DUP2 PUSH2 0x1ADB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1D8A PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1AFE JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D9A PUSH2 0x1DAB JUMP JUMPDEST SWAP1 POP PUSH2 0x1DA6 DUP3 DUP3 PUSH2 0x1FCC JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1DD0 JUMPI PUSH2 0x1DCF PUSH2 0x2133 JUMP JUMPDEST JUMPDEST PUSH2 0x1DD9 DUP3 PUSH2 0x2176 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD 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 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E34 DUP3 PUSH2 0x1F4E JUMP JUMPDEST SWAP2 POP PUSH2 0x1E3F DUP4 PUSH2 0x1F4E JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x1E74 JUMPI PUSH2 0x1E73 PUSH2 0x2077 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E8A DUP3 PUSH2 0x1F4E JUMP JUMPDEST SWAP2 POP PUSH2 0x1E95 DUP4 PUSH2 0x1F4E JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x1EA5 JUMPI PUSH2 0x1EA4 PUSH2 0x20A6 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1EBB DUP3 PUSH2 0x1F4E JUMP JUMPDEST SWAP2 POP PUSH2 0x1EC6 DUP4 PUSH2 0x1F4E JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x1ED9 JUMPI PUSH2 0x1ED8 PUSH2 0x2077 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1EEF DUP3 PUSH2 0x1F2E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1F85 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x1F6A JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x1F94 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x1FB2 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1FC6 JUMPI PUSH2 0x1FC5 PUSH2 0x20D5 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1FD5 DUP3 PUSH2 0x2176 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x1FF4 JUMPI PUSH2 0x1FF3 PUSH2 0x2133 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2008 DUP3 PUSH2 0x1F4E JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x203B JUMPI PUSH2 0x203A PUSH2 0x2077 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2051 DUP3 PUSH2 0x1F4E JUMP JUMPDEST SWAP2 POP PUSH2 0x205C DUP4 PUSH2 0x1F4E JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x206C JUMPI PUSH2 0x206B PUSH2 0x20A6 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MOD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x63656976657220696D706C656D656E7465720000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E736665722066726F6D20696E636F727265637420 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6F776E6572000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A206F70657261746F7220717565727920666F72206E6F6E6578 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F74206F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6572206E6F7220617070726F76656420666F7220616C6C0000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A2062616C616E636520717565727920666F7220746865207A65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x726F206164647265737300000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A206F776E657220717565727920666F72206E6F6E6578697374 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x656E7420746F6B656E0000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524337323155524953746F726167653A2055524920717565727920666F7220 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6F6E6578697374656E7420746F6B656E000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76656420717565727920666F72206E6F6E6578 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732314D657461646174613A2055524920717565727920666F72206E6F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6578697374656E7420746F6B656E0000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7200000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E736665722063616C6C6572206973206E6F74206F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x776E6572206E6F7220617070726F766564000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x256D DUP2 PUSH2 0x1EE4 JUMP JUMPDEST DUP2 EQ PUSH2 0x2578 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x2584 DUP2 PUSH2 0x1EF6 JUMP JUMPDEST DUP2 EQ PUSH2 0x258F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x259B DUP2 PUSH2 0x1F02 JUMP JUMPDEST DUP2 EQ PUSH2 0x25A6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x25B2 DUP2 PUSH2 0x1F4E JUMP JUMPDEST DUP2 EQ PUSH2 0x25BD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 GASLIMIT DUP16 0xB7 PUSH27 0xDAFDCD5DC6A5287D1946A5BEA8D460C1747BFB6F4D846B9A76F0AC 0xAF PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER PUSH9 0x747470733A2F2F692E PUSH26 0x74696D672E636F6D2F76692F654D6F6E475A454230496B2F6D61 PUSH25 0x72657364656661756C742E6A70670000000000000000000000 ",
"sourceMap": "216:595:11:-:0;;;341:168;;;;;;;;;;1390:113:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1464:5;1456;:13;;;;;;;;;;;;:::i;:::-;;1489:7;1479;:17;;;;;;;;;;;;:::i;:::-;;1390:113;;393:109:11::1;403:42;393:109;;;;;;;;;;;;;;;;;:9;;;:109;;:::i;:::-;;216:595:::0;;515:294;607:7;630:17;650:18;:8;:16;;;;;:18;;:::i;:::-;630:38;;678:24;684:6;692:9;678:5;;;:24;;:::i;:::-;712:33;725:9;736:8;712:12;;;:33;;:::i;:::-;756:20;:8;:18;;;;;:20;;:::i;:::-;793:9;786:16;;;515:294;;;;:::o;827:112:7:-;892:7;918;:14;;;911:21;;827:112;;;:::o;9078:427:0:-;9171:1;9157:16;;:2;:16;;;;9149:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9229:16;9237:7;9229;;;:16;;:::i;:::-;9228:17;9220:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9289:45;9318:1;9322:2;9326:7;9289:20;;;:45;;:::i;:::-;9362:1;9345:9;:13;9355:2;9345:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9392:2;9373:7;:16;9381:7;9373:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9435:7;9431:2;9410:33;;9427:1;9410:33;;;;;;;;;;;;9454:44;9482:1;9486:2;9490:7;9454:19;;;:44;;:::i;:::-;9078:427;;:::o;1277:214:3:-;1376:16;1384:7;1376;;;:16;;:::i;:::-;1368:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;1475:9;1453:10;:19;1464:7;1453:19;;;;;;;;;;;:31;;;;;;;;;;;;:::i;:::-;;1277:214;;:::o;945:123:7:-;1050:1;1032:7;:14;;;:19;;;;;;;;;;;945:123;:::o;7159:125:0:-;7224:4;7275:1;7247:30;;:7;:16;7255:7;7247:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7240:37;;7159:125;;;:::o;13668:122::-;;;;:::o;14162:121::-;;;;:::o;216:595:11:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:366:12:-;149:3;170:67;234:2;229:3;170:67;:::i;:::-;163:74;;246:93;335:3;246:93;:::i;:::-;364:2;359:3;355:12;348:19;;7:366;;;:::o;379:::-;521:3;542:67;606:2;601:3;542:67;:::i;:::-;535:74;;618:93;707:3;618:93;:::i;:::-;736:2;731:3;727:12;720:19;;379:366;;;:::o;751:::-;893:3;914:67;978:2;973:3;914:67;:::i;:::-;907:74;;990:93;1079:3;990:93;:::i;:::-;1108:2;1103:3;1099:12;1092:19;;751:366;;;:::o;1123:419::-;1289:4;1327:2;1316:9;1312:18;1304:26;;1376:9;1370:4;1366:20;1362:1;1351:9;1347:17;1340:47;1404:131;1530:4;1404:131;:::i;:::-;1396:139;;1123:419;;;:::o;1548:::-;1714:4;1752:2;1741:9;1737:18;1729:26;;1801:9;1795:4;1791:20;1787:1;1776:9;1772:17;1765:47;1829:131;1955:4;1829:131;:::i;:::-;1821:139;;1548:419;;;:::o;1973:::-;2139:4;2177:2;2166:9;2162:18;2154:26;;2226:9;2220:4;2216:20;2212:1;2201:9;2197:17;2190:47;2254:131;2380:4;2254:131;:::i;:::-;2246:139;;1973:419;;;:::o;2398:169::-;2482:11;2516:6;2511:3;2504:19;2556:4;2551:3;2547:14;2532:29;;2398:169;;;;:::o;2573:305::-;2613:3;2632:20;2650:1;2632:20;:::i;:::-;2627:25;;2666:20;2684:1;2666:20;:::i;:::-;2661:25;;2820:1;2752:66;2748:74;2745:1;2742:81;2739:107;;;2826:18;;:::i;:::-;2739:107;2870:1;2867;2863:9;2856:16;;2573:305;;;;:::o;2884:77::-;2921:7;2950:5;2939:16;;2884:77;;;:::o;2967:320::-;3011:6;3048:1;3042:4;3038:12;3028:22;;3095:1;3089:4;3085:12;3116:18;3106:81;;3172:4;3164:6;3160:17;3150:27;;3106:81;3234:2;3226:6;3223:14;3203:18;3200:38;3197:84;;;3253:18;;:::i;:::-;3197:84;3018:269;2967:320;;;:::o;3293:180::-;3341:77;3338:1;3331:88;3438:4;3435:1;3428:15;3462:4;3459:1;3452:15;3479:180;3527:77;3524:1;3517:88;3624:4;3621:1;3614:15;3648:4;3645:1;3638:15;3665:178;3805:30;3801:1;3793:6;3789:14;3782:54;3665:178;:::o;3849:233::-;3989:34;3985:1;3977:6;3973:14;3966:58;4058:16;4053:2;4045:6;4041:15;4034:41;3849:233;:::o;4088:182::-;4228:34;4224:1;4216:6;4212:14;4205:58;4088:182;:::o;216:595:11:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_afterTokenTransfer_864": {
"entryPoint": 4659,
"id": 864,
"parameterSlots": 3,
"returnSlots": 0
},
"@_approve_748": {
"entryPoint": 2985,
"id": 748,
"parameterSlots": 2,
"returnSlots": 0
},
"@_baseURI_216": {
"entryPoint": 4464,
"id": 216,
"parameterSlots": 0,
"returnSlots": 1
},
"@_beforeTokenTransfer_853": {
"entryPoint": 4654,
"id": 853,
"parameterSlots": 3,
"returnSlots": 0
},
"@_checkOnERC721Received_842": {
"entryPoint": 4664,
"id": 842,
"parameterSlots": 4,
"returnSlots": 1
},
"@_exists_438": {
"entryPoint": 2869,
"id": 438,
"parameterSlots": 1,
"returnSlots": 1
},
"@_isApprovedOrOwner_479": {
"entryPoint": 3170,
"id": 479,
"parameterSlots": 2,
"returnSlots": 1
},
"@_msgSender_1461": {
"entryPoint": 2977,
"id": 1461,
"parameterSlots": 0,
"returnSlots": 1
},
"@_safeTransfer_420": {
"entryPoint": 4372,
"id": 420,
"parameterSlots": 4,
"returnSlots": 0
},
"@_setApprovalForAll_780": {
"entryPoint": 4007,
"id": 780,
"parameterSlots": 3,
"returnSlots": 0
},
"@_transfer_724": {
"entryPoint": 3392,
"id": 724,
"parameterSlots": 3,
"returnSlots": 0
},
"@approve_259": {
"entryPoint": 1205,
"id": 259,
"parameterSlots": 2,
"returnSlots": 0
},
"@balanceOf_117": {
"entryPoint": 1791,
"id": 117,
"parameterSlots": 1,
"returnSlots": 1
},
"@current_1489": {
"entryPoint": 2727,
"id": 1489,
"parameterSlots": 1,
"returnSlots": 1
},
"@getApproved_280": {
"entryPoint": 1072,
"id": 280,
"parameterSlots": 1,
"returnSlots": 1
},
"@increment_1503": {
"entryPoint": 2741,
"id": 1503,
"parameterSlots": 1,
"returnSlots": 0
},
"@isApprovedForAll_315": {
"entryPoint": 2579,
"id": 315,
"parameterSlots": 2,
"returnSlots": 1
},
"@isContract_1172": {
"entryPoint": 5424,
"id": 1172,
"parameterSlots": 1,
"returnSlots": 1
},
"@name_155": {
"entryPoint": 926,
"id": 155,
"parameterSlots": 0,
"returnSlots": 1
},
"@ownerOf_145": {
"entryPoint": 1613,
"id": 145,
"parameterSlots": 1,
"returnSlots": 1
},
"@safeTransferFrom_361": {
"entryPoint": 1581,
"id": 361,
"parameterSlots": 3,
"returnSlots": 0
},
"@safeTransferFrom_391": {
"entryPoint": 2143,
"id": 391,
"parameterSlots": 4,
"returnSlots": 0
},
"@setApprovalForAll_297": {
"entryPoint": 2121,
"id": 297,
"parameterSlots": 2,
"returnSlots": 0
},
"@supportsInterface_1771": {
"entryPoint": 2763,
"id": 1771,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_93": {
"entryPoint": 700,
"id": 93,
"parameterSlots": 1,
"returnSlots": 1
},
"@symbol_165": {
"entryPoint": 1975,
"id": 165,
"parameterSlots": 0,
"returnSlots": 1
},
"@toString_1630": {
"entryPoint": 5071,
"id": 1630,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenURI_1074": {
"entryPoint": 2241,
"id": 1074,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenURI_207": {
"entryPoint": 4487,
"id": 207,
"parameterSlots": 1,
"returnSlots": 1
},
"@transferFrom_342": {
"entryPoint": 1485,
"id": 342,
"parameterSlots": 3,
"returnSlots": 0
},
"abi_decode_available_length_t_bytes_memory_ptr": {
"entryPoint": 5459,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 5525,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bool": {
"entryPoint": 5546,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes4": {
"entryPoint": 5567,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes4_fromMemory": {
"entryPoint": 5588,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes_memory_ptr": {
"entryPoint": 5609,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 5655,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 5676,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 5721,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 5785,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr": {
"entryPoint": 5868,
"id": null,
"parameterSlots": 2,
"returnSlots": 4
},
"abi_decode_tuple_t_addresst_bool": {
"entryPoint": 5999,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 6063,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_bytes4": {
"entryPoint": 6127,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes4_fromMemory": {
"entryPoint": 6172,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 6217,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 6262,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 6277,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack": {
"entryPoint": 6292,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6349,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 6406,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6455,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6490,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6525,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6560,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6595,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6630,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6665,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6700,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_8e9ed1638ba7e2d59e03d0957c9339381732ac84d73f65c86c45db1467eafa2a_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6735,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6770,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6805,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6840,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6875,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 6910,
"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": 6925,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 6961,
"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": 6988,
"id": null,
"parameterSlots": 5,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 7064,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7091,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7125,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7157,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7189,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7221,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7253,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7285,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7317,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7349,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_8e9ed1638ba7e2d59e03d0957c9339381732ac84d73f65c86c45db1467eafa2a__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7381,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7413,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7445,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7477,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7509,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 7541,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 7568,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 7595,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_bytes_memory_ptr": {
"entryPoint": 7605,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_bytes_memory_ptr": {
"entryPoint": 7654,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 7665,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack": {
"entryPoint": 7676,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 7693,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 7710,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 7721,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_div_t_uint256": {
"entryPoint": 7807,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 7856,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 7908,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 7926,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bytes4": {
"entryPoint": 7938,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 7982,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 8014,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_calldata_to_memory": {
"entryPoint": 8024,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory": {
"entryPoint": 8039,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 8090,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 8140,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"increment_t_uint256": {
"entryPoint": 8189,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mod_t_uint256": {
"entryPoint": 8262,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 8311,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x12": {
"entryPoint": 8358,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 8405,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 8452,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 8499,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 8546,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 8551,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 8556,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 8561,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 8566,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e": {
"entryPoint": 8583,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48": {
"entryPoint": 8662,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4": {
"entryPoint": 8741,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05": {
"entryPoint": 8820,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c": {
"entryPoint": 8861,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d": {
"entryPoint": 8940,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba": {
"entryPoint": 9019,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397": {
"entryPoint": 9098,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_8e9ed1638ba7e2d59e03d0957c9339381732ac84d73f65c86c45db1467eafa2a": {
"entryPoint": 9177,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d": {
"entryPoint": 9256,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb": {
"entryPoint": 9335,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942": {
"entryPoint": 9414,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2": {
"entryPoint": 9493,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 9572,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bool": {
"entryPoint": 9595,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bytes4": {
"entryPoint": 9618,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 9641,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:28857:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "90:327:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "100:74:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "166:6:12"
}
],
"functionName": {
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "125:40:12"
},
"nodeType": "YulFunctionCall",
"src": "125:48:12"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "109:15:12"
},
"nodeType": "YulFunctionCall",
"src": "109:65:12"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "100:5:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "190:5:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "197:6:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "183:6:12"
},
"nodeType": "YulFunctionCall",
"src": "183:21:12"
},
"nodeType": "YulExpressionStatement",
"src": "183:21:12"
},
{
"nodeType": "YulVariableDeclaration",
"src": "213:27:12",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "228:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "235:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "224:3:12"
},
"nodeType": "YulFunctionCall",
"src": "224:16:12"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "217:3:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "278:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "280:77:12"
},
"nodeType": "YulFunctionCall",
"src": "280:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "280:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "259:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "264:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "255:3:12"
},
"nodeType": "YulFunctionCall",
"src": "255:16:12"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "273:3:12"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "252:2:12"
},
"nodeType": "YulFunctionCall",
"src": "252:25:12"
},
"nodeType": "YulIf",
"src": "249:112:12"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "394:3:12"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "399:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "404:6:12"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "370:23:12"
},
"nodeType": "YulFunctionCall",
"src": "370:41:12"
},
"nodeType": "YulExpressionStatement",
"src": "370:41:12"
}
]
},
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "63:3:12",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "68:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "76:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "84:5:12",
"type": ""
}
],
"src": "7:410:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "475:87:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "485:29:12",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "507:6:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "494:12:12"
},
"nodeType": "YulFunctionCall",
"src": "494:20:12"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "485:5:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "550:5:12"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "523:26:12"
},
"nodeType": "YulFunctionCall",
"src": "523:33:12"
},
"nodeType": "YulExpressionStatement",
"src": "523:33:12"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "453:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "461:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "469:5:12",
"type": ""
}
],
"src": "423:139:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "617:84:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "627:29:12",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "649:6:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "636:12:12"
},
"nodeType": "YulFunctionCall",
"src": "636:20:12"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "627:5:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "689:5:12"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "665:23:12"
},
"nodeType": "YulFunctionCall",
"src": "665:30:12"
},
"nodeType": "YulExpressionStatement",
"src": "665:30:12"
}
]
},
"name": "abi_decode_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "595:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "603:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "611:5:12",
"type": ""
}
],
"src": "568:133:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "758:86:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "768:29:12",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "790:6:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "777:12:12"
},
"nodeType": "YulFunctionCall",
"src": "777:20:12"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "768:5:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "832:5:12"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "806:25:12"
},
"nodeType": "YulFunctionCall",
"src": "806:32:12"
},
"nodeType": "YulExpressionStatement",
"src": "806:32:12"
}
]
},
"name": "abi_decode_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "736:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "744:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "752:5:12",
"type": ""
}
],
"src": "707:137:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "912:79:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "922:22:12",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "937:6:12"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "931:5:12"
},
"nodeType": "YulFunctionCall",
"src": "931:13:12"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "922:5:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "979:5:12"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "953:25:12"
},
"nodeType": "YulFunctionCall",
"src": "953:32:12"
},
"nodeType": "YulExpressionStatement",
"src": "953:32:12"
}
]
},
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "890:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "898:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "906:5:12",
"type": ""
}
],
"src": "850:141:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1071:277:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1120:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "1122:77:12"
},
"nodeType": "YulFunctionCall",
"src": "1122:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "1122:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1099:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1107:4:12",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1095:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1095:17:12"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1114:3:12"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1091:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1091:27:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1084:6:12"
},
"nodeType": "YulFunctionCall",
"src": "1084:35:12"
},
"nodeType": "YulIf",
"src": "1081:122:12"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1212:34:12",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1239:6:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1226:12:12"
},
"nodeType": "YulFunctionCall",
"src": "1226:20:12"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1216:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1255:87:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1315:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1323:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1311:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1311:17:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1330:6:12"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1338:3:12"
}
],
"functionName": {
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1264:46:12"
},
"nodeType": "YulFunctionCall",
"src": "1264:78:12"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1255:5:12"
}
]
}
]
},
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1049:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1057:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "1065:5:12",
"type": ""
}
],
"src": "1010:338:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1406:87:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1416:29:12",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1438:6:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1425:12:12"
},
"nodeType": "YulFunctionCall",
"src": "1425:20:12"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1416:5:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1481:5:12"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "1454:26:12"
},
"nodeType": "YulFunctionCall",
"src": "1454:33:12"
},
"nodeType": "YulExpressionStatement",
"src": "1454:33:12"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1384:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1392:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1400:5:12",
"type": ""
}
],
"src": "1354:139:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1565:263:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1611:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1613:77:12"
},
"nodeType": "YulFunctionCall",
"src": "1613:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "1613:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1586:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1595:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1582:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1582:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1607:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1578:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1578:32:12"
},
"nodeType": "YulIf",
"src": "1575:119:12"
},
{
"nodeType": "YulBlock",
"src": "1704:117:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1719:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1733:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1723:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1748:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1783:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1794:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1779:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1779:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1803:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1758:20:12"
},
"nodeType": "YulFunctionCall",
"src": "1758:53:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1748:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1535:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1546:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1558:6:12",
"type": ""
}
],
"src": "1499:329:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1917:391:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1963:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1965:77:12"
},
"nodeType": "YulFunctionCall",
"src": "1965:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "1965:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1938:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1947:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1934:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1934:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1959:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1930:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1930:32:12"
},
"nodeType": "YulIf",
"src": "1927:119:12"
},
{
"nodeType": "YulBlock",
"src": "2056:117:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2071:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2085:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2075:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2100:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2135:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2146:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2131:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2131:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2155:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2110:20:12"
},
"nodeType": "YulFunctionCall",
"src": "2110:53:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2100:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2183:118:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2198:16:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2212:2:12",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2202:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2228:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2263:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2274:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2259:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2259:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2283:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2238:20:12"
},
"nodeType": "YulFunctionCall",
"src": "2238:53:12"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2228:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1879:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1890:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1902:6:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1910:6:12",
"type": ""
}
],
"src": "1834:474:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2414:519:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2460:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2462:77:12"
},
"nodeType": "YulFunctionCall",
"src": "2462:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "2462:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2435:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2444:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2431:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2431:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2456:2:12",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2427:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2427:32:12"
},
"nodeType": "YulIf",
"src": "2424:119:12"
},
{
"nodeType": "YulBlock",
"src": "2553:117:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2568:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2582:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2572:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2597:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2632:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2643:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2628:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2628:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2652:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2607:20:12"
},
"nodeType": "YulFunctionCall",
"src": "2607:53:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2597:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2680:118:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2695:16:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2709:2:12",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2699:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2725:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2760:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2771:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2756:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2756:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2780:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2735:20:12"
},
"nodeType": "YulFunctionCall",
"src": "2735:53:12"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2725:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2808:118:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2823:16:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2837:2:12",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2827:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2853:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2888:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2899:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2884:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2884:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2908:7:12"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2863:20:12"
},
"nodeType": "YulFunctionCall",
"src": "2863:53:12"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "2853:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2368:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2379:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2391:6:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2399:6:12",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "2407:6:12",
"type": ""
}
],
"src": "2314:619:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3065:817:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3112:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3114:77:12"
},
"nodeType": "YulFunctionCall",
"src": "3114:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "3114:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3086:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3095:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3082:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3082:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3107:3:12",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3078:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3078:33:12"
},
"nodeType": "YulIf",
"src": "3075:120:12"
},
{
"nodeType": "YulBlock",
"src": "3205:117:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3220:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3234:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3224:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3249:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3284:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3295:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3280:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3280:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3304:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3259:20:12"
},
"nodeType": "YulFunctionCall",
"src": "3259:53:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3249:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3332:118:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3347:16:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3361:2:12",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3351:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3377:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3412:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3423:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3408:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3408:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3432:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3387:20:12"
},
"nodeType": "YulFunctionCall",
"src": "3387:53:12"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3377:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3460:118:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3475:16:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3489:2:12",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3479:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3505:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3540:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3551:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3536:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3536:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3560:7:12"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "3515:20:12"
},
"nodeType": "YulFunctionCall",
"src": "3515:53:12"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "3505:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3588:287:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3603:46:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3634:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3645:2:12",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3630:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3630:18:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3617:12:12"
},
"nodeType": "YulFunctionCall",
"src": "3617:32:12"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3607:6:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3696:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "3698:77:12"
},
"nodeType": "YulFunctionCall",
"src": "3698:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "3698:79:12"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3668:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3676:18:12",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3665:2:12"
},
"nodeType": "YulFunctionCall",
"src": "3665:30:12"
},
"nodeType": "YulIf",
"src": "3662:117:12"
},
{
"nodeType": "YulAssignment",
"src": "3793:72:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3837:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3848:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3833:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3833:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3857:7:12"
}
],
"functionName": {
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "3803:29:12"
},
"nodeType": "YulFunctionCall",
"src": "3803:62:12"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "3793:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3011:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3022:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3034:6:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3042:6:12",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "3050:6:12",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "3058:6:12",
"type": ""
}
],
"src": "2939:943:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3968:388:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4014:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "4016:77:12"
},
"nodeType": "YulFunctionCall",
"src": "4016:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "4016:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3989:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3998:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3985:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3985:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4010:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3981:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3981:32:12"
},
"nodeType": "YulIf",
"src": "3978:119:12"
},
{
"nodeType": "YulBlock",
"src": "4107:117:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4122:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4136:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4126:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4151:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4186:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4197:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4182:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4182:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4206:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4161:20:12"
},
"nodeType": "YulFunctionCall",
"src": "4161:53:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4151:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4234:115:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4249:16:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4263:2:12",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4253:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4279:60:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4311:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4322:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4307:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4307:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4331:7:12"
}
],
"functionName": {
"name": "abi_decode_t_bool",
"nodeType": "YulIdentifier",
"src": "4289:17:12"
},
"nodeType": "YulFunctionCall",
"src": "4289:50:12"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4279:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3930:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3941:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3953:6:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3961:6:12",
"type": ""
}
],
"src": "3888:468:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4445:391:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4491:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "4493:77:12"
},
"nodeType": "YulFunctionCall",
"src": "4493:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "4493:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4466:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4475:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4462:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4462:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4487:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4458:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4458:32:12"
},
"nodeType": "YulIf",
"src": "4455:119:12"
},
{
"nodeType": "YulBlock",
"src": "4584:117:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4599:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4613:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4603:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4628:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4663:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4674:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4659:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4659:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4683:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4638:20:12"
},
"nodeType": "YulFunctionCall",
"src": "4638:53:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4628:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4711:118:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4726:16:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4740:2:12",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4730:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4756:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4791:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4802:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4787:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4787:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4811:7:12"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4766:20:12"
},
"nodeType": "YulFunctionCall",
"src": "4766:53:12"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4756:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4407:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4418:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4430:6:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4438:6:12",
"type": ""
}
],
"src": "4362:474:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4907:262:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4953:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "4955:77:12"
},
"nodeType": "YulFunctionCall",
"src": "4955:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "4955:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4928:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4937:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4924:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4924:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4949:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4920:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4920:32:12"
},
"nodeType": "YulIf",
"src": "4917:119:12"
},
{
"nodeType": "YulBlock",
"src": "5046:116:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5061:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5075:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5065:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5090:62:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5124:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5135:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5120:3:12"
},
"nodeType": "YulFunctionCall",
"src": "5120:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5144:7:12"
}
],
"functionName": {
"name": "abi_decode_t_bytes4",
"nodeType": "YulIdentifier",
"src": "5100:19:12"
},
"nodeType": "YulFunctionCall",
"src": "5100:52:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5090:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4877:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4888:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4900:6:12",
"type": ""
}
],
"src": "4842:327:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5251:273:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5297:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5299:77:12"
},
"nodeType": "YulFunctionCall",
"src": "5299:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "5299:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5272:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5281:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5268:3:12"
},
"nodeType": "YulFunctionCall",
"src": "5268:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5293:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5264:3:12"
},
"nodeType": "YulFunctionCall",
"src": "5264:32:12"
},
"nodeType": "YulIf",
"src": "5261:119:12"
},
{
"nodeType": "YulBlock",
"src": "5390:127:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5405:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5419:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5409:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5434:73:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5479:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5490:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5475:3:12"
},
"nodeType": "YulFunctionCall",
"src": "5475:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5499:7:12"
}
],
"functionName": {
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulIdentifier",
"src": "5444:30:12"
},
"nodeType": "YulFunctionCall",
"src": "5444:63:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5434:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5221:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5232:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5244:6:12",
"type": ""
}
],
"src": "5175:349:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5596:263:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5642:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5644:77:12"
},
"nodeType": "YulFunctionCall",
"src": "5644:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "5644:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5617:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5626:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5613:3:12"
},
"nodeType": "YulFunctionCall",
"src": "5613:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5638:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5609:3:12"
},
"nodeType": "YulFunctionCall",
"src": "5609:32:12"
},
"nodeType": "YulIf",
"src": "5606:119:12"
},
{
"nodeType": "YulBlock",
"src": "5735:117:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5750:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5764:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5754:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5779:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5814:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5825:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5810:3:12"
},
"nodeType": "YulFunctionCall",
"src": "5810:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5834:7:12"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "5789:20:12"
},
"nodeType": "YulFunctionCall",
"src": "5789:53:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5779:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5566:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5577:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5589:6:12",
"type": ""
}
],
"src": "5530:329:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5930:53:12",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5947:3:12"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5970:5:12"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "5952:17:12"
},
"nodeType": "YulFunctionCall",
"src": "5952:24:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5940:6:12"
},
"nodeType": "YulFunctionCall",
"src": "5940:37:12"
},
"nodeType": "YulExpressionStatement",
"src": "5940:37:12"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5918:5:12",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5925:3:12",
"type": ""
}
],
"src": "5865:118:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6048:50:12",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6065:3:12"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6085:5:12"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "6070:14:12"
},
"nodeType": "YulFunctionCall",
"src": "6070:21:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6058:6:12"
},
"nodeType": "YulFunctionCall",
"src": "6058:34:12"
},
"nodeType": "YulExpressionStatement",
"src": "6058:34:12"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6036:5:12",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6043:3:12",
"type": ""
}
],
"src": "5989:109:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6194:270:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6204:52:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6250:5:12"
}
],
"functionName": {
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "6218:31:12"
},
"nodeType": "YulFunctionCall",
"src": "6218:38:12"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "6208:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6265:77:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6330:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6335:6:12"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6272:57:12"
},
"nodeType": "YulFunctionCall",
"src": "6272:70:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6265:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6377:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6384:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6373:3:12"
},
"nodeType": "YulFunctionCall",
"src": "6373:16:12"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6391:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6396:6:12"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "6351:21:12"
},
"nodeType": "YulFunctionCall",
"src": "6351:52:12"
},
"nodeType": "YulExpressionStatement",
"src": "6351:52:12"
},
{
"nodeType": "YulAssignment",
"src": "6412:46:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6423:3:12"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6450:6:12"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "6428:21:12"
},
"nodeType": "YulFunctionCall",
"src": "6428:29:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6419:3:12"
},
"nodeType": "YulFunctionCall",
"src": "6419:39:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6412:3:12"
}
]
}
]
},
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6175:5:12",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6182:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6190:3:12",
"type": ""
}
],
"src": "6104:360:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6562:272:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6572:53:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6619:5:12"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "6586:32:12"
},
"nodeType": "YulFunctionCall",
"src": "6586:39:12"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "6576:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6634:78:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6700:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6705:6:12"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6641:58:12"
},
"nodeType": "YulFunctionCall",
"src": "6641:71:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6634:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6747:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6754:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6743:3:12"
},
"nodeType": "YulFunctionCall",
"src": "6743:16:12"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6761:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6766:6:12"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "6721:21:12"
},
"nodeType": "YulFunctionCall",
"src": "6721:52:12"
},
"nodeType": "YulExpressionStatement",
"src": "6721:52:12"
},
{
"nodeType": "YulAssignment",
"src": "6782:46:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6793:3:12"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6820:6:12"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "6798:21:12"
},
"nodeType": "YulFunctionCall",
"src": "6798:29:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6789:3:12"
},
"nodeType": "YulFunctionCall",
"src": "6789:39:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6782:3:12"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6543:5:12",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6550:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6558:3:12",
"type": ""
}
],
"src": "6470:364:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6950:267:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6960:53:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7007:5:12"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "6974:32:12"
},
"nodeType": "YulFunctionCall",
"src": "6974:39:12"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "6964:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7022:96:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7106:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7111:6:12"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "7029:76:12"
},
"nodeType": "YulFunctionCall",
"src": "7029:89:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7022:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7153:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7160:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7149:3:12"
},
"nodeType": "YulFunctionCall",
"src": "7149:16:12"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7167:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7172:6:12"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "7127:21:12"
},
"nodeType": "YulFunctionCall",
"src": "7127:52:12"
},
"nodeType": "YulExpressionStatement",
"src": "7127:52:12"
},
{
"nodeType": "YulAssignment",
"src": "7188:23:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7199:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7204:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7195:3:12"
},
"nodeType": "YulFunctionCall",
"src": "7195:16:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7188:3:12"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6931:5:12",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6938:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6946:3:12",
"type": ""
}
],
"src": "6840:377:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7369:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7379:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7445:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7450:2:12",
"type": "",
"value": "50"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7386:58:12"
},
"nodeType": "YulFunctionCall",
"src": "7386:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7379:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7551:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
"nodeType": "YulIdentifier",
"src": "7462:88:12"
},
"nodeType": "YulFunctionCall",
"src": "7462:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "7462:93:12"
},
{
"nodeType": "YulAssignment",
"src": "7564:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7575:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7580:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7571:3:12"
},
"nodeType": "YulFunctionCall",
"src": "7571:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7564:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7357:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7365:3:12",
"type": ""
}
],
"src": "7223:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7741:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7751:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7817:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7822:2:12",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7758:58:12"
},
"nodeType": "YulFunctionCall",
"src": "7758:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7751:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7923:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48",
"nodeType": "YulIdentifier",
"src": "7834:88:12"
},
"nodeType": "YulFunctionCall",
"src": "7834:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "7834:93:12"
},
{
"nodeType": "YulAssignment",
"src": "7936:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7947:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7952:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7943:3:12"
},
"nodeType": "YulFunctionCall",
"src": "7943:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7936:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7729:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7737:3:12",
"type": ""
}
],
"src": "7595:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8113:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8123:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8189:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8194:2:12",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8130:58:12"
},
"nodeType": "YulFunctionCall",
"src": "8130:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8123:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8295:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4",
"nodeType": "YulIdentifier",
"src": "8206:88:12"
},
"nodeType": "YulFunctionCall",
"src": "8206:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "8206:93:12"
},
{
"nodeType": "YulAssignment",
"src": "8308:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8319:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8324:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8315:3:12"
},
"nodeType": "YulFunctionCall",
"src": "8315:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8308:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8101:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8109:3:12",
"type": ""
}
],
"src": "7967:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8485:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8495:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8561:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8566:2:12",
"type": "",
"value": "25"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8502:58:12"
},
"nodeType": "YulFunctionCall",
"src": "8502:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8495:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8667:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05",
"nodeType": "YulIdentifier",
"src": "8578:88:12"
},
"nodeType": "YulFunctionCall",
"src": "8578:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "8578:93:12"
},
{
"nodeType": "YulAssignment",
"src": "8680:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8691:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8696:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8687:3:12"
},
"nodeType": "YulFunctionCall",
"src": "8687:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8680:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8473:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8481:3:12",
"type": ""
}
],
"src": "8339:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8857:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8867:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8933:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8938:2:12",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8874:58:12"
},
"nodeType": "YulFunctionCall",
"src": "8874:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8867:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9039:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c",
"nodeType": "YulIdentifier",
"src": "8950:88:12"
},
"nodeType": "YulFunctionCall",
"src": "8950:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "8950:93:12"
},
{
"nodeType": "YulAssignment",
"src": "9052:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9063:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9068:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9059:3:12"
},
"nodeType": "YulFunctionCall",
"src": "9059:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9052:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8845:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8853:3:12",
"type": ""
}
],
"src": "8711:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9229:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9239:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9305:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9310:2:12",
"type": "",
"value": "56"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9246:58:12"
},
"nodeType": "YulFunctionCall",
"src": "9246:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9239:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9411:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d",
"nodeType": "YulIdentifier",
"src": "9322:88:12"
},
"nodeType": "YulFunctionCall",
"src": "9322:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "9322:93:12"
},
{
"nodeType": "YulAssignment",
"src": "9424:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9435:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9440:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9431:3:12"
},
"nodeType": "YulFunctionCall",
"src": "9431:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9424:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9217:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9225:3:12",
"type": ""
}
],
"src": "9083:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9601:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9611:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9677:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9682:2:12",
"type": "",
"value": "42"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9618:58:12"
},
"nodeType": "YulFunctionCall",
"src": "9618:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9611:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9783:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba",
"nodeType": "YulIdentifier",
"src": "9694:88:12"
},
"nodeType": "YulFunctionCall",
"src": "9694:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "9694:93:12"
},
{
"nodeType": "YulAssignment",
"src": "9796:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9807:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9812:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9803:3:12"
},
"nodeType": "YulFunctionCall",
"src": "9803:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9796:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9589:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9597:3:12",
"type": ""
}
],
"src": "9455:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9973:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9983:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10049:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10054:2:12",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9990:58:12"
},
"nodeType": "YulFunctionCall",
"src": "9990:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9983:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10155:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397",
"nodeType": "YulIdentifier",
"src": "10066:88:12"
},
"nodeType": "YulFunctionCall",
"src": "10066:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "10066:93:12"
},
{
"nodeType": "YulAssignment",
"src": "10168:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10179:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10184:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10175:3:12"
},
"nodeType": "YulFunctionCall",
"src": "10175:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10168:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9961:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9969:3:12",
"type": ""
}
],
"src": "9827:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10345:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10355:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10421:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10426:2:12",
"type": "",
"value": "49"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10362:58:12"
},
"nodeType": "YulFunctionCall",
"src": "10362:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10355:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10527:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_8e9ed1638ba7e2d59e03d0957c9339381732ac84d73f65c86c45db1467eafa2a",
"nodeType": "YulIdentifier",
"src": "10438:88:12"
},
"nodeType": "YulFunctionCall",
"src": "10438:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "10438:93:12"
},
{
"nodeType": "YulAssignment",
"src": "10540:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10551:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10556:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10547:3:12"
},
"nodeType": "YulFunctionCall",
"src": "10547:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10540:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_8e9ed1638ba7e2d59e03d0957c9339381732ac84d73f65c86c45db1467eafa2a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10333:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10341:3:12",
"type": ""
}
],
"src": "10199:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10717:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10727:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10793:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10798:2:12",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10734:58:12"
},
"nodeType": "YulFunctionCall",
"src": "10734:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10727:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10899:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d",
"nodeType": "YulIdentifier",
"src": "10810:88:12"
},
"nodeType": "YulFunctionCall",
"src": "10810:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "10810:93:12"
},
{
"nodeType": "YulAssignment",
"src": "10912:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10923:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10928:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10919:3:12"
},
"nodeType": "YulFunctionCall",
"src": "10919:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10912:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10705:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10713:3:12",
"type": ""
}
],
"src": "10571:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11089:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11099:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11165:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11170:2:12",
"type": "",
"value": "47"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11106:58:12"
},
"nodeType": "YulFunctionCall",
"src": "11106:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11099:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11271:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb",
"nodeType": "YulIdentifier",
"src": "11182:88:12"
},
"nodeType": "YulFunctionCall",
"src": "11182:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "11182:93:12"
},
{
"nodeType": "YulAssignment",
"src": "11284:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11295:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11300:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11291:3:12"
},
"nodeType": "YulFunctionCall",
"src": "11291:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11284:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11077:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11085:3:12",
"type": ""
}
],
"src": "10943:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11461:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11471:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11537:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11542:2:12",
"type": "",
"value": "33"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11478:58:12"
},
"nodeType": "YulFunctionCall",
"src": "11478:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11471:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11643:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942",
"nodeType": "YulIdentifier",
"src": "11554:88:12"
},
"nodeType": "YulFunctionCall",
"src": "11554:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "11554:93:12"
},
{
"nodeType": "YulAssignment",
"src": "11656:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11667:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11672:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11663:3:12"
},
"nodeType": "YulFunctionCall",
"src": "11663:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11656:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11449:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11457:3:12",
"type": ""
}
],
"src": "11315:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11833:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11843:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11909:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11914:2:12",
"type": "",
"value": "49"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11850:58:12"
},
"nodeType": "YulFunctionCall",
"src": "11850:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11843:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12015:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2",
"nodeType": "YulIdentifier",
"src": "11926:88:12"
},
"nodeType": "YulFunctionCall",
"src": "11926:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "11926:93:12"
},
{
"nodeType": "YulAssignment",
"src": "12028:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12039:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12044:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12035:3:12"
},
"nodeType": "YulFunctionCall",
"src": "12035:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12028:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11821:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11829:3:12",
"type": ""
}
],
"src": "11687:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12124:53:12",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12141:3:12"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "12164:5:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "12146:17:12"
},
"nodeType": "YulFunctionCall",
"src": "12146:24:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12134:6:12"
},
"nodeType": "YulFunctionCall",
"src": "12134:37:12"
},
"nodeType": "YulExpressionStatement",
"src": "12134:37:12"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "12112:5:12",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12119:3:12",
"type": ""
}
],
"src": "12059:118:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12367:251:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12378:102:12",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "12467:6:12"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12476:3:12"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "12385:81:12"
},
"nodeType": "YulFunctionCall",
"src": "12385:95:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12378:3:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "12490:102:12",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "12579:6:12"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12588:3:12"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "12497:81:12"
},
"nodeType": "YulFunctionCall",
"src": "12497:95:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12490:3:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "12602:10:12",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12609:3:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12602:3:12"
}
]
}
]
},
"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": "12338:3:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "12344:6:12",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "12352:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12363:3:12",
"type": ""
}
],
"src": "12183:435:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12722:124:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12732:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12744:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12755:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12740:3:12"
},
"nodeType": "YulFunctionCall",
"src": "12740:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12732:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "12812:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12825:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12836:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12821:3:12"
},
"nodeType": "YulFunctionCall",
"src": "12821:17:12"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "12768:43:12"
},
"nodeType": "YulFunctionCall",
"src": "12768:71:12"
},
"nodeType": "YulExpressionStatement",
"src": "12768:71:12"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12694:9:12",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "12706:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12717:4:12",
"type": ""
}
],
"src": "12624:222:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13052:440:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13062:27:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13074:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13085:3:12",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13070:3:12"
},
"nodeType": "YulFunctionCall",
"src": "13070:19:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13062:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "13143:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13156:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13167:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13152:3:12"
},
"nodeType": "YulFunctionCall",
"src": "13152:17:12"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "13099:43:12"
},
"nodeType": "YulFunctionCall",
"src": "13099:71:12"
},
"nodeType": "YulExpressionStatement",
"src": "13099:71:12"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "13224:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13237:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13248:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13233:3:12"
},
"nodeType": "YulFunctionCall",
"src": "13233:18:12"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "13180:43:12"
},
"nodeType": "YulFunctionCall",
"src": "13180:72:12"
},
"nodeType": "YulExpressionStatement",
"src": "13180:72:12"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "13306:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13319:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13330:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13315:3:12"
},
"nodeType": "YulFunctionCall",
"src": "13315:18:12"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "13262:43:12"
},
"nodeType": "YulFunctionCall",
"src": "13262:72:12"
},
"nodeType": "YulExpressionStatement",
"src": "13262:72:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13355:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13366:2:12",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13351:3:12"
},
"nodeType": "YulFunctionCall",
"src": "13351:18:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13375:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13381:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13371:3:12"
},
"nodeType": "YulFunctionCall",
"src": "13371:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13344:6:12"
},
"nodeType": "YulFunctionCall",
"src": "13344:48:12"
},
"nodeType": "YulExpressionStatement",
"src": "13344:48:12"
},
{
"nodeType": "YulAssignment",
"src": "13401:84:12",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "13471:6:12"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13480:4:12"
}
],
"functionName": {
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13409:61:12"
},
"nodeType": "YulFunctionCall",
"src": "13409:76:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13401:4:12"
}
]
}
]
},
"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": "13000:9:12",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "13012:6:12",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "13020:6:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "13028:6:12",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "13036:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13047:4:12",
"type": ""
}
],
"src": "12852:640:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13590:118:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13600:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13612:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13623:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13608:3:12"
},
"nodeType": "YulFunctionCall",
"src": "13608:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13600:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "13674:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13687:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13698:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13683:3:12"
},
"nodeType": "YulFunctionCall",
"src": "13683:17:12"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "13636:37:12"
},
"nodeType": "YulFunctionCall",
"src": "13636:65:12"
},
"nodeType": "YulExpressionStatement",
"src": "13636:65:12"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13562:9:12",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "13574:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13585:4:12",
"type": ""
}
],
"src": "13498:210:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13832:195:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13842:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13854:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13865:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13850:3:12"
},
"nodeType": "YulFunctionCall",
"src": "13850:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13842:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13889:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13900:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13885:3:12"
},
"nodeType": "YulFunctionCall",
"src": "13885:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13908:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13914:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13904:3:12"
},
"nodeType": "YulFunctionCall",
"src": "13904:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13878:6:12"
},
"nodeType": "YulFunctionCall",
"src": "13878:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "13878:47:12"
},
{
"nodeType": "YulAssignment",
"src": "13934:86:12",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "14006:6:12"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14015:4:12"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13942:63:12"
},
"nodeType": "YulFunctionCall",
"src": "13942:78:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13934:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13804:9:12",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "13816:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13827:4:12",
"type": ""
}
],
"src": "13714:313:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14204:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14214:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14226:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14237:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14222:3:12"
},
"nodeType": "YulFunctionCall",
"src": "14222:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14214:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14261:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14272:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14257:3:12"
},
"nodeType": "YulFunctionCall",
"src": "14257:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14280:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14286:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "14276:3:12"
},
"nodeType": "YulFunctionCall",
"src": "14276:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14250:6:12"
},
"nodeType": "YulFunctionCall",
"src": "14250:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "14250:47:12"
},
{
"nodeType": "YulAssignment",
"src": "14306:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14440:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14314:124:12"
},
"nodeType": "YulFunctionCall",
"src": "14314:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14306:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14184:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14199:4:12",
"type": ""
}
],
"src": "14033:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14629:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14639:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14651:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14662:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14647:3:12"
},
"nodeType": "YulFunctionCall",
"src": "14647:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14639:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14686:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14697:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14682:3:12"
},
"nodeType": "YulFunctionCall",
"src": "14682:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14705:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14711:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "14701:3:12"
},
"nodeType": "YulFunctionCall",
"src": "14701:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14675:6:12"
},
"nodeType": "YulFunctionCall",
"src": "14675:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "14675:47:12"
},
{
"nodeType": "YulAssignment",
"src": "14731:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14865:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14739:124:12"
},
"nodeType": "YulFunctionCall",
"src": "14739:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14731:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14609:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14624:4:12",
"type": ""
}
],
"src": "14458:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15054:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15064:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15076:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15087:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15072:3:12"
},
"nodeType": "YulFunctionCall",
"src": "15072:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15064:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15111:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15122:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15107:3:12"
},
"nodeType": "YulFunctionCall",
"src": "15107:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15130:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15136:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "15126:3:12"
},
"nodeType": "YulFunctionCall",
"src": "15126:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15100:6:12"
},
"nodeType": "YulFunctionCall",
"src": "15100:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "15100:47:12"
},
{
"nodeType": "YulAssignment",
"src": "15156:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15290:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15164:124:12"
},
"nodeType": "YulFunctionCall",
"src": "15164:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15156:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15034:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15049:4:12",
"type": ""
}
],
"src": "14883:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15479:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15489:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15501:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15512:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15497:3:12"
},
"nodeType": "YulFunctionCall",
"src": "15497:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15489:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15536:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15547:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15532:3:12"
},
"nodeType": "YulFunctionCall",
"src": "15532:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15555:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15561:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "15551:3:12"
},
"nodeType": "YulFunctionCall",
"src": "15551:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15525:6:12"
},
"nodeType": "YulFunctionCall",
"src": "15525:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "15525:47:12"
},
{
"nodeType": "YulAssignment",
"src": "15581:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15715:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15589:124:12"
},
"nodeType": "YulFunctionCall",
"src": "15589:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15581:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15459:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15474:4:12",
"type": ""
}
],
"src": "15308:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15904:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15914:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15926:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15937:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15922:3:12"
},
"nodeType": "YulFunctionCall",
"src": "15922:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15914:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15961:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15972:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15957:3:12"
},
"nodeType": "YulFunctionCall",
"src": "15957:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15980:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15986:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "15976:3:12"
},
"nodeType": "YulFunctionCall",
"src": "15976:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15950:6:12"
},
"nodeType": "YulFunctionCall",
"src": "15950:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "15950:47:12"
},
{
"nodeType": "YulAssignment",
"src": "16006:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16140:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16014:124:12"
},
"nodeType": "YulFunctionCall",
"src": "16014:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16006:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15884:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15899:4:12",
"type": ""
}
],
"src": "15733:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16329:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16339:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16351:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16362:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16347:3:12"
},
"nodeType": "YulFunctionCall",
"src": "16347:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16339:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16386:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16397:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16382:3:12"
},
"nodeType": "YulFunctionCall",
"src": "16382:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16405:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16411:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16401:3:12"
},
"nodeType": "YulFunctionCall",
"src": "16401:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16375:6:12"
},
"nodeType": "YulFunctionCall",
"src": "16375:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "16375:47:12"
},
{
"nodeType": "YulAssignment",
"src": "16431:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16565:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16439:124:12"
},
"nodeType": "YulFunctionCall",
"src": "16439:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16431:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16309:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16324:4:12",
"type": ""
}
],
"src": "16158:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16754:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16764:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16776:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16787:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16772:3:12"
},
"nodeType": "YulFunctionCall",
"src": "16772:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16764:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16811:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16822:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16807:3:12"
},
"nodeType": "YulFunctionCall",
"src": "16807:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16830:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16836:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16826:3:12"
},
"nodeType": "YulFunctionCall",
"src": "16826:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16800:6:12"
},
"nodeType": "YulFunctionCall",
"src": "16800:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "16800:47:12"
},
{
"nodeType": "YulAssignment",
"src": "16856:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16990:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16864:124:12"
},
"nodeType": "YulFunctionCall",
"src": "16864:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16856:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16734:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16749:4:12",
"type": ""
}
],
"src": "16583:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17179:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17189:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17201:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17212:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17197:3:12"
},
"nodeType": "YulFunctionCall",
"src": "17197:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17189:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17236:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17247:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17232:3:12"
},
"nodeType": "YulFunctionCall",
"src": "17232:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17255:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17261:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17251:3:12"
},
"nodeType": "YulFunctionCall",
"src": "17251:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17225:6:12"
},
"nodeType": "YulFunctionCall",
"src": "17225:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "17225:47:12"
},
{
"nodeType": "YulAssignment",
"src": "17281:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17415:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17289:124:12"
},
"nodeType": "YulFunctionCall",
"src": "17289:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17281:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17159:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17174:4:12",
"type": ""
}
],
"src": "17008:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17604:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17614:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17626:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17637:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17622:3:12"
},
"nodeType": "YulFunctionCall",
"src": "17622:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17614:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17661:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17672:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17657:3:12"
},
"nodeType": "YulFunctionCall",
"src": "17657:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17680:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17686:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17676:3:12"
},
"nodeType": "YulFunctionCall",
"src": "17676:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17650:6:12"
},
"nodeType": "YulFunctionCall",
"src": "17650:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "17650:47:12"
},
{
"nodeType": "YulAssignment",
"src": "17706:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17840:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_8e9ed1638ba7e2d59e03d0957c9339381732ac84d73f65c86c45db1467eafa2a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17714:124:12"
},
"nodeType": "YulFunctionCall",
"src": "17714:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17706:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_8e9ed1638ba7e2d59e03d0957c9339381732ac84d73f65c86c45db1467eafa2a__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17584:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17599:4:12",
"type": ""
}
],
"src": "17433:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18029:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18039:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18051:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18062:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18047:3:12"
},
"nodeType": "YulFunctionCall",
"src": "18047:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18039:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18086:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18097:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18082:3:12"
},
"nodeType": "YulFunctionCall",
"src": "18082:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18105:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18111:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "18101:3:12"
},
"nodeType": "YulFunctionCall",
"src": "18101:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18075:6:12"
},
"nodeType": "YulFunctionCall",
"src": "18075:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "18075:47:12"
},
{
"nodeType": "YulAssignment",
"src": "18131:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18265:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18139:124:12"
},
"nodeType": "YulFunctionCall",
"src": "18139:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18131:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18009:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18024:4:12",
"type": ""
}
],
"src": "17858:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18454:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18464:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18476:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18487:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18472:3:12"
},
"nodeType": "YulFunctionCall",
"src": "18472:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18464:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18511:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18522:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18507:3:12"
},
"nodeType": "YulFunctionCall",
"src": "18507:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18530:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18536:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "18526:3:12"
},
"nodeType": "YulFunctionCall",
"src": "18526:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18500:6:12"
},
"nodeType": "YulFunctionCall",
"src": "18500:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "18500:47:12"
},
{
"nodeType": "YulAssignment",
"src": "18556:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18690:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18564:124:12"
},
"nodeType": "YulFunctionCall",
"src": "18564:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18556:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18434:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18449:4:12",
"type": ""
}
],
"src": "18283:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18879:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18889:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18901:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18912:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18897:3:12"
},
"nodeType": "YulFunctionCall",
"src": "18897:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18889:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18936:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18947:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18932:3:12"
},
"nodeType": "YulFunctionCall",
"src": "18932:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18955:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18961:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "18951:3:12"
},
"nodeType": "YulFunctionCall",
"src": "18951:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18925:6:12"
},
"nodeType": "YulFunctionCall",
"src": "18925:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "18925:47:12"
},
{
"nodeType": "YulAssignment",
"src": "18981:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19115:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18989:124:12"
},
"nodeType": "YulFunctionCall",
"src": "18989:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18981:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18859:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18874:4:12",
"type": ""
}
],
"src": "18708:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19304:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19314:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19326:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19337:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19322:3:12"
},
"nodeType": "YulFunctionCall",
"src": "19322:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19314:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19361:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19372:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19357:3:12"
},
"nodeType": "YulFunctionCall",
"src": "19357:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19380:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19386:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "19376:3:12"
},
"nodeType": "YulFunctionCall",
"src": "19376:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19350:6:12"
},
"nodeType": "YulFunctionCall",
"src": "19350:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "19350:47:12"
},
{
"nodeType": "YulAssignment",
"src": "19406:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19540:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19414:124:12"
},
"nodeType": "YulFunctionCall",
"src": "19414:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19406:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "19284:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "19299:4:12",
"type": ""
}
],
"src": "19133:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19656:124:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19666:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19678:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19689:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19674:3:12"
},
"nodeType": "YulFunctionCall",
"src": "19674:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19666:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "19746:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19759:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19770:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19755:3:12"
},
"nodeType": "YulFunctionCall",
"src": "19755:17:12"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "19702:43:12"
},
"nodeType": "YulFunctionCall",
"src": "19702:71:12"
},
"nodeType": "YulExpressionStatement",
"src": "19702:71:12"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "19628:9:12",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "19640:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "19651:4:12",
"type": ""
}
],
"src": "19558:222:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19827:88:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19837:30:12",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "19847:18:12"
},
"nodeType": "YulFunctionCall",
"src": "19847:20:12"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19837:6:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19896:6:12"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "19904:4:12"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "19876:19:12"
},
"nodeType": "YulFunctionCall",
"src": "19876:33:12"
},
"nodeType": "YulExpressionStatement",
"src": "19876:33:12"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "19811:4:12",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "19820:6:12",
"type": ""
}
],
"src": "19786:129:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19961:35:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19971:19:12",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19987:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "19981:5:12"
},
"nodeType": "YulFunctionCall",
"src": "19981:9:12"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19971:6:12"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "19954:6:12",
"type": ""
}
],
"src": "19921:75:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20068:241:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "20173:22:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "20175:16:12"
},
"nodeType": "YulFunctionCall",
"src": "20175:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "20175:18:12"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "20145:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20153:18:12",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "20142:2:12"
},
"nodeType": "YulFunctionCall",
"src": "20142:30:12"
},
"nodeType": "YulIf",
"src": "20139:56:12"
},
{
"nodeType": "YulAssignment",
"src": "20205:37:12",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "20235:6:12"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "20213:21:12"
},
"nodeType": "YulFunctionCall",
"src": "20213:29:12"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "20205:4:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "20279:23:12",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "20291:4:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20297:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20287:3:12"
},
"nodeType": "YulFunctionCall",
"src": "20287:15:12"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "20279:4:12"
}
]
}
]
},
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "20052:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "20063:4:12",
"type": ""
}
],
"src": "20002:307:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20373:40:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20384:22:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "20400:5:12"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "20394:5:12"
},
"nodeType": "YulFunctionCall",
"src": "20394:12:12"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "20384:6:12"
}
]
}
]
},
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "20356:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "20366:6:12",
"type": ""
}
],
"src": "20315:98:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20478:40:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20489:22:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "20505:5:12"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "20499:5:12"
},
"nodeType": "YulFunctionCall",
"src": "20499:12:12"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "20489:6:12"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "20461:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "20471:6:12",
"type": ""
}
],
"src": "20419:99:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20619:73:12",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20636:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "20641:6:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20629:6:12"
},
"nodeType": "YulFunctionCall",
"src": "20629:19:12"
},
"nodeType": "YulExpressionStatement",
"src": "20629:19:12"
},
{
"nodeType": "YulAssignment",
"src": "20657:29:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20676:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20681:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20672:3:12"
},
"nodeType": "YulFunctionCall",
"src": "20672:14:12"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "20657:11:12"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "20591:3:12",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "20596:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "20607:11:12",
"type": ""
}
],
"src": "20524:168:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20794:73:12",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20811:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "20816:6:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20804:6:12"
},
"nodeType": "YulFunctionCall",
"src": "20804:19:12"
},
"nodeType": "YulExpressionStatement",
"src": "20804:19:12"
},
{
"nodeType": "YulAssignment",
"src": "20832:29:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20851:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20856:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20847:3:12"
},
"nodeType": "YulFunctionCall",
"src": "20847:14:12"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "20832:11:12"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "20766:3:12",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "20771:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "20782:11:12",
"type": ""
}
],
"src": "20698:169:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20987:34:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20997:18:12",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21012:3:12"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "20997:11:12"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "20959:3:12",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "20964:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "20975:11:12",
"type": ""
}
],
"src": "20873:148:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21071:261:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21081:25:12",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "21104:1:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "21086:17:12"
},
"nodeType": "YulFunctionCall",
"src": "21086:20:12"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "21081:1:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "21115:25:12",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "21138:1:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "21120:17:12"
},
"nodeType": "YulFunctionCall",
"src": "21120:20:12"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "21115:1:12"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "21278:22:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "21280:16:12"
},
"nodeType": "YulFunctionCall",
"src": "21280:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "21280:18:12"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "21199:1:12"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21206:66:12",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "21274:1:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "21202:3:12"
},
"nodeType": "YulFunctionCall",
"src": "21202:74:12"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "21196:2:12"
},
"nodeType": "YulFunctionCall",
"src": "21196:81:12"
},
"nodeType": "YulIf",
"src": "21193:107:12"
},
{
"nodeType": "YulAssignment",
"src": "21310:16:12",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "21321:1:12"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "21324:1:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21317:3:12"
},
"nodeType": "YulFunctionCall",
"src": "21317:9:12"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "21310:3:12"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "21058:1:12",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "21061:1:12",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "21067:3:12",
"type": ""
}
],
"src": "21027:305:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21380:143:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21390:25:12",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "21413:1:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "21395:17:12"
},
"nodeType": "YulFunctionCall",
"src": "21395:20:12"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "21390:1:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "21424:25:12",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "21447:1:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "21429:17:12"
},
"nodeType": "YulFunctionCall",
"src": "21429:20:12"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "21424:1:12"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "21471:22:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "21473:16:12"
},
"nodeType": "YulFunctionCall",
"src": "21473:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "21473:18:12"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "21468:1:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "21461:6:12"
},
"nodeType": "YulFunctionCall",
"src": "21461:9:12"
},
"nodeType": "YulIf",
"src": "21458:35:12"
},
{
"nodeType": "YulAssignment",
"src": "21503:14:12",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "21512:1:12"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "21515:1:12"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "21508:3:12"
},
"nodeType": "YulFunctionCall",
"src": "21508:9:12"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "21503:1:12"
}
]
}
]
},
"name": "checked_div_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "21369:1:12",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "21372:1:12",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "21378:1:12",
"type": ""
}
],
"src": "21338:185:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21574:146:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21584:25:12",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "21607:1:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "21589:17:12"
},
"nodeType": "YulFunctionCall",
"src": "21589:20:12"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "21584:1:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "21618:25:12",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "21641:1:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "21623:17:12"
},
"nodeType": "YulFunctionCall",
"src": "21623:20:12"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "21618:1:12"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "21665:22:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "21667:16:12"
},
"nodeType": "YulFunctionCall",
"src": "21667:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "21667:18:12"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "21659:1:12"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "21662:1:12"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "21656:2:12"
},
"nodeType": "YulFunctionCall",
"src": "21656:8:12"
},
"nodeType": "YulIf",
"src": "21653:34:12"
},
{
"nodeType": "YulAssignment",
"src": "21697:17:12",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "21709:1:12"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "21712:1:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "21705:3:12"
},
"nodeType": "YulFunctionCall",
"src": "21705:9:12"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "21697:4:12"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "21560:1:12",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "21563:1:12",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "21569:4:12",
"type": ""
}
],
"src": "21529:191:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21771:51:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21781:35:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "21810:5:12"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "21792:17:12"
},
"nodeType": "YulFunctionCall",
"src": "21792:24:12"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "21781:7:12"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "21753:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "21763:7:12",
"type": ""
}
],
"src": "21726:96:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21870:48:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21880:32:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "21905:5:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "21898:6:12"
},
"nodeType": "YulFunctionCall",
"src": "21898:13:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "21891:6:12"
},
"nodeType": "YulFunctionCall",
"src": "21891:21:12"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "21880:7:12"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "21852:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "21862:7:12",
"type": ""
}
],
"src": "21828:90:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21968:105:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21978:89:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "21993:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22000:66:12",
"type": "",
"value": "0xffffffff00000000000000000000000000000000000000000000000000000000"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "21989:3:12"
},
"nodeType": "YulFunctionCall",
"src": "21989:78:12"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "21978:7:12"
}
]
}
]
},
"name": "cleanup_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "21950:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "21960:7:12",
"type": ""
}
],
"src": "21924:149:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22124:81:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22134:65:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "22149:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22156:42:12",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "22145:3:12"
},
"nodeType": "YulFunctionCall",
"src": "22145:54:12"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "22134:7:12"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "22106:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "22116:7:12",
"type": ""
}
],
"src": "22079:126:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22256:32:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22266:16:12",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "22277:5:12"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "22266:7:12"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "22238:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "22248:7:12",
"type": ""
}
],
"src": "22211:77:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22345:103:12",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "22368:3:12"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "22373:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "22378:6:12"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "22355:12:12"
},
"nodeType": "YulFunctionCall",
"src": "22355:30:12"
},
"nodeType": "YulExpressionStatement",
"src": "22355:30:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "22426:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "22431:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22422:3:12"
},
"nodeType": "YulFunctionCall",
"src": "22422:16:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22440:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22415:6:12"
},
"nodeType": "YulFunctionCall",
"src": "22415:27:12"
},
"nodeType": "YulExpressionStatement",
"src": "22415:27:12"
}
]
},
"name": "copy_calldata_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "22327:3:12",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "22332:3:12",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "22337:6:12",
"type": ""
}
],
"src": "22294:154:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22503:258:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "22513:10:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "22522:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "22517:1:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "22582:63:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "22607:3:12"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "22612:1:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22603:3:12"
},
"nodeType": "YulFunctionCall",
"src": "22603:11:12"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "22626:3:12"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "22631:1:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22622:3:12"
},
"nodeType": "YulFunctionCall",
"src": "22622:11:12"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "22616:5:12"
},
"nodeType": "YulFunctionCall",
"src": "22616:18:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22596:6:12"
},
"nodeType": "YulFunctionCall",
"src": "22596:39:12"
},
"nodeType": "YulExpressionStatement",
"src": "22596:39:12"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "22543:1:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "22546:6:12"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "22540:2:12"
},
"nodeType": "YulFunctionCall",
"src": "22540:13:12"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "22554:19:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22556:15:12",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "22565:1:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22568:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22561:3:12"
},
"nodeType": "YulFunctionCall",
"src": "22561:10:12"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "22556:1:12"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "22536:3:12",
"statements": []
},
"src": "22532:113:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22679:76:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "22729:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "22734:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22725:3:12"
},
"nodeType": "YulFunctionCall",
"src": "22725:16:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22743:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22718:6:12"
},
"nodeType": "YulFunctionCall",
"src": "22718:27:12"
},
"nodeType": "YulExpressionStatement",
"src": "22718:27:12"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "22660:1:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "22663:6:12"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "22657:2:12"
},
"nodeType": "YulFunctionCall",
"src": "22657:13:12"
},
"nodeType": "YulIf",
"src": "22654:101:12"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "22485:3:12",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "22490:3:12",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "22495:6:12",
"type": ""
}
],
"src": "22454:307:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22818:269:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22828:22:12",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "22842:4:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22848:1:12",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "22838:3:12"
},
"nodeType": "YulFunctionCall",
"src": "22838:12:12"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "22828:6:12"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "22859:38:12",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "22889:4:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22895:1:12",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "22885:3:12"
},
"nodeType": "YulFunctionCall",
"src": "22885:12:12"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "22863:18:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "22936:51:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22950:27:12",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "22964:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22972:4:12",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "22960:3:12"
},
"nodeType": "YulFunctionCall",
"src": "22960:17:12"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "22950:6:12"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "22916:18:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "22909:6:12"
},
"nodeType": "YulFunctionCall",
"src": "22909:26:12"
},
"nodeType": "YulIf",
"src": "22906:81:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23039:42:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "23053:16:12"
},
"nodeType": "YulFunctionCall",
"src": "23053:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "23053:18:12"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "23003:18:12"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "23026:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23034:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "23023:2:12"
},
"nodeType": "YulFunctionCall",
"src": "23023:14:12"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "23000:2:12"
},
"nodeType": "YulFunctionCall",
"src": "23000:38:12"
},
"nodeType": "YulIf",
"src": "22997:84:12"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "22802:4:12",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "22811:6:12",
"type": ""
}
],
"src": "22767:320:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23136:238:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "23146:58:12",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "23168:6:12"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "23198:4:12"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "23176:21:12"
},
"nodeType": "YulFunctionCall",
"src": "23176:27:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23164:3:12"
},
"nodeType": "YulFunctionCall",
"src": "23164:40:12"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "23150:10:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "23315:22:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "23317:16:12"
},
"nodeType": "YulFunctionCall",
"src": "23317:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "23317:18:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "23258:10:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23270:18:12",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "23255:2:12"
},
"nodeType": "YulFunctionCall",
"src": "23255:34:12"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "23294:10:12"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "23306:6:12"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "23291:2:12"
},
"nodeType": "YulFunctionCall",
"src": "23291:22:12"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "23252:2:12"
},
"nodeType": "YulFunctionCall",
"src": "23252:62:12"
},
"nodeType": "YulIf",
"src": "23249:88:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23353:2:12",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "23357:10:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23346:6:12"
},
"nodeType": "YulFunctionCall",
"src": "23346:22:12"
},
"nodeType": "YulExpressionStatement",
"src": "23346:22:12"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "23122:6:12",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "23130:4:12",
"type": ""
}
],
"src": "23093:281:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23423:190:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23433:33:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "23460:5:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "23442:17:12"
},
"nodeType": "YulFunctionCall",
"src": "23442:24:12"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "23433:5:12"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "23556:22:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "23558:16:12"
},
"nodeType": "YulFunctionCall",
"src": "23558:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "23558:18:12"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "23481:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23488:66:12",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "23478:2:12"
},
"nodeType": "YulFunctionCall",
"src": "23478:77:12"
},
"nodeType": "YulIf",
"src": "23475:103:12"
},
{
"nodeType": "YulAssignment",
"src": "23587:20:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "23598:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23605:1:12",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23594:3:12"
},
"nodeType": "YulFunctionCall",
"src": "23594:13:12"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "23587:3:12"
}
]
}
]
},
"name": "increment_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "23409:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "23419:3:12",
"type": ""
}
],
"src": "23380:233:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23653:142:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23663:25:12",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "23686:1:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "23668:17:12"
},
"nodeType": "YulFunctionCall",
"src": "23668:20:12"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "23663:1:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "23697:25:12",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "23720:1:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "23702:17:12"
},
"nodeType": "YulFunctionCall",
"src": "23702:20:12"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "23697:1:12"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "23744:22:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "23746:16:12"
},
"nodeType": "YulFunctionCall",
"src": "23746:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "23746:18:12"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "23741:1:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "23734:6:12"
},
"nodeType": "YulFunctionCall",
"src": "23734:9:12"
},
"nodeType": "YulIf",
"src": "23731:35:12"
},
{
"nodeType": "YulAssignment",
"src": "23775:14:12",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "23784:1:12"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "23787:1:12"
}
],
"functionName": {
"name": "mod",
"nodeType": "YulIdentifier",
"src": "23780:3:12"
},
"nodeType": "YulFunctionCall",
"src": "23780:9:12"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "23775:1:12"
}
]
}
]
},
"name": "mod_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "23642:1:12",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "23645:1:12",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "23651:1:12",
"type": ""
}
],
"src": "23619:176:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23829:152:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23846:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23849:77:12",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23839:6:12"
},
"nodeType": "YulFunctionCall",
"src": "23839:88:12"
},
"nodeType": "YulExpressionStatement",
"src": "23839:88:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23943:1:12",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23946:4:12",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23936:6:12"
},
"nodeType": "YulFunctionCall",
"src": "23936:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "23936:15:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23967:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23970:4:12",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "23960:6:12"
},
"nodeType": "YulFunctionCall",
"src": "23960:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "23960:15:12"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "23801:180:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24015:152:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24032:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24035:77:12",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24025:6:12"
},
"nodeType": "YulFunctionCall",
"src": "24025:88:12"
},
"nodeType": "YulExpressionStatement",
"src": "24025:88:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24129:1:12",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24132:4:12",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24122:6:12"
},
"nodeType": "YulFunctionCall",
"src": "24122:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "24122:15:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24153:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24156:4:12",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "24146:6:12"
},
"nodeType": "YulFunctionCall",
"src": "24146:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "24146:15:12"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "23987:180:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24201:152:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24218:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24221:77:12",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24211:6:12"
},
"nodeType": "YulFunctionCall",
"src": "24211:88:12"
},
"nodeType": "YulExpressionStatement",
"src": "24211:88:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24315:1:12",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24318:4:12",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24308:6:12"
},
"nodeType": "YulFunctionCall",
"src": "24308:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "24308:15:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24339:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24342:4:12",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "24332:6:12"
},
"nodeType": "YulFunctionCall",
"src": "24332:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "24332:15:12"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "24173:180:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24387:152:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24404:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24407:77:12",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24397:6:12"
},
"nodeType": "YulFunctionCall",
"src": "24397:88:12"
},
"nodeType": "YulExpressionStatement",
"src": "24397:88:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24501:1:12",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24504:4:12",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24494:6:12"
},
"nodeType": "YulFunctionCall",
"src": "24494:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "24494:15:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24525:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24528:4:12",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "24518:6:12"
},
"nodeType": "YulFunctionCall",
"src": "24518:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "24518:15:12"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "24359:180:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24573:152:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24590:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24593:77:12",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24583:6:12"
},
"nodeType": "YulFunctionCall",
"src": "24583:88:12"
},
"nodeType": "YulExpressionStatement",
"src": "24583:88:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24687:1:12",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24690:4:12",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24680:6:12"
},
"nodeType": "YulFunctionCall",
"src": "24680:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "24680:15:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24711:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24714:4:12",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "24704:6:12"
},
"nodeType": "YulFunctionCall",
"src": "24704:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "24704:15:12"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "24545:180:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24820:28:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24837:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24840:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "24830:6:12"
},
"nodeType": "YulFunctionCall",
"src": "24830:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "24830:12:12"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "24731:117:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24943:28:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24960:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24963:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "24953:6:12"
},
"nodeType": "YulFunctionCall",
"src": "24953:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "24953:12:12"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "24854:117:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25066:28:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25083:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25086:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "25076:6:12"
},
"nodeType": "YulFunctionCall",
"src": "25076:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "25076:12:12"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "24977:117:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25189:28:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25206:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25209:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "25199:6:12"
},
"nodeType": "YulFunctionCall",
"src": "25199:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "25199:12:12"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "25100:117:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25271:54:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25281:38:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "25299:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25306:2:12",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25295:3:12"
},
"nodeType": "YulFunctionCall",
"src": "25295:14:12"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25315:2:12",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "25311:3:12"
},
"nodeType": "YulFunctionCall",
"src": "25311:7:12"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "25291:3:12"
},
"nodeType": "YulFunctionCall",
"src": "25291:28:12"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "25281:6:12"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "25254:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "25264:6:12",
"type": ""
}
],
"src": "25223:102:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25437:131:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25459:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25467:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25455:3:12"
},
"nodeType": "YulFunctionCall",
"src": "25455:14:12"
},
{
"hexValue": "4552433732313a207472616e7366657220746f206e6f6e204552433732315265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "25471:34:12",
"type": "",
"value": "ERC721: transfer to non ERC721Re"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25448:6:12"
},
"nodeType": "YulFunctionCall",
"src": "25448:58:12"
},
"nodeType": "YulExpressionStatement",
"src": "25448:58:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25527:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25535:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25523:3:12"
},
"nodeType": "YulFunctionCall",
"src": "25523:15:12"
},
{
"hexValue": "63656976657220696d706c656d656e746572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "25540:20:12",
"type": "",
"value": "ceiver implementer"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25516:6:12"
},
"nodeType": "YulFunctionCall",
"src": "25516:45:12"
},
"nodeType": "YulExpressionStatement",
"src": "25516:45:12"
}
]
},
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "25429:6:12",
"type": ""
}
],
"src": "25331:237:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25680:118:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25702:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25710:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25698:3:12"
},
"nodeType": "YulFunctionCall",
"src": "25698:14:12"
},
{
"hexValue": "4552433732313a207472616e736665722066726f6d20696e636f727265637420",
"kind": "string",
"nodeType": "YulLiteral",
"src": "25714:34:12",
"type": "",
"value": "ERC721: transfer from incorrect "
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25691:6:12"
},
"nodeType": "YulFunctionCall",
"src": "25691:58:12"
},
"nodeType": "YulExpressionStatement",
"src": "25691:58:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25770:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25778:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25766:3:12"
},
"nodeType": "YulFunctionCall",
"src": "25766:15:12"
},
{
"hexValue": "6f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "25783:7:12",
"type": "",
"value": "owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25759:6:12"
},
"nodeType": "YulFunctionCall",
"src": "25759:32:12"
},
"nodeType": "YulExpressionStatement",
"src": "25759:32:12"
}
]
},
"name": "store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "25672:6:12",
"type": ""
}
],
"src": "25574:224:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25910:117:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25932:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25940:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25928:3:12"
},
"nodeType": "YulFunctionCall",
"src": "25928:14:12"
},
{
"hexValue": "4552433732313a207472616e7366657220746f20746865207a65726f20616464",
"kind": "string",
"nodeType": "YulLiteral",
"src": "25944:34:12",
"type": "",
"value": "ERC721: transfer to the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25921:6:12"
},
"nodeType": "YulFunctionCall",
"src": "25921:58:12"
},
"nodeType": "YulExpressionStatement",
"src": "25921:58:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26000:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26008:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25996:3:12"
},
"nodeType": "YulFunctionCall",
"src": "25996:15:12"
},
{
"hexValue": "72657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "26013:6:12",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25989:6:12"
},
"nodeType": "YulFunctionCall",
"src": "25989:31:12"
},
"nodeType": "YulExpressionStatement",
"src": "25989:31:12"
}
]
},
"name": "store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "25902:6:12",
"type": ""
}
],
"src": "25804:223:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26139:69:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26161:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26169:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26157:3:12"
},
"nodeType": "YulFunctionCall",
"src": "26157:14:12"
},
{
"hexValue": "4552433732313a20617070726f766520746f2063616c6c6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "26173:27:12",
"type": "",
"value": "ERC721: approve to caller"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26150:6:12"
},
"nodeType": "YulFunctionCall",
"src": "26150:51:12"
},
"nodeType": "YulExpressionStatement",
"src": "26150:51:12"
}
]
},
"name": "store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "26131:6:12",
"type": ""
}
],
"src": "26033:175:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26320:125:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26342:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26350:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26338:3:12"
},
"nodeType": "YulFunctionCall",
"src": "26338:14:12"
},
{
"hexValue": "4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578",
"kind": "string",
"nodeType": "YulLiteral",
"src": "26354:34:12",
"type": "",
"value": "ERC721: operator query for nonex"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26331:6:12"
},
"nodeType": "YulFunctionCall",
"src": "26331:58:12"
},
"nodeType": "YulExpressionStatement",
"src": "26331:58:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26410:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26418:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26406:3:12"
},
"nodeType": "YulFunctionCall",
"src": "26406:15:12"
},
{
"hexValue": "697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "26423:14:12",
"type": "",
"value": "istent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26399:6:12"
},
"nodeType": "YulFunctionCall",
"src": "26399:39:12"
},
"nodeType": "YulExpressionStatement",
"src": "26399:39:12"
}
]
},
"name": "store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "26312:6:12",
"type": ""
}
],
"src": "26214:231:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26557:137:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26579:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26587:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26575:3:12"
},
"nodeType": "YulFunctionCall",
"src": "26575:14:12"
},
{
"hexValue": "4552433732313a20617070726f76652063616c6c6572206973206e6f74206f77",
"kind": "string",
"nodeType": "YulLiteral",
"src": "26591:34:12",
"type": "",
"value": "ERC721: approve caller is not ow"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26568:6:12"
},
"nodeType": "YulFunctionCall",
"src": "26568:58:12"
},
"nodeType": "YulExpressionStatement",
"src": "26568:58:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26647:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26655:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26643:3:12"
},
"nodeType": "YulFunctionCall",
"src": "26643:15:12"
},
{
"hexValue": "6e6572206e6f7220617070726f76656420666f7220616c6c",
"kind": "string",
"nodeType": "YulLiteral",
"src": "26660:26:12",
"type": "",
"value": "ner nor approved for all"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26636:6:12"
},
"nodeType": "YulFunctionCall",
"src": "26636:51:12"
},
"nodeType": "YulExpressionStatement",
"src": "26636:51:12"
}
]
},
"name": "store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "26549:6:12",
"type": ""
}
],
"src": "26451:243:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26806:123:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26828:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26836:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26824:3:12"
},
"nodeType": "YulFunctionCall",
"src": "26824:14:12"
},
{
"hexValue": "4552433732313a2062616c616e636520717565727920666f7220746865207a65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "26840:34:12",
"type": "",
"value": "ERC721: balance query for the ze"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26817:6:12"
},
"nodeType": "YulFunctionCall",
"src": "26817:58:12"
},
"nodeType": "YulExpressionStatement",
"src": "26817:58:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26896:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26904:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26892:3:12"
},
"nodeType": "YulFunctionCall",
"src": "26892:15:12"
},
{
"hexValue": "726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "26909:12:12",
"type": "",
"value": "ro address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26885:6:12"
},
"nodeType": "YulFunctionCall",
"src": "26885:37:12"
},
"nodeType": "YulExpressionStatement",
"src": "26885:37:12"
}
]
},
"name": "store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "26798:6:12",
"type": ""
}
],
"src": "26700:229:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27041:122:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "27063:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27071:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27059:3:12"
},
"nodeType": "YulFunctionCall",
"src": "27059:14:12"
},
{
"hexValue": "4552433732313a206f776e657220717565727920666f72206e6f6e6578697374",
"kind": "string",
"nodeType": "YulLiteral",
"src": "27075:34:12",
"type": "",
"value": "ERC721: owner query for nonexist"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27052:6:12"
},
"nodeType": "YulFunctionCall",
"src": "27052:58:12"
},
"nodeType": "YulExpressionStatement",
"src": "27052:58:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "27131:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27139:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27127:3:12"
},
"nodeType": "YulFunctionCall",
"src": "27127:15:12"
},
{
"hexValue": "656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "27144:11:12",
"type": "",
"value": "ent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27120:6:12"
},
"nodeType": "YulFunctionCall",
"src": "27120:36:12"
},
"nodeType": "YulExpressionStatement",
"src": "27120:36:12"
}
]
},
"name": "store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "27033:6:12",
"type": ""
}
],
"src": "26935:228:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27275:130:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "27297:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27305:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27293:3:12"
},
"nodeType": "YulFunctionCall",
"src": "27293:14:12"
},
{
"hexValue": "45524337323155524953746f726167653a2055524920717565727920666f7220",
"kind": "string",
"nodeType": "YulLiteral",
"src": "27309:34:12",
"type": "",
"value": "ERC721URIStorage: URI query for "
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27286:6:12"
},
"nodeType": "YulFunctionCall",
"src": "27286:58:12"
},
"nodeType": "YulExpressionStatement",
"src": "27286:58:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "27365:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27373:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27361:3:12"
},
"nodeType": "YulFunctionCall",
"src": "27361:15:12"
},
{
"hexValue": "6e6f6e6578697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "27378:19:12",
"type": "",
"value": "nonexistent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27354:6:12"
},
"nodeType": "YulFunctionCall",
"src": "27354:44:12"
},
"nodeType": "YulExpressionStatement",
"src": "27354:44:12"
}
]
},
"name": "store_literal_in_memory_8e9ed1638ba7e2d59e03d0957c9339381732ac84d73f65c86c45db1467eafa2a",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "27267:6:12",
"type": ""
}
],
"src": "27169:236:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27517:125:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "27539:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27547:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27535:3:12"
},
"nodeType": "YulFunctionCall",
"src": "27535:14:12"
},
{
"hexValue": "4552433732313a20617070726f76656420717565727920666f72206e6f6e6578",
"kind": "string",
"nodeType": "YulLiteral",
"src": "27551:34:12",
"type": "",
"value": "ERC721: approved query for nonex"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27528:6:12"
},
"nodeType": "YulFunctionCall",
"src": "27528:58:12"
},
"nodeType": "YulExpressionStatement",
"src": "27528:58:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "27607:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27615:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27603:3:12"
},
"nodeType": "YulFunctionCall",
"src": "27603:15:12"
},
{
"hexValue": "697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "27620:14:12",
"type": "",
"value": "istent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27596:6:12"
},
"nodeType": "YulFunctionCall",
"src": "27596:39:12"
},
"nodeType": "YulExpressionStatement",
"src": "27596:39:12"
}
]
},
"name": "store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "27509:6:12",
"type": ""
}
],
"src": "27411:231:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27754:128:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "27776:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27784:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27772:3:12"
},
"nodeType": "YulFunctionCall",
"src": "27772:14:12"
},
{
"hexValue": "4552433732314d657461646174613a2055524920717565727920666f72206e6f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "27788:34:12",
"type": "",
"value": "ERC721Metadata: URI query for no"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27765:6:12"
},
"nodeType": "YulFunctionCall",
"src": "27765:58:12"
},
"nodeType": "YulExpressionStatement",
"src": "27765:58:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "27844:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27852:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27840:3:12"
},
"nodeType": "YulFunctionCall",
"src": "27840:15:12"
},
{
"hexValue": "6e6578697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "27857:17:12",
"type": "",
"value": "nexistent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27833:6:12"
},
"nodeType": "YulFunctionCall",
"src": "27833:42:12"
},
"nodeType": "YulExpressionStatement",
"src": "27833:42:12"
}
]
},
"name": "store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "27746:6:12",
"type": ""
}
],
"src": "27648:234:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27994:114:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "28016:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28024:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28012:3:12"
},
"nodeType": "YulFunctionCall",
"src": "28012:14:12"
},
{
"hexValue": "4552433732313a20617070726f76616c20746f2063757272656e74206f776e65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "28028:34:12",
"type": "",
"value": "ERC721: approval to current owne"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28005:6:12"
},
"nodeType": "YulFunctionCall",
"src": "28005:58:12"
},
"nodeType": "YulExpressionStatement",
"src": "28005:58:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "28084:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28092:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28080:3:12"
},
"nodeType": "YulFunctionCall",
"src": "28080:15:12"
},
{
"hexValue": "72",
"kind": "string",
"nodeType": "YulLiteral",
"src": "28097:3:12",
"type": "",
"value": "r"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28073:6:12"
},
"nodeType": "YulFunctionCall",
"src": "28073:28:12"
},
"nodeType": "YulExpressionStatement",
"src": "28073:28:12"
}
]
},
"name": "store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "27986:6:12",
"type": ""
}
],
"src": "27888:220:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28220:130:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "28242:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28250:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28238:3:12"
},
"nodeType": "YulFunctionCall",
"src": "28238:14:12"
},
{
"hexValue": "4552433732313a207472616e736665722063616c6c6572206973206e6f74206f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "28254:34:12",
"type": "",
"value": "ERC721: transfer caller is not o"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28231:6:12"
},
"nodeType": "YulFunctionCall",
"src": "28231:58:12"
},
"nodeType": "YulExpressionStatement",
"src": "28231:58:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "28310:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28318:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28306:3:12"
},
"nodeType": "YulFunctionCall",
"src": "28306:15:12"
},
{
"hexValue": "776e6572206e6f7220617070726f766564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "28323:19:12",
"type": "",
"value": "wner nor approved"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28299:6:12"
},
"nodeType": "YulFunctionCall",
"src": "28299:44:12"
},
"nodeType": "YulExpressionStatement",
"src": "28299:44:12"
}
]
},
"name": "store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "28212:6:12",
"type": ""
}
],
"src": "28114:236:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28399:79:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "28456:16:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28465:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28468:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "28458:6:12"
},
"nodeType": "YulFunctionCall",
"src": "28458:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "28458:12:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28422:5:12"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28447:5:12"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "28429:17:12"
},
"nodeType": "YulFunctionCall",
"src": "28429:24:12"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "28419:2:12"
},
"nodeType": "YulFunctionCall",
"src": "28419:35:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "28412:6:12"
},
"nodeType": "YulFunctionCall",
"src": "28412:43:12"
},
"nodeType": "YulIf",
"src": "28409:63:12"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "28392:5:12",
"type": ""
}
],
"src": "28356:122:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28524:76:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "28578:16:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28587:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28590:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "28580:6:12"
},
"nodeType": "YulFunctionCall",
"src": "28580:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "28580:12:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28547:5:12"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28569:5:12"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "28554:14:12"
},
"nodeType": "YulFunctionCall",
"src": "28554:21:12"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "28544:2:12"
},
"nodeType": "YulFunctionCall",
"src": "28544:32:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "28537:6:12"
},
"nodeType": "YulFunctionCall",
"src": "28537:40:12"
},
"nodeType": "YulIf",
"src": "28534:60:12"
}
]
},
"name": "validator_revert_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "28517:5:12",
"type": ""
}
],
"src": "28484:116:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28648:78:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "28704:16:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28713:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28716:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "28706:6:12"
},
"nodeType": "YulFunctionCall",
"src": "28706:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "28706:12:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28671:5:12"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28695:5:12"
}
],
"functionName": {
"name": "cleanup_t_bytes4",
"nodeType": "YulIdentifier",
"src": "28678:16:12"
},
"nodeType": "YulFunctionCall",
"src": "28678:23:12"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "28668:2:12"
},
"nodeType": "YulFunctionCall",
"src": "28668:34:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "28661:6:12"
},
"nodeType": "YulFunctionCall",
"src": "28661:42:12"
},
"nodeType": "YulIf",
"src": "28658:62:12"
}
]
},
"name": "validator_revert_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "28641:5:12",
"type": ""
}
],
"src": "28606:120:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28775:79:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "28832:16:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28841:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28844:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "28834:6:12"
},
"nodeType": "YulFunctionCall",
"src": "28834:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "28834:12:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28798:5:12"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28823:5:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "28805:17:12"
},
"nodeType": "YulFunctionCall",
"src": "28805:24:12"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "28795:2:12"
},
"nodeType": "YulFunctionCall",
"src": "28795:35:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "28788:6:12"
},
"nodeType": "YulFunctionCall",
"src": "28788:43:12"
},
"nodeType": "YulIf",
"src": "28785:63:12"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "28768:5:12",
"type": ""
}
],
"src": "28732:122:12"
}
]
},
"contents": "{\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 function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\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_t_bytes4(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bytes4(value)\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 // 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_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function 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 abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_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_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 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_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 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 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 abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(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_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_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_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_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_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48(pos)\n end := add(pos, 64)\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_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_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_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_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_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_t_stringliteral_8e9ed1638ba7e2d59e03d0957c9339381732ac84d73f65c86c45db1467eafa2a_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 49)\n store_literal_in_memory_8e9ed1638ba7e2d59e03d0957c9339381732ac84d73f65c86c45db1467eafa2a(pos)\n end := add(pos, 64)\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_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_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_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_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\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 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 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_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 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 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 abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__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_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack( tail)\n\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 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 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 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 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 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 abi_encode_tuple_t_stringliteral_8e9ed1638ba7e2d59e03d0957c9339381732ac84d73f65c86c45db1467eafa2a__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_8e9ed1638ba7e2d59e03d0957c9339381732ac84d73f65c86c45db1467eafa2a_to_t_string_memory_ptr_fromStack( tail)\n\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 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 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 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 abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\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 array_length_t_bytes_memory_ptr(value) -> length {\n\n length := mload(value)\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_bytes_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\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 array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length) -> updated_pos {\n updated_pos := pos\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 checked_div_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n\n r := div(x, y)\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n if lt(x, y) { panic_error_0x11() }\n\n diff := sub(x, y)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function cleanup_t_bytes4(value) -> cleaned {\n cleaned := and(value, 0xffffffff00000000000000000000000000000000000000000000000000000000)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\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 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 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 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 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 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 panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function panic_error_0x12() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x12)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function panic_error_0x32() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x32)\n revert(0, 0x24)\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\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 revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function 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 store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: transfer from incorrect \")\n\n mstore(add(memPtr, 32), \"owner\")\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 store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approve to caller\")\n\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 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 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 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 store_literal_in_memory_8e9ed1638ba7e2d59e03d0957c9339381732ac84d73f65c86c45db1467eafa2a(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721URIStorage: URI query for \")\n\n mstore(add(memPtr, 32), \"nonexistent token\")\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 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 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 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 validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\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 validator_revert_t_bytes4(value) {\n if iszero(eq(value, cleanup_t_bytes4(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 12,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100cf5760003560e01c80636352211e1161008c578063a22cb46511610066578063a22cb46514610224578063b88d4fde14610240578063c87b56dd1461025c578063e985e9c51461028c576100cf565b80636352211e146101a657806370a08231146101d657806395d89b4114610206576100cf565b806301ffc9a7146100d457806306fdde0314610104578063081812fc14610122578063095ea7b31461015257806323b872dd1461016e57806342842e0e1461018a575b600080fd5b6100ee60048036038101906100e991906117ef565b6102bc565b6040516100fb9190611b98565b60405180910390f35b61010c61039e565b6040516101199190611bb3565b60405180910390f35b61013c60048036038101906101379190611849565b610430565b6040516101499190611b31565b60405180910390f35b61016c600480360381019061016791906117af565b6104b5565b005b61018860048036038101906101839190611699565b6105cd565b005b6101a4600480360381019061019f9190611699565b61062d565b005b6101c060048036038101906101bb9190611849565b61064d565b6040516101cd9190611b31565b60405180910390f35b6101f060048036038101906101eb919061162c565b6106ff565b6040516101fd9190611d75565b60405180910390f35b61020e6107b7565b60405161021b9190611bb3565b60405180910390f35b61023e6004803603810190610239919061176f565b610849565b005b61025a600480360381019061025591906116ec565b61085f565b005b61027660048036038101906102719190611849565b6108c1565b6040516102839190611bb3565b60405180910390f35b6102a660048036038101906102a19190611659565b610a13565b6040516102b39190611b98565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061038757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610397575061039682610acb565b5b9050919050565b6060600080546103ad90611f9a565b80601f01602080910402602001604051908101604052809291908181526020018280546103d990611f9a565b80156104265780601f106103fb57610100808354040283529160200191610426565b820191906000526020600020905b81548152906001019060200180831161040957829003601f168201915b5050505050905090565b600061043b82610b35565b61047a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161047190611cf5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006104c08261064d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052890611d35565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610550610ba1565b73ffffffffffffffffffffffffffffffffffffffff16148061057f575061057e81610579610ba1565b610a13565b5b6105be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b590611c75565b60405180910390fd5b6105c88383610ba9565b505050565b6105de6105d8610ba1565b82610c62565b61061d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061490611d55565b60405180910390fd5b610628838383610d40565b505050565b6106488383836040518060200160405280600081525061085f565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156106f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ed90611cb5565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610770576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076790611c95565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600180546107c690611f9a565b80601f01602080910402602001604051908101604052809291908181526020018280546107f290611f9a565b801561083f5780601f106108145761010080835404028352916020019161083f565b820191906000526020600020905b81548152906001019060200180831161082257829003601f168201915b5050505050905090565b61085b610854610ba1565b8383610fa7565b5050565b61087061086a610ba1565b83610c62565b6108af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a690611d55565b60405180910390fd5b6108bb84848484611114565b50505050565b60606108cc82610b35565b61090b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090290611cd5565b60405180910390fd5b600060066000848152602001908152602001600020805461092b90611f9a565b80601f016020809104026020016040519081016040528092919081815260200182805461095790611f9a565b80156109a45780601f10610979576101008083540402835291602001916109a4565b820191906000526020600020905b81548152906001019060200180831161098757829003601f168201915b5050505050905060006109b5611170565b90506000815114156109cb578192505050610a0e565b600082511115610a005780826040516020016109e8929190611b0d565b60405160208183030381529060405292505050610a0e565b610a0984611187565b925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600081600001549050919050565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610c1c8361064d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610c6d82610b35565b610cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca390611c55565b60405180910390fd5b6000610cb78361064d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610d2657508373ffffffffffffffffffffffffffffffffffffffff16610d0e84610430565b73ffffffffffffffffffffffffffffffffffffffff16145b80610d375750610d368185610a13565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610d608261064d565b73ffffffffffffffffffffffffffffffffffffffff1614610db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dad90611bf5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1d90611c15565b60405180910390fd5b610e3183838361122e565b610e3c600082610ba9565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e8c9190611eb0565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ee39190611e29565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610fa2838383611233565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100d90611c35565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111079190611b98565b60405180910390a3505050565b61111f848484610d40565b61112b84848484611238565b61116a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116190611bd5565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b606061119282610b35565b6111d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c890611d15565b60405180910390fd5b60006111db611170565b905060008151116111fb5760405180602001604052806000815250611226565b80611205846113cf565b604051602001611216929190611b0d565b6040516020818303038152906040525b915050919050565b505050565b505050565b60006112598473ffffffffffffffffffffffffffffffffffffffff16611530565b156113c2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611282610ba1565b8786866040518563ffffffff1660e01b81526004016112a49493929190611b4c565b602060405180830381600087803b1580156112be57600080fd5b505af19250505080156112ef57506040513d601f19601f820116820180604052508101906112ec919061181c565b60015b611372573d806000811461131f576040519150601f19603f3d011682016040523d82523d6000602084013e611324565b606091505b5060008151141561136a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136190611bd5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506113c7565b600190505b949350505050565b60606000821415611417576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061152b565b600082905060005b6000821461144957808061143290611ffd565b915050600a826114429190611e7f565b915061141f565b60008167ffffffffffffffff81111561146557611464612133565b5b6040519080825280601f01601f1916602001820160405280156114975781602001600182028036833780820191505090505b5090505b60008514611524576001826114b09190611eb0565b9150600a856114bf9190612046565b60306114cb9190611e29565b60f81b8183815181106114e1576114e0612104565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561151d9190611e7f565b945061149b565b8093505050505b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600061156661156184611db5565b611d90565b90508281526020810184848401111561158257611581612167565b5b61158d848285611f58565b509392505050565b6000813590506115a481612564565b92915050565b6000813590506115b98161257b565b92915050565b6000813590506115ce81612592565b92915050565b6000815190506115e381612592565b92915050565b600082601f8301126115fe576115fd612162565b5b813561160e848260208601611553565b91505092915050565b600081359050611626816125a9565b92915050565b60006020828403121561164257611641612171565b5b600061165084828501611595565b91505092915050565b600080604083850312156116705761166f612171565b5b600061167e85828601611595565b925050602061168f85828601611595565b9150509250929050565b6000806000606084860312156116b2576116b1612171565b5b60006116c086828701611595565b93505060206116d186828701611595565b92505060406116e286828701611617565b9150509250925092565b6000806000806080858703121561170657611705612171565b5b600061171487828801611595565b945050602061172587828801611595565b935050604061173687828801611617565b925050606085013567ffffffffffffffff8111156117575761175661216c565b5b611763878288016115e9565b91505092959194509250565b6000806040838503121561178657611785612171565b5b600061179485828601611595565b92505060206117a5858286016115aa565b9150509250929050565b600080604083850312156117c6576117c5612171565b5b60006117d485828601611595565b92505060206117e585828601611617565b9150509250929050565b60006020828403121561180557611804612171565b5b6000611813848285016115bf565b91505092915050565b60006020828403121561183257611831612171565b5b6000611840848285016115d4565b91505092915050565b60006020828403121561185f5761185e612171565b5b600061186d84828501611617565b91505092915050565b61187f81611ee4565b82525050565b61188e81611ef6565b82525050565b600061189f82611de6565b6118a98185611dfc565b93506118b9818560208601611f67565b6118c281612176565b840191505092915050565b60006118d882611df1565b6118e28185611e0d565b93506118f2818560208601611f67565b6118fb81612176565b840191505092915050565b600061191182611df1565b61191b8185611e1e565b935061192b818560208601611f67565b80840191505092915050565b6000611944603283611e0d565b915061194f82612187565b604082019050919050565b6000611967602583611e0d565b9150611972826121d6565b604082019050919050565b600061198a602483611e0d565b915061199582612225565b604082019050919050565b60006119ad601983611e0d565b91506119b882612274565b602082019050919050565b60006119d0602c83611e0d565b91506119db8261229d565b604082019050919050565b60006119f3603883611e0d565b91506119fe826122ec565b604082019050919050565b6000611a16602a83611e0d565b9150611a218261233b565b604082019050919050565b6000611a39602983611e0d565b9150611a448261238a565b604082019050919050565b6000611a5c603183611e0d565b9150611a67826123d9565b604082019050919050565b6000611a7f602c83611e0d565b9150611a8a82612428565b604082019050919050565b6000611aa2602f83611e0d565b9150611aad82612477565b604082019050919050565b6000611ac5602183611e0d565b9150611ad0826124c6565b604082019050919050565b6000611ae8603183611e0d565b9150611af382612515565b604082019050919050565b611b0781611f4e565b82525050565b6000611b198285611906565b9150611b258284611906565b91508190509392505050565b6000602082019050611b466000830184611876565b92915050565b6000608082019050611b616000830187611876565b611b6e6020830186611876565b611b7b6040830185611afe565b8181036060830152611b8d8184611894565b905095945050505050565b6000602082019050611bad6000830184611885565b92915050565b60006020820190508181036000830152611bcd81846118cd565b905092915050565b60006020820190508181036000830152611bee81611937565b9050919050565b60006020820190508181036000830152611c0e8161195a565b9050919050565b60006020820190508181036000830152611c2e8161197d565b9050919050565b60006020820190508181036000830152611c4e816119a0565b9050919050565b60006020820190508181036000830152611c6e816119c3565b9050919050565b60006020820190508181036000830152611c8e816119e6565b9050919050565b60006020820190508181036000830152611cae81611a09565b9050919050565b60006020820190508181036000830152611cce81611a2c565b9050919050565b60006020820190508181036000830152611cee81611a4f565b9050919050565b60006020820190508181036000830152611d0e81611a72565b9050919050565b60006020820190508181036000830152611d2e81611a95565b9050919050565b60006020820190508181036000830152611d4e81611ab8565b9050919050565b60006020820190508181036000830152611d6e81611adb565b9050919050565b6000602082019050611d8a6000830184611afe565b92915050565b6000611d9a611dab565b9050611da68282611fcc565b919050565b6000604051905090565b600067ffffffffffffffff821115611dd057611dcf612133565b5b611dd982612176565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000611e3482611f4e565b9150611e3f83611f4e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611e7457611e73612077565b5b828201905092915050565b6000611e8a82611f4e565b9150611e9583611f4e565b925082611ea557611ea46120a6565b5b828204905092915050565b6000611ebb82611f4e565b9150611ec683611f4e565b925082821015611ed957611ed8612077565b5b828203905092915050565b6000611eef82611f2e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015611f85578082015181840152602081019050611f6a565b83811115611f94576000848401525b50505050565b60006002820490506001821680611fb257607f821691505b60208210811415611fc657611fc56120d5565b5b50919050565b611fd582612176565b810181811067ffffffffffffffff82111715611ff457611ff3612133565b5b80604052505050565b600061200882611f4e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561203b5761203a612077565b5b600182019050919050565b600061205182611f4e565b915061205c83611f4e565b92508261206c5761206b6120a6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61256d81611ee4565b811461257857600080fd5b50565b61258481611ef6565b811461258f57600080fd5b50565b61259b81611f02565b81146125a657600080fd5b50565b6125b281611f4e565b81146125bd57600080fd5b5056fea2646970667358221220458fb77adafdcd5dc6a5287d1946a5bea8d460c1747bfb6f4d846b9a76f0acaf64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xCF JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6352211E GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x224 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x240 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x25C JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x28C JUMPI PUSH2 0xCF JUMP JUMPDEST DUP1 PUSH4 0x6352211E EQ PUSH2 0x1A6 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1D6 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x206 JUMPI PUSH2 0xCF JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xD4 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x104 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x122 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x152 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x16E JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x18A JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xEE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xE9 SWAP2 SWAP1 PUSH2 0x17EF JUMP JUMPDEST PUSH2 0x2BC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xFB SWAP2 SWAP1 PUSH2 0x1B98 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x10C PUSH2 0x39E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x119 SWAP2 SWAP1 PUSH2 0x1BB3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x13C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x137 SWAP2 SWAP1 PUSH2 0x1849 JUMP JUMPDEST PUSH2 0x430 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x149 SWAP2 SWAP1 PUSH2 0x1B31 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x16C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x167 SWAP2 SWAP1 PUSH2 0x17AF JUMP JUMPDEST PUSH2 0x4B5 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x188 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x183 SWAP2 SWAP1 PUSH2 0x1699 JUMP JUMPDEST PUSH2 0x5CD JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1A4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x19F SWAP2 SWAP1 PUSH2 0x1699 JUMP JUMPDEST PUSH2 0x62D JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1C0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1BB SWAP2 SWAP1 PUSH2 0x1849 JUMP JUMPDEST PUSH2 0x64D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1CD SWAP2 SWAP1 PUSH2 0x1B31 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1F0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1EB SWAP2 SWAP1 PUSH2 0x162C JUMP JUMPDEST PUSH2 0x6FF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1FD SWAP2 SWAP1 PUSH2 0x1D75 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x20E PUSH2 0x7B7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x21B SWAP2 SWAP1 PUSH2 0x1BB3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x23E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x239 SWAP2 SWAP1 PUSH2 0x176F JUMP JUMPDEST PUSH2 0x849 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x25A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x255 SWAP2 SWAP1 PUSH2 0x16EC JUMP JUMPDEST PUSH2 0x85F JUMP JUMPDEST STOP JUMPDEST PUSH2 0x276 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x271 SWAP2 SWAP1 PUSH2 0x1849 JUMP JUMPDEST PUSH2 0x8C1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x283 SWAP2 SWAP1 PUSH2 0x1BB3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2A6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2A1 SWAP2 SWAP1 PUSH2 0x1659 JUMP JUMPDEST PUSH2 0xA13 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2B3 SWAP2 SWAP1 PUSH2 0x1B98 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 PUSH32 0x80AC58CD00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x387 JUMPI POP PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH2 0x397 JUMPI POP PUSH2 0x396 DUP3 PUSH2 0xACB JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x3AD SWAP1 PUSH2 0x1F9A 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 0x3D9 SWAP1 PUSH2 0x1F9A JUMP JUMPDEST DUP1 ISZERO PUSH2 0x426 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3FB JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x426 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 0x409 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x43B DUP3 PUSH2 0xB35 JUMP JUMPDEST PUSH2 0x47A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x471 SWAP1 PUSH2 0x1CF5 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 0x4C0 DUP3 PUSH2 0x64D JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x531 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x528 SWAP1 PUSH2 0x1D35 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x550 PUSH2 0xBA1 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x57F JUMPI POP PUSH2 0x57E DUP2 PUSH2 0x579 PUSH2 0xBA1 JUMP JUMPDEST PUSH2 0xA13 JUMP JUMPDEST JUMPDEST PUSH2 0x5BE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5B5 SWAP1 PUSH2 0x1C75 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x5C8 DUP4 DUP4 PUSH2 0xBA9 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x5DE PUSH2 0x5D8 PUSH2 0xBA1 JUMP JUMPDEST DUP3 PUSH2 0xC62 JUMP JUMPDEST PUSH2 0x61D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x614 SWAP1 PUSH2 0x1D55 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x628 DUP4 DUP4 DUP4 PUSH2 0xD40 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x648 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x85F JUMP JUMPDEST POP POP 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 0x6F6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6ED SWAP1 PUSH2 0x1CB5 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 0x770 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x767 SWAP1 PUSH2 0x1C95 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 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x7C6 SWAP1 PUSH2 0x1F9A 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 0x7F2 SWAP1 PUSH2 0x1F9A JUMP JUMPDEST DUP1 ISZERO PUSH2 0x83F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x814 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x83F 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 0x822 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x85B PUSH2 0x854 PUSH2 0xBA1 JUMP JUMPDEST DUP4 DUP4 PUSH2 0xFA7 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x870 PUSH2 0x86A PUSH2 0xBA1 JUMP JUMPDEST DUP4 PUSH2 0xC62 JUMP JUMPDEST PUSH2 0x8AF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8A6 SWAP1 PUSH2 0x1D55 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8BB DUP5 DUP5 DUP5 DUP5 PUSH2 0x1114 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x8CC DUP3 PUSH2 0xB35 JUMP JUMPDEST PUSH2 0x90B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x902 SWAP1 PUSH2 0x1CD5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x6 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP1 SLOAD PUSH2 0x92B SWAP1 PUSH2 0x1F9A 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 0x957 SWAP1 PUSH2 0x1F9A JUMP JUMPDEST DUP1 ISZERO PUSH2 0x9A4 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x979 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x9A4 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 0x987 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP PUSH1 0x0 PUSH2 0x9B5 PUSH2 0x1170 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD EQ ISZERO PUSH2 0x9CB JUMPI DUP2 SWAP3 POP POP POP PUSH2 0xA0E JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD GT ISZERO PUSH2 0xA00 JUMPI DUP1 DUP3 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x9E8 SWAP3 SWAP2 SWAP1 PUSH2 0x1B0D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP3 POP POP POP PUSH2 0xA0E JUMP JUMPDEST PUSH2 0xA09 DUP5 PUSH2 0x1187 JUMP JUMPDEST SWAP3 POP POP POP JUMPDEST SWAP2 SWAP1 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 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 PUSH1 0x0 PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ 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 0xC1C DUP4 PUSH2 0x64D 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 0xC6D DUP3 PUSH2 0xB35 JUMP JUMPDEST PUSH2 0xCAC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xCA3 SWAP1 PUSH2 0x1C55 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xCB7 DUP4 PUSH2 0x64D JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0xD26 JUMPI POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xD0E DUP5 PUSH2 0x430 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST DUP1 PUSH2 0xD37 JUMPI POP PUSH2 0xD36 DUP2 DUP6 PUSH2 0xA13 JUMP JUMPDEST JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xD60 DUP3 PUSH2 0x64D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xDB6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDAD SWAP1 PUSH2 0x1BF5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xE26 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE1D SWAP1 PUSH2 0x1C15 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xE31 DUP4 DUP4 DUP4 PUSH2 0x122E JUMP JUMPDEST PUSH2 0xE3C PUSH1 0x0 DUP3 PUSH2 0xBA9 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 0xE8C SWAP2 SWAP1 PUSH2 0x1EB0 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 0xEE3 SWAP2 SWAP1 PUSH2 0x1E29 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 PUSH2 0xFA2 DUP4 DUP4 DUP4 PUSH2 0x1233 JUMP JUMPDEST POP POP POP JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1016 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x100D SWAP1 PUSH2 0x1C35 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 0x1107 SWAP2 SWAP1 PUSH2 0x1B98 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x111F DUP5 DUP5 DUP5 PUSH2 0xD40 JUMP JUMPDEST PUSH2 0x112B DUP5 DUP5 DUP5 DUP5 PUSH2 0x1238 JUMP JUMPDEST PUSH2 0x116A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1161 SWAP1 PUSH2 0x1BD5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x1192 DUP3 PUSH2 0xB35 JUMP JUMPDEST PUSH2 0x11D1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x11C8 SWAP1 PUSH2 0x1D15 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x11DB PUSH2 0x1170 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x11FB JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x1226 JUMP JUMPDEST DUP1 PUSH2 0x1205 DUP5 PUSH2 0x13CF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x1216 SWAP3 SWAP2 SWAP1 PUSH2 0x1B0D 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 POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1259 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1530 JUMP JUMPDEST ISZERO PUSH2 0x13C2 JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 PUSH2 0x1282 PUSH2 0xBA1 JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x12A4 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1B4C JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x12BE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x12EF 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 0x12EC SWAP2 SWAP1 PUSH2 0x181C JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x1372 JUMPI RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x131F 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 0x1324 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH1 0x0 DUP2 MLOAD EQ ISZERO PUSH2 0x136A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1361 SWAP1 PUSH2 0x1BD5 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 0x13C7 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 EQ ISZERO PUSH2 0x1417 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 0x152B JUMP JUMPDEST PUSH1 0x0 DUP3 SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x0 DUP3 EQ PUSH2 0x1449 JUMPI DUP1 DUP1 PUSH2 0x1432 SWAP1 PUSH2 0x1FFD JUMP JUMPDEST SWAP2 POP POP PUSH1 0xA DUP3 PUSH2 0x1442 SWAP2 SWAP1 PUSH2 0x1E7F JUMP JUMPDEST SWAP2 POP PUSH2 0x141F JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1465 JUMPI PUSH2 0x1464 PUSH2 0x2133 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 0x1497 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 0x1524 JUMPI PUSH1 0x1 DUP3 PUSH2 0x14B0 SWAP2 SWAP1 PUSH2 0x1EB0 JUMP JUMPDEST SWAP2 POP PUSH1 0xA DUP6 PUSH2 0x14BF SWAP2 SWAP1 PUSH2 0x2046 JUMP JUMPDEST PUSH1 0x30 PUSH2 0x14CB SWAP2 SWAP1 PUSH2 0x1E29 JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x14E1 JUMPI PUSH2 0x14E0 PUSH2 0x2104 JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0xA DUP6 PUSH2 0x151D SWAP2 SWAP1 PUSH2 0x1E7F JUMP JUMPDEST SWAP5 POP PUSH2 0x149B JUMP JUMPDEST DUP1 SWAP4 POP POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1566 PUSH2 0x1561 DUP5 PUSH2 0x1DB5 JUMP JUMPDEST PUSH2 0x1D90 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x1582 JUMPI PUSH2 0x1581 PUSH2 0x2167 JUMP JUMPDEST JUMPDEST PUSH2 0x158D DUP5 DUP3 DUP6 PUSH2 0x1F58 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x15A4 DUP2 PUSH2 0x2564 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x15B9 DUP2 PUSH2 0x257B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x15CE DUP2 PUSH2 0x2592 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x15E3 DUP2 PUSH2 0x2592 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x15FE JUMPI PUSH2 0x15FD PUSH2 0x2162 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x160E DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x1553 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1626 DUP2 PUSH2 0x25A9 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1642 JUMPI PUSH2 0x1641 PUSH2 0x2171 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1650 DUP5 DUP3 DUP6 ADD PUSH2 0x1595 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1670 JUMPI PUSH2 0x166F PUSH2 0x2171 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x167E DUP6 DUP3 DUP7 ADD PUSH2 0x1595 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x168F DUP6 DUP3 DUP7 ADD PUSH2 0x1595 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x16B2 JUMPI PUSH2 0x16B1 PUSH2 0x2171 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x16C0 DUP7 DUP3 DUP8 ADD PUSH2 0x1595 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x16D1 DUP7 DUP3 DUP8 ADD PUSH2 0x1595 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x16E2 DUP7 DUP3 DUP8 ADD PUSH2 0x1617 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1706 JUMPI PUSH2 0x1705 PUSH2 0x2171 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1714 DUP8 DUP3 DUP9 ADD PUSH2 0x1595 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x1725 DUP8 DUP3 DUP9 ADD PUSH2 0x1595 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x1736 DUP8 DUP3 DUP9 ADD PUSH2 0x1617 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1757 JUMPI PUSH2 0x1756 PUSH2 0x216C JUMP JUMPDEST JUMPDEST PUSH2 0x1763 DUP8 DUP3 DUP9 ADD PUSH2 0x15E9 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 0x1786 JUMPI PUSH2 0x1785 PUSH2 0x2171 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1794 DUP6 DUP3 DUP7 ADD PUSH2 0x1595 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x17A5 DUP6 DUP3 DUP7 ADD PUSH2 0x15AA JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x17C6 JUMPI PUSH2 0x17C5 PUSH2 0x2171 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x17D4 DUP6 DUP3 DUP7 ADD PUSH2 0x1595 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x17E5 DUP6 DUP3 DUP7 ADD PUSH2 0x1617 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1805 JUMPI PUSH2 0x1804 PUSH2 0x2171 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1813 DUP5 DUP3 DUP6 ADD PUSH2 0x15BF JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1832 JUMPI PUSH2 0x1831 PUSH2 0x2171 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1840 DUP5 DUP3 DUP6 ADD PUSH2 0x15D4 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x185F JUMPI PUSH2 0x185E PUSH2 0x2171 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x186D DUP5 DUP3 DUP6 ADD PUSH2 0x1617 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x187F DUP2 PUSH2 0x1EE4 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x188E DUP2 PUSH2 0x1EF6 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x189F DUP3 PUSH2 0x1DE6 JUMP JUMPDEST PUSH2 0x18A9 DUP2 DUP6 PUSH2 0x1DFC JUMP JUMPDEST SWAP4 POP PUSH2 0x18B9 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1F67 JUMP JUMPDEST PUSH2 0x18C2 DUP2 PUSH2 0x2176 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x18D8 DUP3 PUSH2 0x1DF1 JUMP JUMPDEST PUSH2 0x18E2 DUP2 DUP6 PUSH2 0x1E0D JUMP JUMPDEST SWAP4 POP PUSH2 0x18F2 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1F67 JUMP JUMPDEST PUSH2 0x18FB DUP2 PUSH2 0x2176 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1911 DUP3 PUSH2 0x1DF1 JUMP JUMPDEST PUSH2 0x191B DUP2 DUP6 PUSH2 0x1E1E JUMP JUMPDEST SWAP4 POP PUSH2 0x192B DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1F67 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1944 PUSH1 0x32 DUP4 PUSH2 0x1E0D JUMP JUMPDEST SWAP2 POP PUSH2 0x194F DUP3 PUSH2 0x2187 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1967 PUSH1 0x25 DUP4 PUSH2 0x1E0D JUMP JUMPDEST SWAP2 POP PUSH2 0x1972 DUP3 PUSH2 0x21D6 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x198A PUSH1 0x24 DUP4 PUSH2 0x1E0D JUMP JUMPDEST SWAP2 POP PUSH2 0x1995 DUP3 PUSH2 0x2225 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x19AD PUSH1 0x19 DUP4 PUSH2 0x1E0D JUMP JUMPDEST SWAP2 POP PUSH2 0x19B8 DUP3 PUSH2 0x2274 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x19D0 PUSH1 0x2C DUP4 PUSH2 0x1E0D JUMP JUMPDEST SWAP2 POP PUSH2 0x19DB DUP3 PUSH2 0x229D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x19F3 PUSH1 0x38 DUP4 PUSH2 0x1E0D JUMP JUMPDEST SWAP2 POP PUSH2 0x19FE DUP3 PUSH2 0x22EC JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1A16 PUSH1 0x2A DUP4 PUSH2 0x1E0D JUMP JUMPDEST SWAP2 POP PUSH2 0x1A21 DUP3 PUSH2 0x233B JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1A39 PUSH1 0x29 DUP4 PUSH2 0x1E0D JUMP JUMPDEST SWAP2 POP PUSH2 0x1A44 DUP3 PUSH2 0x238A JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1A5C PUSH1 0x31 DUP4 PUSH2 0x1E0D JUMP JUMPDEST SWAP2 POP PUSH2 0x1A67 DUP3 PUSH2 0x23D9 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1A7F PUSH1 0x2C DUP4 PUSH2 0x1E0D JUMP JUMPDEST SWAP2 POP PUSH2 0x1A8A DUP3 PUSH2 0x2428 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1AA2 PUSH1 0x2F DUP4 PUSH2 0x1E0D JUMP JUMPDEST SWAP2 POP PUSH2 0x1AAD DUP3 PUSH2 0x2477 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1AC5 PUSH1 0x21 DUP4 PUSH2 0x1E0D JUMP JUMPDEST SWAP2 POP PUSH2 0x1AD0 DUP3 PUSH2 0x24C6 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1AE8 PUSH1 0x31 DUP4 PUSH2 0x1E0D JUMP JUMPDEST SWAP2 POP PUSH2 0x1AF3 DUP3 PUSH2 0x2515 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1B07 DUP2 PUSH2 0x1F4E JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1B19 DUP3 DUP6 PUSH2 0x1906 JUMP JUMPDEST SWAP2 POP PUSH2 0x1B25 DUP3 DUP5 PUSH2 0x1906 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1B46 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1876 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x1B61 PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x1876 JUMP JUMPDEST PUSH2 0x1B6E PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x1876 JUMP JUMPDEST PUSH2 0x1B7B PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x1AFE JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x1B8D DUP2 DUP5 PUSH2 0x1894 JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1BAD PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1885 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1BCD DUP2 DUP5 PUSH2 0x18CD JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1BEE DUP2 PUSH2 0x1937 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1C0E DUP2 PUSH2 0x195A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1C2E DUP2 PUSH2 0x197D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1C4E DUP2 PUSH2 0x19A0 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1C6E DUP2 PUSH2 0x19C3 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1C8E DUP2 PUSH2 0x19E6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1CAE DUP2 PUSH2 0x1A09 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1CCE DUP2 PUSH2 0x1A2C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1CEE DUP2 PUSH2 0x1A4F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1D0E DUP2 PUSH2 0x1A72 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1D2E DUP2 PUSH2 0x1A95 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1D4E DUP2 PUSH2 0x1AB8 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1D6E DUP2 PUSH2 0x1ADB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1D8A PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1AFE JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D9A PUSH2 0x1DAB JUMP JUMPDEST SWAP1 POP PUSH2 0x1DA6 DUP3 DUP3 PUSH2 0x1FCC JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1DD0 JUMPI PUSH2 0x1DCF PUSH2 0x2133 JUMP JUMPDEST JUMPDEST PUSH2 0x1DD9 DUP3 PUSH2 0x2176 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD 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 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E34 DUP3 PUSH2 0x1F4E JUMP JUMPDEST SWAP2 POP PUSH2 0x1E3F DUP4 PUSH2 0x1F4E JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x1E74 JUMPI PUSH2 0x1E73 PUSH2 0x2077 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E8A DUP3 PUSH2 0x1F4E JUMP JUMPDEST SWAP2 POP PUSH2 0x1E95 DUP4 PUSH2 0x1F4E JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x1EA5 JUMPI PUSH2 0x1EA4 PUSH2 0x20A6 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1EBB DUP3 PUSH2 0x1F4E JUMP JUMPDEST SWAP2 POP PUSH2 0x1EC6 DUP4 PUSH2 0x1F4E JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x1ED9 JUMPI PUSH2 0x1ED8 PUSH2 0x2077 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1EEF DUP3 PUSH2 0x1F2E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1F85 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x1F6A JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x1F94 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x1FB2 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1FC6 JUMPI PUSH2 0x1FC5 PUSH2 0x20D5 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1FD5 DUP3 PUSH2 0x2176 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x1FF4 JUMPI PUSH2 0x1FF3 PUSH2 0x2133 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2008 DUP3 PUSH2 0x1F4E JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x203B JUMPI PUSH2 0x203A PUSH2 0x2077 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2051 DUP3 PUSH2 0x1F4E JUMP JUMPDEST SWAP2 POP PUSH2 0x205C DUP4 PUSH2 0x1F4E JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x206C JUMPI PUSH2 0x206B PUSH2 0x20A6 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MOD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x63656976657220696D706C656D656E7465720000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E736665722066726F6D20696E636F727265637420 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6F776E6572000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A206F70657261746F7220717565727920666F72206E6F6E6578 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F74206F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6572206E6F7220617070726F76656420666F7220616C6C0000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A2062616C616E636520717565727920666F7220746865207A65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x726F206164647265737300000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A206F776E657220717565727920666F72206E6F6E6578697374 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x656E7420746F6B656E0000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524337323155524953746F726167653A2055524920717565727920666F7220 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6F6E6578697374656E7420746F6B656E000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76656420717565727920666F72206E6F6E6578 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732314D657461646174613A2055524920717565727920666F72206E6F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6578697374656E7420746F6B656E0000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7200000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E736665722063616C6C6572206973206E6F74206F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x776E6572206E6F7220617070726F766564000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x256D DUP2 PUSH2 0x1EE4 JUMP JUMPDEST DUP2 EQ PUSH2 0x2578 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x2584 DUP2 PUSH2 0x1EF6 JUMP JUMPDEST DUP2 EQ PUSH2 0x258F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x259B DUP2 PUSH2 0x1F02 JUMP JUMPDEST DUP2 EQ PUSH2 0x25A6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x25B2 DUP2 PUSH2 0x1F4E JUMP JUMPDEST DUP2 EQ PUSH2 0x25BD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 GASLIMIT DUP16 0xB7 PUSH27 0xDAFDCD5DC6A5287D1946A5BEA8D460C1747BFB6F4D846B9A76F0AC 0xAF PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "216:595:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1570:300:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2488:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3999:217;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3537:401;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4726:330;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5122:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2191:235;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1929:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2650:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4283:153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5367:320;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;467:663:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4502:162:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1570:300;1672:4;1722:25;1707:40;;;:11;:40;;;;:104;;;;1778:33;1763:48;;;:11;:48;;;;1707:104;:156;;;;1827:36;1851:11;1827:23;:36::i;:::-;1707:156;1688:175;;1570:300;;;:::o;2488:98::-;2542:13;2574:5;2567:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2488:98;:::o;3999:217::-;4075:7;4102:16;4110:7;4102;:16::i;:::-;4094:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4185:15;:24;4201:7;4185:24;;;;;;;;;;;;;;;;;;;;;4178:31;;3999:217;;;:::o;3537:401::-;3617:13;3633:23;3648:7;3633:14;:23::i;:::-;3617:39;;3680:5;3674:11;;:2;:11;;;;3666:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3771:5;3755:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3780:37;3797:5;3804:12;:10;:12::i;:::-;3780:16;:37::i;:::-;3755:62;3734:165;;;;;;;;;;;;:::i;:::-;;;;;;;;;3910:21;3919:2;3923:7;3910:8;:21::i;:::-;3607:331;3537:401;;:::o;4726:330::-;4915:41;4934:12;:10;:12::i;:::-;4948:7;4915:18;:41::i;:::-;4907:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5021:28;5031:4;5037:2;5041:7;5021:9;:28::i;:::-;4726:330;;;:::o;5122:179::-;5255:39;5272:4;5278:2;5282:7;5255:39;;;;;;;;;;;;:16;:39::i;:::-;5122:179;;;:::o;2191:235::-;2263:7;2282:13;2298:7;:16;2306:7;2298:16;;;;;;;;;;;;;;;;;;;;;2282:32;;2349:1;2332:19;;:5;:19;;;;2324:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2414:5;2407:12;;;2191:235;;;:::o;1929:205::-;2001:7;2045:1;2028:19;;:5;:19;;;;2020:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;2111:9;:16;2121:5;2111:16;;;;;;;;;;;;;;;;2104:23;;1929:205;;;:::o;2650:102::-;2706:13;2738:7;2731:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2650:102;:::o;4283:153::-;4377:52;4396:12;:10;:12::i;:::-;4410:8;4420;4377:18;:52::i;:::-;4283:153;;:::o;5367:320::-;5536:41;5555:12;:10;:12::i;:::-;5569:7;5536:18;:41::i;:::-;5528:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5641:39;5655:4;5661:2;5665:7;5674:5;5641:13;:39::i;:::-;5367:320;;;;:::o;467:663:3:-;540:13;573:16;581:7;573;:16::i;:::-;565:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;654:23;680:10;:19;691:7;680:19;;;;;;;;;;;654:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;709:18;730:10;:8;:10::i;:::-;709:31;;835:1;819:4;813:18;:23;809:70;;;859:9;852:16;;;;;;809:70;1007:1;987:9;981:23;:27;977:106;;;1055:4;1061:9;1038:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1024:48;;;;;;977:106;1100:23;1115:7;1100:14;:23::i;:::-;1093:30;;;;467:663;;;;:::o;4502:162:0:-;4599:4;4622:18;:25;4641:5;4622:25;;;;;;;;;;;;;;;:35;4648:8;4622:35;;;;;;;;;;;;;;;;;;;;;;;;;4615:42;;4502:162;;;;:::o;827:112:7:-;892:7;918;:14;;;911:21;;827:112;;;:::o;945:123::-;1050:1;1032:7;:14;;;:19;;;;;;;;;;;945:123;:::o;829:155:9:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;7159:125:0:-;7224:4;7275:1;7247:30;;:7;:16;7255:7;7247:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7240:37;;7159:125;;;:::o;640:96:6:-;693:7;719:10;712:17;;640:96;:::o;11168:171:0:-;11269:2;11242:15;:24;11258:7;11242:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11324:7;11320:2;11286:46;;11295:23;11310:7;11295:14;:23::i;:::-;11286:46;;;;;;;;;;;;11168:171;;:::o;7442:344::-;7535:4;7559:16;7567:7;7559;:16::i;:::-;7551:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7634:13;7650:23;7665:7;7650:14;:23::i;:::-;7634:39;;7702:5;7691:16;;:7;:16;;;:51;;;;7735:7;7711:31;;:20;7723:7;7711:11;:20::i;:::-;:31;;;7691:51;:87;;;;7746:32;7763:5;7770:7;7746:16;:32::i;:::-;7691:87;7683:96;;;7442:344;;;;:::o;10452:605::-;10606:4;10579:31;;:23;10594:7;10579:14;:23::i;:::-;:31;;;10571:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;10684:1;10670:16;;:2;:16;;;;10662:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10738:39;10759:4;10765:2;10769:7;10738:20;:39::i;:::-;10839:29;10856:1;10860:7;10839:8;:29::i;:::-;10898:1;10879:9;:15;10889:4;10879:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;10926:1;10909:9;:13;10919:2;10909:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;10956:2;10937:7;:16;10945:7;10937:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;10993:7;10989:2;10974:27;;10983:4;10974:27;;;;;;;;;;;;11012:38;11032:4;11038:2;11042:7;11012:19;:38::i;:::-;10452:605;;;:::o;11474:307::-;11624:8;11615:17;;:5;:17;;;;11607:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;11710:8;11672:18;:25;11691:5;11672:25;;;;;;;;;;;;;;;:35;11698:8;11672:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;11755:8;11733:41;;11748:5;11733:41;;;11765:8;11733:41;;;;;;:::i;:::-;;;;;;;;11474:307;;;:::o;6549:::-;6700:28;6710:4;6716:2;6720:7;6700:9;:28::i;:::-;6746:48;6769:4;6775:2;6779:7;6788:5;6746:22;:48::i;:::-;6738:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6549:307;;;;:::o;3388:92::-;3439:13;3464:9;;;;;;;;;;;;;;3388:92;:::o;2818:329::-;2891:13;2924:16;2932:7;2924;:16::i;:::-;2916:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;3003:21;3027:10;:8;:10::i;:::-;3003:34;;3078:1;3060:7;3054:21;:25;:86;;;;;;;;;;;;;;;;;3106:7;3115:18;:7;:16;:18::i;:::-;3089:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3054:86;3047:93;;;2818:329;;;:::o;13668:122::-;;;;:::o;14162:121::-;;;;:::o;12334:778::-;12484:4;12504:15;:2;:13;;;:15::i;:::-;12500:606;;;12555:2;12539:36;;;12576:12;:10;:12::i;:::-;12590:4;12596:7;12605:5;12539:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;12535:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12795:1;12778:6;:13;:18;12774:266;;;12820:60;;;;;;;;;;:::i;:::-;;;;;;;;12774:266;12992:6;12986:13;12977:6;12973:2;12969:15;12962:38;12535:519;12671:41;;;12661:51;;;:6;:51;;;;12654:58;;;;;12500:606;13091:4;13084:11;;12334:778;;;;;;;:::o;328:703:8:-;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;1175:320:5:-;1235:4;1487:1;1465:7;:19;;;:23;1458:30;;1175:320;;;:::o;7:410:12:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1354:139::-;1400:5;1438:6;1425:20;1416:29;;1454:33;1481:5;1454:33;:::i;:::-;1354:139;;;;:::o;1499:329::-;1558:6;1607:2;1595:9;1586:7;1582:23;1578:32;1575:119;;;1613:79;;:::i;:::-;1575:119;1733:1;1758:53;1803:7;1794:6;1783:9;1779:22;1758:53;:::i;:::-;1748:63;;1704:117;1499:329;;;;:::o;1834:474::-;1902:6;1910;1959:2;1947:9;1938:7;1934:23;1930:32;1927:119;;;1965:79;;:::i;:::-;1927:119;2085:1;2110:53;2155:7;2146:6;2135:9;2131:22;2110:53;:::i;:::-;2100:63;;2056:117;2212:2;2238:53;2283:7;2274:6;2263:9;2259:22;2238:53;:::i;:::-;2228:63;;2183:118;1834:474;;;;;:::o;2314:619::-;2391:6;2399;2407;2456:2;2444:9;2435:7;2431:23;2427:32;2424:119;;;2462:79;;:::i;:::-;2424:119;2582:1;2607:53;2652:7;2643:6;2632:9;2628:22;2607:53;:::i;:::-;2597:63;;2553:117;2709:2;2735:53;2780:7;2771:6;2760:9;2756:22;2735:53;:::i;:::-;2725:63;;2680:118;2837:2;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2808:118;2314:619;;;;;:::o;2939:943::-;3034:6;3042;3050;3058;3107:3;3095:9;3086:7;3082:23;3078:33;3075:120;;;3114:79;;:::i;:::-;3075:120;3234:1;3259:53;3304:7;3295:6;3284:9;3280:22;3259:53;:::i;:::-;3249:63;;3205:117;3361:2;3387:53;3432:7;3423:6;3412:9;3408:22;3387:53;:::i;:::-;3377:63;;3332:118;3489:2;3515:53;3560:7;3551:6;3540:9;3536:22;3515:53;:::i;:::-;3505:63;;3460:118;3645:2;3634:9;3630:18;3617:32;3676:18;3668:6;3665:30;3662:117;;;3698:79;;:::i;:::-;3662:117;3803:62;3857:7;3848:6;3837:9;3833:22;3803:62;:::i;:::-;3793:72;;3588:287;2939:943;;;;;;;:::o;3888:468::-;3953:6;3961;4010:2;3998:9;3989:7;3985:23;3981:32;3978:119;;;4016:79;;:::i;:::-;3978:119;4136:1;4161:53;4206:7;4197:6;4186:9;4182:22;4161:53;:::i;:::-;4151:63;;4107:117;4263:2;4289:50;4331:7;4322:6;4311:9;4307:22;4289:50;:::i;:::-;4279:60;;4234:115;3888:468;;;;;:::o;4362:474::-;4430:6;4438;4487:2;4475:9;4466:7;4462:23;4458:32;4455:119;;;4493:79;;:::i;:::-;4455:119;4613:1;4638:53;4683:7;4674:6;4663:9;4659:22;4638:53;:::i;:::-;4628:63;;4584:117;4740:2;4766:53;4811:7;4802:6;4791:9;4787:22;4766:53;:::i;:::-;4756:63;;4711:118;4362:474;;;;;:::o;4842:327::-;4900:6;4949:2;4937:9;4928:7;4924:23;4920:32;4917:119;;;4955:79;;:::i;:::-;4917:119;5075:1;5100:52;5144:7;5135:6;5124:9;5120:22;5100:52;:::i;:::-;5090:62;;5046:116;4842:327;;;;:::o;5175:349::-;5244:6;5293:2;5281:9;5272:7;5268:23;5264:32;5261:119;;;5299:79;;:::i;:::-;5261:119;5419:1;5444:63;5499:7;5490:6;5479:9;5475:22;5444:63;:::i;:::-;5434:73;;5390:127;5175:349;;;;:::o;5530:329::-;5589:6;5638:2;5626:9;5617:7;5613:23;5609:32;5606:119;;;5644:79;;:::i;:::-;5606:119;5764:1;5789:53;5834:7;5825:6;5814:9;5810:22;5789:53;:::i;:::-;5779:63;;5735:117;5530:329;;;;:::o;5865:118::-;5952:24;5970:5;5952:24;:::i;:::-;5947:3;5940:37;5865:118;;:::o;5989:109::-;6070:21;6085:5;6070:21;:::i;:::-;6065:3;6058:34;5989:109;;:::o;6104:360::-;6190:3;6218:38;6250:5;6218:38;:::i;:::-;6272:70;6335:6;6330:3;6272:70;:::i;:::-;6265:77;;6351:52;6396:6;6391:3;6384:4;6377:5;6373:16;6351:52;:::i;:::-;6428:29;6450:6;6428:29;:::i;:::-;6423:3;6419:39;6412:46;;6194:270;6104:360;;;;:::o;6470:364::-;6558:3;6586:39;6619:5;6586:39;:::i;:::-;6641:71;6705:6;6700:3;6641:71;:::i;:::-;6634:78;;6721:52;6766:6;6761:3;6754:4;6747:5;6743:16;6721:52;:::i;:::-;6798:29;6820:6;6798:29;:::i;:::-;6793:3;6789:39;6782:46;;6562:272;6470:364;;;;:::o;6840:377::-;6946:3;6974:39;7007:5;6974:39;:::i;:::-;7029:89;7111:6;7106:3;7029:89;:::i;:::-;7022:96;;7127:52;7172:6;7167:3;7160:4;7153:5;7149:16;7127:52;:::i;:::-;7204:6;7199:3;7195:16;7188:23;;6950:267;6840:377;;;;:::o;7223:366::-;7365:3;7386:67;7450:2;7445:3;7386:67;:::i;:::-;7379:74;;7462:93;7551:3;7462:93;:::i;:::-;7580:2;7575:3;7571:12;7564:19;;7223:366;;;:::o;7595:::-;7737:3;7758:67;7822:2;7817:3;7758:67;:::i;:::-;7751:74;;7834:93;7923:3;7834:93;:::i;:::-;7952:2;7947:3;7943:12;7936:19;;7595:366;;;:::o;7967:::-;8109:3;8130:67;8194:2;8189:3;8130:67;:::i;:::-;8123:74;;8206:93;8295:3;8206:93;:::i;:::-;8324:2;8319:3;8315:12;8308:19;;7967:366;;;:::o;8339:::-;8481:3;8502:67;8566:2;8561:3;8502:67;:::i;:::-;8495:74;;8578:93;8667:3;8578:93;:::i;:::-;8696:2;8691:3;8687:12;8680:19;;8339:366;;;:::o;8711:::-;8853:3;8874:67;8938:2;8933:3;8874:67;:::i;:::-;8867:74;;8950:93;9039:3;8950:93;:::i;:::-;9068:2;9063:3;9059:12;9052:19;;8711:366;;;:::o;9083:::-;9225:3;9246:67;9310:2;9305:3;9246:67;:::i;:::-;9239:74;;9322:93;9411:3;9322:93;:::i;:::-;9440:2;9435:3;9431:12;9424:19;;9083:366;;;:::o;9455:::-;9597:3;9618:67;9682:2;9677:3;9618:67;:::i;:::-;9611:74;;9694:93;9783:3;9694:93;:::i;:::-;9812:2;9807:3;9803:12;9796:19;;9455:366;;;:::o;9827:::-;9969:3;9990:67;10054:2;10049:3;9990:67;:::i;:::-;9983:74;;10066:93;10155:3;10066:93;:::i;:::-;10184:2;10179:3;10175:12;10168:19;;9827:366;;;:::o;10199:::-;10341:3;10362:67;10426:2;10421:3;10362:67;:::i;:::-;10355:74;;10438:93;10527:3;10438:93;:::i;:::-;10556:2;10551:3;10547:12;10540:19;;10199:366;;;:::o;10571:::-;10713:3;10734:67;10798:2;10793:3;10734:67;:::i;:::-;10727:74;;10810:93;10899:3;10810:93;:::i;:::-;10928:2;10923:3;10919:12;10912:19;;10571:366;;;:::o;10943:::-;11085:3;11106:67;11170:2;11165:3;11106:67;:::i;:::-;11099:74;;11182:93;11271:3;11182:93;:::i;:::-;11300:2;11295:3;11291:12;11284:19;;10943:366;;;:::o;11315:::-;11457:3;11478:67;11542:2;11537:3;11478:67;:::i;:::-;11471:74;;11554:93;11643:3;11554:93;:::i;:::-;11672:2;11667:3;11663:12;11656:19;;11315:366;;;:::o;11687:::-;11829:3;11850:67;11914:2;11909:3;11850:67;:::i;:::-;11843:74;;11926:93;12015:3;11926:93;:::i;:::-;12044:2;12039:3;12035:12;12028:19;;11687:366;;;:::o;12059:118::-;12146:24;12164:5;12146:24;:::i;:::-;12141:3;12134:37;12059:118;;:::o;12183:435::-;12363:3;12385:95;12476:3;12467:6;12385:95;:::i;:::-;12378:102;;12497:95;12588:3;12579:6;12497:95;:::i;:::-;12490:102;;12609:3;12602:10;;12183:435;;;;;:::o;12624:222::-;12717:4;12755:2;12744:9;12740:18;12732:26;;12768:71;12836:1;12825:9;12821:17;12812:6;12768:71;:::i;:::-;12624:222;;;;:::o;12852:640::-;13047:4;13085:3;13074:9;13070:19;13062:27;;13099:71;13167:1;13156:9;13152:17;13143:6;13099:71;:::i;:::-;13180:72;13248:2;13237:9;13233:18;13224:6;13180:72;:::i;:::-;13262;13330:2;13319:9;13315:18;13306:6;13262:72;:::i;:::-;13381:9;13375:4;13371:20;13366:2;13355:9;13351:18;13344:48;13409:76;13480:4;13471:6;13409:76;:::i;:::-;13401:84;;12852:640;;;;;;;:::o;13498:210::-;13585:4;13623:2;13612:9;13608:18;13600:26;;13636:65;13698:1;13687:9;13683:17;13674:6;13636:65;:::i;:::-;13498:210;;;;:::o;13714:313::-;13827:4;13865:2;13854:9;13850:18;13842:26;;13914:9;13908:4;13904:20;13900:1;13889:9;13885:17;13878:47;13942:78;14015:4;14006:6;13942:78;:::i;:::-;13934:86;;13714:313;;;;:::o;14033:419::-;14199:4;14237:2;14226:9;14222:18;14214:26;;14286:9;14280:4;14276:20;14272:1;14261:9;14257:17;14250:47;14314:131;14440:4;14314:131;:::i;:::-;14306:139;;14033:419;;;:::o;14458:::-;14624:4;14662:2;14651:9;14647:18;14639:26;;14711:9;14705:4;14701:20;14697:1;14686:9;14682:17;14675:47;14739:131;14865:4;14739:131;:::i;:::-;14731:139;;14458:419;;;:::o;14883:::-;15049:4;15087:2;15076:9;15072:18;15064:26;;15136:9;15130:4;15126:20;15122:1;15111:9;15107:17;15100:47;15164:131;15290:4;15164:131;:::i;:::-;15156:139;;14883:419;;;:::o;15308:::-;15474:4;15512:2;15501:9;15497:18;15489:26;;15561:9;15555:4;15551:20;15547:1;15536:9;15532:17;15525:47;15589:131;15715:4;15589:131;:::i;:::-;15581:139;;15308:419;;;:::o;15733:::-;15899:4;15937:2;15926:9;15922:18;15914:26;;15986:9;15980:4;15976:20;15972:1;15961:9;15957:17;15950:47;16014:131;16140:4;16014:131;:::i;:::-;16006:139;;15733:419;;;:::o;16158:::-;16324:4;16362:2;16351:9;16347:18;16339:26;;16411:9;16405:4;16401:20;16397:1;16386:9;16382:17;16375:47;16439:131;16565:4;16439:131;:::i;:::-;16431:139;;16158:419;;;:::o;16583:::-;16749:4;16787:2;16776:9;16772:18;16764:26;;16836:9;16830:4;16826:20;16822:1;16811:9;16807:17;16800:47;16864:131;16990:4;16864:131;:::i;:::-;16856:139;;16583:419;;;:::o;17008:::-;17174:4;17212:2;17201:9;17197:18;17189:26;;17261:9;17255:4;17251:20;17247:1;17236:9;17232:17;17225:47;17289:131;17415:4;17289:131;:::i;:::-;17281:139;;17008:419;;;:::o;17433:::-;17599:4;17637:2;17626:9;17622:18;17614:26;;17686:9;17680:4;17676:20;17672:1;17661:9;17657:17;17650:47;17714:131;17840:4;17714:131;:::i;:::-;17706:139;;17433:419;;;:::o;17858:::-;18024:4;18062:2;18051:9;18047:18;18039:26;;18111:9;18105:4;18101:20;18097:1;18086:9;18082:17;18075:47;18139:131;18265:4;18139:131;:::i;:::-;18131:139;;17858:419;;;:::o;18283:::-;18449:4;18487:2;18476:9;18472:18;18464:26;;18536:9;18530:4;18526:20;18522:1;18511:9;18507:17;18500:47;18564:131;18690:4;18564:131;:::i;:::-;18556:139;;18283:419;;;:::o;18708:::-;18874:4;18912:2;18901:9;18897:18;18889:26;;18961:9;18955:4;18951:20;18947:1;18936:9;18932:17;18925:47;18989:131;19115:4;18989:131;:::i;:::-;18981:139;;18708:419;;;:::o;19133:::-;19299:4;19337:2;19326:9;19322:18;19314:26;;19386:9;19380:4;19376:20;19372:1;19361:9;19357:17;19350:47;19414:131;19540:4;19414:131;:::i;:::-;19406:139;;19133:419;;;:::o;19558:222::-;19651:4;19689:2;19678:9;19674:18;19666:26;;19702:71;19770:1;19759:9;19755:17;19746:6;19702:71;:::i;:::-;19558:222;;;;:::o;19786:129::-;19820:6;19847:20;;:::i;:::-;19837:30;;19876:33;19904:4;19896:6;19876:33;:::i;:::-;19786:129;;;:::o;19921:75::-;19954:6;19987:2;19981:9;19971:19;;19921:75;:::o;20002:307::-;20063:4;20153:18;20145:6;20142:30;20139:56;;;20175:18;;:::i;:::-;20139:56;20213:29;20235:6;20213:29;:::i;:::-;20205:37;;20297:4;20291;20287:15;20279:23;;20002:307;;;:::o;20315:98::-;20366:6;20400:5;20394:12;20384:22;;20315:98;;;:::o;20419:99::-;20471:6;20505:5;20499:12;20489:22;;20419:99;;;:::o;20524:168::-;20607:11;20641:6;20636:3;20629:19;20681:4;20676:3;20672:14;20657:29;;20524:168;;;;:::o;20698:169::-;20782:11;20816:6;20811:3;20804:19;20856:4;20851:3;20847:14;20832:29;;20698:169;;;;:::o;20873:148::-;20975:11;21012:3;20997:18;;20873:148;;;;:::o;21027:305::-;21067:3;21086:20;21104:1;21086:20;:::i;:::-;21081:25;;21120:20;21138:1;21120:20;:::i;:::-;21115:25;;21274:1;21206:66;21202:74;21199:1;21196:81;21193:107;;;21280:18;;:::i;:::-;21193:107;21324:1;21321;21317:9;21310:16;;21027:305;;;;:::o;21338:185::-;21378:1;21395:20;21413:1;21395:20;:::i;:::-;21390:25;;21429:20;21447:1;21429:20;:::i;:::-;21424:25;;21468:1;21458:35;;21473:18;;:::i;:::-;21458:35;21515:1;21512;21508:9;21503:14;;21338:185;;;;:::o;21529:191::-;21569:4;21589:20;21607:1;21589:20;:::i;:::-;21584:25;;21623:20;21641:1;21623:20;:::i;:::-;21618:25;;21662:1;21659;21656:8;21653:34;;;21667:18;;:::i;:::-;21653:34;21712:1;21709;21705:9;21697:17;;21529:191;;;;:::o;21726:96::-;21763:7;21792:24;21810:5;21792:24;:::i;:::-;21781:35;;21726:96;;;:::o;21828:90::-;21862:7;21905:5;21898:13;21891:21;21880:32;;21828:90;;;:::o;21924:149::-;21960:7;22000:66;21993:5;21989:78;21978:89;;21924:149;;;:::o;22079:126::-;22116:7;22156:42;22149:5;22145:54;22134:65;;22079:126;;;:::o;22211:77::-;22248:7;22277:5;22266:16;;22211:77;;;:::o;22294:154::-;22378:6;22373:3;22368;22355:30;22440:1;22431:6;22426:3;22422:16;22415:27;22294:154;;;:::o;22454:307::-;22522:1;22532:113;22546:6;22543:1;22540:13;22532:113;;;22631:1;22626:3;22622:11;22616:18;22612:1;22607:3;22603:11;22596:39;22568:2;22565:1;22561:10;22556:15;;22532:113;;;22663:6;22660:1;22657:13;22654:101;;;22743:1;22734:6;22729:3;22725:16;22718:27;22654:101;22503:258;22454:307;;;:::o;22767:320::-;22811:6;22848:1;22842:4;22838:12;22828:22;;22895:1;22889:4;22885:12;22916:18;22906:81;;22972:4;22964:6;22960:17;22950:27;;22906:81;23034:2;23026:6;23023:14;23003:18;23000:38;22997:84;;;23053:18;;:::i;:::-;22997:84;22818:269;22767:320;;;:::o;23093:281::-;23176:27;23198:4;23176:27;:::i;:::-;23168:6;23164:40;23306:6;23294:10;23291:22;23270:18;23258:10;23255:34;23252:62;23249:88;;;23317:18;;:::i;:::-;23249:88;23357:10;23353:2;23346:22;23136:238;23093:281;;:::o;23380:233::-;23419:3;23442:24;23460:5;23442:24;:::i;:::-;23433:33;;23488:66;23481:5;23478:77;23475:103;;;23558:18;;:::i;:::-;23475:103;23605:1;23598:5;23594:13;23587:20;;23380:233;;;:::o;23619:176::-;23651:1;23668:20;23686:1;23668:20;:::i;:::-;23663:25;;23702:20;23720:1;23702:20;:::i;:::-;23697:25;;23741:1;23731:35;;23746:18;;:::i;:::-;23731:35;23787:1;23784;23780:9;23775:14;;23619:176;;;;:::o;23801:180::-;23849:77;23846:1;23839:88;23946:4;23943:1;23936:15;23970:4;23967:1;23960:15;23987:180;24035:77;24032:1;24025:88;24132:4;24129:1;24122:15;24156:4;24153:1;24146:15;24173:180;24221:77;24218:1;24211:88;24318:4;24315:1;24308:15;24342:4;24339:1;24332:15;24359:180;24407:77;24404:1;24397:88;24504:4;24501:1;24494:15;24528:4;24525:1;24518:15;24545:180;24593:77;24590:1;24583:88;24690:4;24687:1;24680:15;24714:4;24711:1;24704:15;24731:117;24840:1;24837;24830:12;24854:117;24963:1;24960;24953:12;24977:117;25086:1;25083;25076:12;25100:117;25209:1;25206;25199:12;25223:102;25264:6;25315:2;25311:7;25306:2;25299:5;25295:14;25291:28;25281:38;;25223:102;;;:::o;25331:237::-;25471:34;25467:1;25459:6;25455:14;25448:58;25540:20;25535:2;25527:6;25523:15;25516:45;25331:237;:::o;25574:224::-;25714:34;25710:1;25702:6;25698:14;25691:58;25783:7;25778:2;25770:6;25766:15;25759:32;25574:224;:::o;25804:223::-;25944:34;25940:1;25932:6;25928:14;25921:58;26013:6;26008:2;26000:6;25996:15;25989:31;25804:223;:::o;26033:175::-;26173:27;26169:1;26161:6;26157:14;26150:51;26033:175;:::o;26214:231::-;26354:34;26350:1;26342:6;26338:14;26331:58;26423:14;26418:2;26410:6;26406:15;26399:39;26214:231;:::o;26451:243::-;26591:34;26587:1;26579:6;26575:14;26568:58;26660:26;26655:2;26647:6;26643:15;26636:51;26451:243;:::o;26700:229::-;26840:34;26836:1;26828:6;26824:14;26817:58;26909:12;26904:2;26896:6;26892:15;26885:37;26700:229;:::o;26935:228::-;27075:34;27071:1;27063:6;27059:14;27052:58;27144:11;27139:2;27131:6;27127:15;27120:36;26935:228;:::o;27169:236::-;27309:34;27305:1;27297:6;27293:14;27286:58;27378:19;27373:2;27365:6;27361:15;27354:44;27169:236;:::o;27411:231::-;27551:34;27547:1;27539:6;27535:14;27528:58;27620:14;27615:2;27607:6;27603:15;27596:39;27411:231;:::o;27648:234::-;27788:34;27784:1;27776:6;27772:14;27765:58;27857:17;27852:2;27844:6;27840:15;27833:42;27648:234;:::o;27888:220::-;28028:34;28024:1;28016:6;28012:14;28005:58;28097:3;28092:2;28084:6;28080:15;28073:28;27888:220;:::o;28114:236::-;28254:34;28250:1;28242:6;28238:14;28231:58;28323:19;28318:2;28310:6;28306:15;28299:44;28114:236;:::o;28356:122::-;28429:24;28447:5;28429:24;:::i;:::-;28422:5;28419:35;28409:63;;28468:1;28465;28458:12;28409:63;28356:122;:::o;28484:116::-;28554:21;28569:5;28554:21;:::i;:::-;28547:5;28544:32;28534:60;;28590:1;28587;28580:12;28534:60;28484:116;:::o;28606:120::-;28678:23;28695:5;28678:23;:::i;:::-;28671:5;28668:34;28658:62;;28716:1;28713;28706:12;28658:62;28606:120;:::o;28732:122::-;28805:24;28823:5;28805:24;:::i;:::-;28798:5;28795:35;28785:63;;28844:1;28841;28834:12;28785:63;28732:122;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "1943600",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"approve(address,uint256)": "infinite",
"balanceOf(address)": "2924",
"getApproved(uint256)": "5205",
"isApprovedForAll(address,address)": "infinite",
"name()": "infinite",
"ownerOf(uint256)": "3000",
"safeTransferFrom(address,address,uint256)": "infinite",
"safeTransferFrom(address,address,uint256,bytes)": "infinite",
"setApprovalForAll(address,bool)": "infinite",
"supportsInterface(bytes4)": "774",
"symbol()": "infinite",
"tokenURI(uint256)": "infinite",
"transferFrom(address,address,uint256)": "infinite"
},
"internal": {
"awardItem(address,string memory)": "infinite"
}
},
"methodIdentifiers": {
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"getApproved(uint256)": "081812fc",
"isApprovedForAll(address,address)": "e985e9c5",
"name()": "06fdde03",
"ownerOf(uint256)": "6352211e",
"safeTransferFrom(address,address,uint256)": "42842e0e",
"safeTransferFrom(address,address,uint256,bytes)": "b88d4fde",
"setApprovalForAll(address,bool)": "a22cb465",
"supportsInterface(bytes4)": "01ffc9a7",
"symbol()": "95d89b41",
"tokenURI(uint256)": "c87b56dd",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "approved",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"indexed": false,
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "ApprovalForAll",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "approve",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "getApproved",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"name": "isApprovedForAll",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "ownerOf",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "_data",
"type": "bytes"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "setApprovalForAll",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "tokenURI",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "approved",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"indexed": false,
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "ApprovalForAll",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "approve",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "getApproved",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"name": "isApprovedForAll",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "ownerOf",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "_data",
"type": "bytes"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "setApprovalForAll",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "tokenURI",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {
"approve(address,uint256)": {
"details": "See {IERC721-approve}."
},
"balanceOf(address)": {
"details": "See {IERC721-balanceOf}."
},
"getApproved(uint256)": {
"details": "See {IERC721-getApproved}."
},
"isApprovedForAll(address,address)": {
"details": "See {IERC721-isApprovedForAll}."
},
"name()": {
"details": "See {IERC721Metadata-name}."
},
"ownerOf(uint256)": {
"details": "See {IERC721-ownerOf}."
},
"safeTransferFrom(address,address,uint256)": {
"details": "See {IERC721-safeTransferFrom}."
},
"safeTransferFrom(address,address,uint256,bytes)": {
"details": "See {IERC721-safeTransferFrom}."
},
"setApprovalForAll(address,bool)": {
"details": "See {IERC721-setApprovalForAll}."
},
"supportsInterface(bytes4)": {
"details": "See {IERC165-supportsInterface}."
},
"symbol()": {
"details": "See {IERC721Metadata-symbol}."
},
"tokenURI(uint256)": {
"details": "See {IERC721Metadata-tokenURI}."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC721-transferFrom}."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/NFT.sol": "MonkeNPC"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"@openzeppelin/contracts/token/ERC721/ERC721.sol": {
"keccak256": "0x11b84bb56dc112a6590bfe3e0efa118aa1b5891132342200d04c4ef544cb93de",
"license": "MIT",
"urls": [
"bzz-raw://cbc4803332d45dff58f865ed21c942fe4668e47cc7196c8dfe84102040b1d70f",
"dweb:/ipfs/QmXhZLsocznRWCSyhjo3vo66Z1VsuuNptAVb6ASPYsWtGx"
]
},
"@openzeppelin/contracts/token/ERC721/IERC721.sol": {
"keccak256": "0x516a22876c1fab47f49b1bc22b4614491cd05338af8bd2e7b382da090a079990",
"license": "MIT",
"urls": [
"bzz-raw://a439187f7126d31add4557f82d8aed6be0162007cd7182c48fd934dbab8f3849",
"dweb:/ipfs/QmRPLguRFvrRJS7r6F1bcLvsx6q1VrgjEpZafyeL8D7xZh"
]
},
"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol": {
"keccak256": "0xd5fa74b4fb323776fa4a8158800fec9d5ac0fec0d6dd046dd93798632ada265f",
"license": "MIT",
"urls": [
"bzz-raw://33017a30a99cc5411a9e376622c31fc4a55cfc6a335e2f57f00cbf24a817ff3f",
"dweb:/ipfs/QmWNQtWTPhA7Lo8nbxbc8KFMvZwbFYB8fSeEQ3vuapSV4a"
]
},
"@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol": {
"keccak256": "0x1cbe42915bc66227970fe99bc0f783eb1de30f2b48f984af01ad45edb9658698",
"license": "MIT",
"urls": [
"bzz-raw://2baa08eb67d9da46e6c4c049f17b7684a1c68c5268d0f466cfa0eb23ce2bf9b0",
"dweb:/ipfs/Qmdnj8zj4PfErB2HM2eKmDt7FrqrhggsZ6Qd8MpD593tgj"
]
},
"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol": {
"keccak256": "0x75b829ff2f26c14355d1cba20e16fe7b29ca58eb5fef665ede48bc0f9c6c74b9",
"license": "MIT",
"urls": [
"bzz-raw://a0a107160525724f9e1bbbab031defc2f298296dd9e331f16a6f7130cec32146",
"dweb:/ipfs/QmemujxSd7gX8A9M8UwmNbz4Ms3U9FG9QfudUgxwvTmPWf"
]
},
"@openzeppelin/contracts/utils/Address.sol": {
"keccak256": "0x2ccf9d2313a313d41a791505f2b5abfdc62191b5d4334f7f7a82691c088a1c87",
"license": "MIT",
"urls": [
"bzz-raw://b3a57d0854b2fdce6ebff933a48dca2445643d1eccfc27f00292e937f26c6a58",
"dweb:/ipfs/QmW45rZooS9TqR4YXUbjRbtf2Bpb5ouSarBvfW1LdGprvV"
]
},
"@openzeppelin/contracts/utils/Context.sol": {
"keccak256": "0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7",
"license": "MIT",
"urls": [
"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92",
"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3"
]
},
"@openzeppelin/contracts/utils/Counters.sol": {
"keccak256": "0xf0018c2440fbe238dd3a8732fa8e17a0f9dce84d31451dc8a32f6d62b349c9f1",
"license": "MIT",
"urls": [
"bzz-raw://59e1c62884d55b70f3ae5432b44bb3166ad71ae3acd19c57ab6ddc3c87c325ee",
"dweb:/ipfs/QmezuXg5GK5oeA4F91EZhozBFekhq5TD966bHPH18cCqhu"
]
},
"@openzeppelin/contracts/utils/Strings.sol": {
"keccak256": "0x32c202bd28995dd20c4347b7c6467a6d3241c74c8ad3edcbb610cd9205916c45",
"license": "MIT",
"urls": [
"bzz-raw://8179c356adb19e70d6b31a1eedc8c5c7f0c00e669e2540f4099e3844c6074d30",
"dweb:/ipfs/QmWFbivarEobbqhS1go64ootVuHfVohBseerYy9FTEd1W2"
]
},
"@openzeppelin/contracts/utils/introspection/ERC165.sol": {
"keccak256": "0xd10975de010d89fd1c78dc5e8a9a7e7f496198085c151648f20cba166b32582b",
"license": "MIT",
"urls": [
"bzz-raw://fb0048dee081f6fffa5f74afc3fb328483c2a30504e94a0ddd2a5114d731ec4d",
"dweb:/ipfs/QmZptt1nmYoA5SgjwnSgWqgUSDgm4q52Yos3xhnMv3MV43"
]
},
"@openzeppelin/contracts/utils/introspection/IERC165.sol": {
"keccak256": "0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1",
"license": "MIT",
"urls": [
"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f",
"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy"
]
},
"contracts/NFT.sol": {
"keccak256": "0x739d97ebe64de910b5eeb28df4e3c345d4115abc457a3275404398f7850e8aaa",
"license": "MIT",
"urls": [
"bzz-raw://f2d04fe371058d50c3f66299802d35644f6a679f7d77c38a1e99e8a9701d5801",
"dweb:/ipfs/QmWR7aEKXRKLpGiwmRCfiwzshEyh5fewwHAAG77xhX5x9q"
]
}
},
"version": 1
}
// contracts/GameItem.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
contract MonkeNPC is ERC721URIStorage {
using Counters for Counters.Counter;
Counters.Counter private tokenIds;
constructor() ERC721("True Art", "MONKE") {
awardItem(0x9b78dcf2FF15C32F1E33673268e5aC0f5270DA95, "https://i.ytimg.com/vi/eMonGZEB0Ik/maxresdefault.jpg");
}
function awardItem(address player, string memory tokenURI)
private
returns (uint256)
{
uint256 newItemId = tokenIds.current();
_mint(player, newItemId);
_setTokenURI(newItemId, tokenURI);
tokenIds.increment();
return newItemId;
}
}
This file has been truncated, but you can view the full file.
{
"id": "b55beb66aeb7cbfc6e5e5a0451785e85",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.7",
"solcLongVersion": "0.8.7+commit.e28d00a7",
"input": {
"language": "Solidity",
"sources": {
"contracts/NFT.sol": {
"content": "// contracts/GameItem.sol\n// SPDX-License-Identifier: MIT\npragma solidity ^0.8.0;\n\nimport \"@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol\";\nimport \"@openzeppelin/contracts/utils/Counters.sol\";\n\ncontract MonkeNPC is ERC721URIStorage {\n using Counters for Counters.Counter;\n Counters.Counter private tokenIds;\n\n constructor() ERC721(\"True Art\", \"MONKE\") {\n awardItem(0x9b78dcf2FF15C32F1E33673268e5aC0f5270DA95, \"https://i.ytimg.com/vi/eMonGZEB0Ik/maxresdefault.jpg\");\n }\n\n function awardItem(address player, string memory tokenURI)\n private\n returns (uint256)\n {\n uint256 newItemId = tokenIds.current();\n _mint(player, newItemId);\n _setTokenURI(newItemId, tokenURI);\n\n tokenIds.increment();\n return newItemId;\n }\n}\n"
},
"@openzeppelin/contracts/utils/Counters.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @title Counters\n * @author Matt Condon (@shrugs)\n * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number\n * of elements in a mapping, issuing ERC721 ids, or counting request ids.\n *\n * Include with `using Counters for Counters.Counter;`\n */\nlibrary Counters {\n struct Counter {\n // This variable should never be directly accessed by users of the library: interactions must be restricted to\n // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add\n // this feature: see https://github.com/ethereum/solidity/issues/4637\n uint256 _value; // default: 0\n }\n\n function current(Counter storage counter) internal view returns (uint256) {\n return counter._value;\n }\n\n function increment(Counter storage counter) internal {\n unchecked {\n counter._value += 1;\n }\n }\n\n function decrement(Counter storage counter) internal {\n uint256 value = counter._value;\n require(value > 0, \"Counter: decrement overflow\");\n unchecked {\n counter._value = value - 1;\n }\n }\n\n function reset(Counter storage counter) internal {\n counter._value = 0;\n }\n}\n"
},
"@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721URIStorage.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../ERC721.sol\";\n\n/**\n * @dev ERC721 token with storage based token URI management.\n */\nabstract contract ERC721URIStorage is ERC721 {\n using Strings for uint256;\n\n // Optional mapping for token URIs\n mapping(uint256 => string) private _tokenURIs;\n\n /**\n * @dev See {IERC721Metadata-tokenURI}.\n */\n function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {\n require(_exists(tokenId), \"ERC721URIStorage: URI query for nonexistent token\");\n\n string memory _tokenURI = _tokenURIs[tokenId];\n string memory base = _baseURI();\n\n // If there is no base URI, return the token URI.\n if (bytes(base).length == 0) {\n return _tokenURI;\n }\n // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).\n if (bytes(_tokenURI).length > 0) {\n return string(abi.encodePacked(base, _tokenURI));\n }\n\n return super.tokenURI(tokenId);\n }\n\n /**\n * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.\n *\n * Requirements:\n *\n * - `tokenId` must exist.\n */\n function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {\n require(_exists(tokenId), \"ERC721URIStorage: URI set of nonexistent token\");\n _tokenURIs[tokenId] = _tokenURI;\n }\n\n /**\n * @dev Destroys `tokenId`.\n * The approval is cleared when the token is burned.\n *\n * Requirements:\n *\n * - `tokenId` must exist.\n *\n * Emits a {Transfer} event.\n */\n function _burn(uint256 tokenId) internal virtual override {\n super._burn(tokenId);\n\n if (bytes(_tokenURIs[tokenId]).length != 0) {\n delete _tokenURIs[tokenId];\n }\n }\n}\n"
},
"@openzeppelin/contracts/token/ERC721/ERC721.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./IERC721.sol\";\nimport \"./IERC721Receiver.sol\";\nimport \"./extensions/IERC721Metadata.sol\";\nimport \"../../utils/Address.sol\";\nimport \"../../utils/Context.sol\";\nimport \"../../utils/Strings.sol\";\nimport \"../../utils/introspection/ERC165.sol\";\n\n/**\n * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including\n * the Metadata extension, but not including the Enumerable extension, which is available separately as\n * {ERC721Enumerable}.\n */\ncontract ERC721 is Context, ERC165, IERC721, IERC721Metadata {\n using Address for address;\n using Strings for uint256;\n\n // Token name\n string private _name;\n\n // Token symbol\n string private _symbol;\n\n // Mapping from token ID to owner address\n mapping(uint256 => address) private _owners;\n\n // Mapping owner address to token count\n mapping(address => uint256) private _balances;\n\n // Mapping from token ID to approved address\n mapping(uint256 => address) private _tokenApprovals;\n\n // Mapping from owner to operator approvals\n mapping(address => mapping(address => bool)) private _operatorApprovals;\n\n /**\n * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.\n */\n constructor(string memory name_, string memory symbol_) {\n _name = name_;\n _symbol = symbol_;\n }\n\n /**\n * @dev See {IERC165-supportsInterface}.\n */\n function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {\n return\n interfaceId == type(IERC721).interfaceId ||\n interfaceId == type(IERC721Metadata).interfaceId ||\n super.supportsInterface(interfaceId);\n }\n\n /**\n * @dev See {IERC721-balanceOf}.\n */\n function balanceOf(address owner) public view virtual override returns (uint256) {\n require(owner != address(0), \"ERC721: balance query for the zero address\");\n return _balances[owner];\n }\n\n /**\n * @dev See {IERC721-ownerOf}.\n */\n function ownerOf(uint256 tokenId) public view virtual override returns (address) {\n address owner = _owners[tokenId];\n require(owner != address(0), \"ERC721: owner query for nonexistent token\");\n return owner;\n }\n\n /**\n * @dev See {IERC721Metadata-name}.\n */\n function name() public view virtual override returns (string memory) {\n return _name;\n }\n\n /**\n * @dev See {IERC721Metadata-symbol}.\n */\n function symbol() public view virtual override returns (string memory) {\n return _symbol;\n }\n\n /**\n * @dev See {IERC721Metadata-tokenURI}.\n */\n function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {\n require(_exists(tokenId), \"ERC721Metadata: URI query for nonexistent token\");\n\n string memory baseURI = _baseURI();\n return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : \"\";\n }\n\n /**\n * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each\n * token will be the concatenation of the `baseURI` and the `tokenId`. Empty\n * by default, can be overriden in child contracts.\n */\n function _baseURI() internal view virtual returns (string memory) {\n return \"\";\n }\n\n /**\n * @dev See {IERC721-approve}.\n */\n function approve(address to, uint256 tokenId) public virtual override {\n address owner = ERC721.ownerOf(tokenId);\n require(to != owner, \"ERC721: approval to current owner\");\n\n require(\n _msgSender() == owner || isApprovedForAll(owner, _msgSender()),\n \"ERC721: approve caller is not owner nor approved for all\"\n );\n\n _approve(to, tokenId);\n }\n\n /**\n * @dev See {IERC721-getApproved}.\n */\n function getApproved(uint256 tokenId) public view virtual override returns (address) {\n require(_exists(tokenId), \"ERC721: approved query for nonexistent token\");\n\n return _tokenApprovals[tokenId];\n }\n\n /**\n * @dev See {IERC721-setApprovalForAll}.\n */\n function setApprovalForAll(address operator, bool approved) public virtual override {\n _setApprovalForAll(_msgSender(), operator, approved);\n }\n\n /**\n * @dev See {IERC721-isApprovedForAll}.\n */\n function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {\n return _operatorApprovals[owner][operator];\n }\n\n /**\n * @dev See {IERC721-transferFrom}.\n */\n function transferFrom(\n address from,\n address to,\n uint256 tokenId\n ) public virtual override {\n //solhint-disable-next-line max-line-length\n require(_isApprovedOrOwner(_msgSender(), tokenId), \"ERC721: transfer caller is not owner nor approved\");\n\n _transfer(from, to, tokenId);\n }\n\n /**\n * @dev See {IERC721-safeTransferFrom}.\n */\n function safeTransferFrom(\n address from,\n address to,\n uint256 tokenId\n ) public virtual override {\n safeTransferFrom(from, to, tokenId, \"\");\n }\n\n /**\n * @dev See {IERC721-safeTransferFrom}.\n */\n function safeTransferFrom(\n address from,\n address to,\n uint256 tokenId,\n bytes memory _data\n ) public virtual override {\n require(_isApprovedOrOwner(_msgSender(), tokenId), \"ERC721: transfer caller is not owner nor approved\");\n _safeTransfer(from, to, tokenId, _data);\n }\n\n /**\n * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\n * are aware of the ERC721 protocol to prevent tokens from being forever locked.\n *\n * `_data` is additional data, it has no specified format and it is sent in call to `to`.\n *\n * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.\n * implement alternative mechanisms to perform token transfer, such as signature-based.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `tokenId` token must exist and be owned by `from`.\n * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n *\n * Emits a {Transfer} event.\n */\n function _safeTransfer(\n address from,\n address to,\n uint256 tokenId,\n bytes memory _data\n ) internal virtual {\n _transfer(from, to, tokenId);\n require(_checkOnERC721Received(from, to, tokenId, _data), \"ERC721: transfer to non ERC721Receiver implementer\");\n }\n\n /**\n * @dev Returns whether `tokenId` exists.\n *\n * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.\n *\n * Tokens start existing when they are minted (`_mint`),\n * and stop existing when they are burned (`_burn`).\n */\n function _exists(uint256 tokenId) internal view virtual returns (bool) {\n return _owners[tokenId] != address(0);\n }\n\n /**\n * @dev Returns whether `spender` is allowed to manage `tokenId`.\n *\n * Requirements:\n *\n * - `tokenId` must exist.\n */\n function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {\n require(_exists(tokenId), \"ERC721: operator query for nonexistent token\");\n address owner = ERC721.ownerOf(tokenId);\n return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));\n }\n\n /**\n * @dev Safely mints `tokenId` and transfers it to `to`.\n *\n * Requirements:\n *\n * - `tokenId` must not exist.\n * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n *\n * Emits a {Transfer} event.\n */\n function _safeMint(address to, uint256 tokenId) internal virtual {\n _safeMint(to, tokenId, \"\");\n }\n\n /**\n * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is\n * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.\n */\n function _safeMint(\n address to,\n uint256 tokenId,\n bytes memory _data\n ) internal virtual {\n _mint(to, tokenId);\n require(\n _checkOnERC721Received(address(0), to, tokenId, _data),\n \"ERC721: transfer to non ERC721Receiver implementer\"\n );\n }\n\n /**\n * @dev Mints `tokenId` and transfers it to `to`.\n *\n * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible\n *\n * Requirements:\n *\n * - `tokenId` must not exist.\n * - `to` cannot be the zero address.\n *\n * Emits a {Transfer} event.\n */\n function _mint(address to, uint256 tokenId) internal virtual {\n require(to != address(0), \"ERC721: mint to the zero address\");\n require(!_exists(tokenId), \"ERC721: token already minted\");\n\n _beforeTokenTransfer(address(0), to, tokenId);\n\n _balances[to] += 1;\n _owners[tokenId] = to;\n\n emit Transfer(address(0), to, tokenId);\n\n _afterTokenTransfer(address(0), to, tokenId);\n }\n\n /**\n * @dev Destroys `tokenId`.\n * The approval is cleared when the token is burned.\n *\n * Requirements:\n *\n * - `tokenId` must exist.\n *\n * Emits a {Transfer} event.\n */\n function _burn(uint256 tokenId) internal virtual {\n address owner = ERC721.ownerOf(tokenId);\n\n _beforeTokenTransfer(owner, address(0), tokenId);\n\n // Clear approvals\n _approve(address(0), tokenId);\n\n _balances[owner] -= 1;\n delete _owners[tokenId];\n\n emit Transfer(owner, address(0), tokenId);\n\n _afterTokenTransfer(owner, address(0), tokenId);\n }\n\n /**\n * @dev Transfers `tokenId` from `from` to `to`.\n * As opposed to {transferFrom}, this imposes no restrictions on msg.sender.\n *\n * Requirements:\n *\n * - `to` cannot be the zero address.\n * - `tokenId` token must be owned by `from`.\n *\n * Emits a {Transfer} event.\n */\n function _transfer(\n address from,\n address to,\n uint256 tokenId\n ) internal virtual {\n require(ERC721.ownerOf(tokenId) == from, \"ERC721: transfer from incorrect owner\");\n require(to != address(0), \"ERC721: transfer to the zero address\");\n\n _beforeTokenTransfer(from, to, tokenId);\n\n // Clear approvals from the previous owner\n _approve(address(0), tokenId);\n\n _balances[from] -= 1;\n _balances[to] += 1;\n _owners[tokenId] = to;\n\n emit Transfer(from, to, tokenId);\n\n _afterTokenTransfer(from, to, tokenId);\n }\n\n /**\n * @dev Approve `to` to operate on `tokenId`\n *\n * Emits a {Approval} event.\n */\n function _approve(address to, uint256 tokenId) internal virtual {\n _tokenApprovals[tokenId] = to;\n emit Approval(ERC721.ownerOf(tokenId), to, tokenId);\n }\n\n /**\n * @dev Approve `operator` to operate on all of `owner` tokens\n *\n * Emits a {ApprovalForAll} event.\n */\n function _setApprovalForAll(\n address owner,\n address operator,\n bool approved\n ) internal virtual {\n require(owner != operator, \"ERC721: approve to caller\");\n _operatorApprovals[owner][operator] = approved;\n emit ApprovalForAll(owner, operator, approved);\n }\n\n /**\n * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.\n * The call is not executed if the target address is not a contract.\n *\n * @param from address representing the previous owner of the given token ID\n * @param to target address that will receive the tokens\n * @param tokenId uint256 ID of the token to be transferred\n * @param _data bytes optional data to send along with the call\n * @return bool whether the call correctly returned the expected magic value\n */\n function _checkOnERC721Received(\n address from,\n address to,\n uint256 tokenId,\n bytes memory _data\n ) private returns (bool) {\n if (to.isContract()) {\n try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {\n return retval == IERC721Receiver.onERC721Received.selector;\n } catch (bytes memory reason) {\n if (reason.length == 0) {\n revert(\"ERC721: transfer to non ERC721Receiver implementer\");\n } else {\n assembly {\n revert(add(32, reason), mload(reason))\n }\n }\n }\n } else {\n return true;\n }\n }\n\n /**\n * @dev Hook that is called before any token transfer. This includes minting\n * and burning.\n *\n * Calling conditions:\n *\n * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be\n * transferred to `to`.\n * - When `from` is zero, `tokenId` will be minted for `to`.\n * - When `to` is zero, ``from``'s `tokenId` will be burned.\n * - `from` and `to` are never both zero.\n *\n * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n */\n function _beforeTokenTransfer(\n address from,\n address to,\n uint256 tokenId\n ) internal virtual {}\n\n /**\n * @dev Hook that is called after any transfer of tokens. This includes\n * minting and burning.\n *\n * Calling conditions:\n *\n * - when `from` and `to` are both non-zero.\n * - `from` and `to` are never both zero.\n *\n * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n */\n function _afterTokenTransfer(\n address from,\n address to,\n uint256 tokenId\n ) internal virtual {}\n}\n"
},
"@openzeppelin/contracts/utils/introspection/ERC165.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./IERC165.sol\";\n\n/**\n * @dev Implementation of the {IERC165} interface.\n *\n * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check\n * for the additional interface id that will be supported. For example:\n *\n * ```solidity\n * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);\n * }\n * ```\n *\n * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.\n */\nabstract contract ERC165 is IERC165 {\n /**\n * @dev See {IERC165-supportsInterface}.\n */\n function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n return interfaceId == type(IERC165).interfaceId;\n }\n}\n"
},
"@openzeppelin/contracts/utils/Strings.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev String operations.\n */\nlibrary Strings {\n bytes16 private constant _HEX_SYMBOLS = \"0123456789abcdef\";\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` decimal representation.\n */\n function toString(uint256 value) internal pure returns (string memory) {\n // Inspired by OraclizeAPI's implementation - MIT licence\n // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol\n\n if (value == 0) {\n return \"0\";\n }\n uint256 temp = value;\n uint256 digits;\n while (temp != 0) {\n digits++;\n temp /= 10;\n }\n bytes memory buffer = new bytes(digits);\n while (value != 0) {\n digits -= 1;\n buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));\n value /= 10;\n }\n return string(buffer);\n }\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.\n */\n function toHexString(uint256 value) internal pure returns (string memory) {\n if (value == 0) {\n return \"0x00\";\n }\n uint256 temp = value;\n uint256 length = 0;\n while (temp != 0) {\n length++;\n temp >>= 8;\n }\n return toHexString(value, length);\n }\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.\n */\n function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {\n bytes memory buffer = new bytes(2 * length + 2);\n buffer[0] = \"0\";\n buffer[1] = \"x\";\n for (uint256 i = 2 * length + 1; i > 1; --i) {\n buffer[i] = _HEX_SYMBOLS[value & 0xf];\n value >>= 4;\n }\n require(value == 0, \"Strings: hex length insufficient\");\n return string(buffer);\n }\n}\n"
},
"@openzeppelin/contracts/utils/Context.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Provides information about the current execution context, including the\n * sender of the transaction and its data. While these are generally available\n * via msg.sender and msg.data, they should not be accessed in such a direct\n * manner, since when dealing with meta-transactions the account sending and\n * paying for execution may not be the actual sender (as far as an application\n * is concerned).\n *\n * This contract is only required for intermediate, library-like contracts.\n */\nabstract contract Context {\n function _msgSender() internal view virtual returns (address) {\n return msg.sender;\n }\n\n function _msgData() internal view virtual returns (bytes calldata) {\n return msg.data;\n }\n}\n"
},
"@openzeppelin/contracts/utils/Address.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)\n\npragma solidity ^0.8.1;\n\n/**\n * @dev Collection of functions related to the address type\n */\nlibrary Address {\n /**\n * @dev Returns true if `account` is a contract.\n *\n * [IMPORTANT]\n * ====\n * It is unsafe to assume that an address for which this function returns\n * false is an externally-owned account (EOA) and not a contract.\n *\n * Among others, `isContract` will return false for the following\n * types of addresses:\n *\n * - an externally-owned account\n * - a contract in construction\n * - an address where a contract will be created\n * - an address where a contract lived, but was destroyed\n * ====\n *\n * [IMPORTANT]\n * ====\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\n *\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\n * constructor.\n * ====\n */\n function isContract(address account) internal view returns (bool) {\n // This method relies on extcodesize/address.code.length, which returns 0\n // for contracts in construction, since the code is only stored at the end\n // of the constructor execution.\n\n return account.code.length > 0;\n }\n\n /**\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n * `recipient`, forwarding all available gas and reverting on errors.\n *\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\n * imposed by `transfer`, making them unable to receive funds via\n * `transfer`. {sendValue} removes this limitation.\n *\n * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n *\n * IMPORTANT: because control is transferred to `recipient`, care must be\n * taken to not create reentrancy vulnerabilities. Consider using\n * {ReentrancyGuard} or the\n * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\n */\n function sendValue(address payable recipient, uint256 amount) internal {\n require(address(this).balance >= amount, \"Address: insufficient balance\");\n\n (bool success, ) = recipient.call{value: amount}(\"\");\n require(success, \"Address: unable to send value, recipient may have reverted\");\n }\n\n /**\n * @dev Performs a Solidity function call using a low level `call`. A\n * plain `call` is an unsafe replacement for a function call: use this\n * function instead.\n *\n * If `target` reverts with a revert reason, it is bubbled up by this\n * function (like regular Solidity function calls).\n *\n * Returns the raw returned data. To convert to the expected return value,\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n *\n * Requirements:\n *\n * - `target` must be a contract.\n * - calling `target` with `data` must not revert.\n *\n * _Available since v3.1._\n */\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionCall(target, data, \"Address: low-level call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\n * `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but also transferring `value` wei to `target`.\n *\n * Requirements:\n *\n * - the calling contract must have an ETH balance of at least `value`.\n * - the called Solidity function must be `payable`.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(\n address target,\n bytes memory data,\n uint256 value\n ) internal returns (bytes memory) {\n return functionCallWithValue(target, data, value, \"Address: low-level call with value failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\n * with `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(\n address target,\n bytes memory data,\n uint256 value,\n string memory errorMessage\n ) internal returns (bytes memory) {\n require(address(this).balance >= value, \"Address: insufficient balance for call\");\n require(isContract(target), \"Address: call to non-contract\");\n\n (bool success, bytes memory returndata) = target.call{value: value}(data);\n return verifyCallResult(success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\n return functionStaticCall(target, data, \"Address: low-level static call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal view returns (bytes memory) {\n require(isContract(target), \"Address: static call to non-contract\");\n\n (bool success, bytes memory returndata) = target.staticcall(data);\n return verifyCallResult(success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionDelegateCall(target, data, \"Address: low-level delegate call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n require(isContract(target), \"Address: delegate call to non-contract\");\n\n (bool success, bytes memory returndata) = target.delegatecall(data);\n return verifyCallResult(success, returndata, errorMessage);\n }\n\n /**\n * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\n * revert reason using the provided one.\n *\n * _Available since v4.3._\n */\n function verifyCallResult(\n bool success,\n bytes memory returndata,\n string memory errorMessage\n ) internal pure returns (bytes memory) {\n if (success) {\n return returndata;\n } else {\n // Look for revert reason and bubble it up if present\n if (returndata.length > 0) {\n // The easiest way to bubble the revert reason is using memory via assembly\n\n assembly {\n let returndata_size := mload(returndata)\n revert(add(32, returndata), returndata_size)\n }\n } else {\n revert(errorMessage);\n }\n }\n }\n}\n"
},
"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../IERC721.sol\";\n\n/**\n * @title ERC-721 Non-Fungible Token Standard, optional metadata extension\n * @dev See https://eips.ethereum.org/EIPS/eip-721\n */\ninterface IERC721Metadata is IERC721 {\n /**\n * @dev Returns the token collection name.\n */\n function name() external view returns (string memory);\n\n /**\n * @dev Returns the token collection symbol.\n */\n function symbol() external view returns (string memory);\n\n /**\n * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.\n */\n function tokenURI(uint256 tokenId) external view returns (string memory);\n}\n"
},
"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @title ERC721 token receiver interface\n * @dev Interface for any contract that wants to support safeTransfers\n * from ERC721 asset contracts.\n */\ninterface IERC721Receiver {\n /**\n * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}\n * by `operator` from `from`, this function is called.\n *\n * It must return its Solidity selector to confirm the token transfer.\n * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.\n *\n * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.\n */\n function onERC721Received(\n address operator,\n address from,\n uint256 tokenId,\n bytes calldata data\n ) external returns (bytes4);\n}\n"
},
"@openzeppelin/contracts/token/ERC721/IERC721.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../../utils/introspection/IERC165.sol\";\n\n/**\n * @dev Required interface of an ERC721 compliant contract.\n */\ninterface IERC721 is IERC165 {\n /**\n * @dev Emitted when `tokenId` token is transferred from `from` to `to`.\n */\n event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);\n\n /**\n * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.\n */\n event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);\n\n /**\n * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.\n */\n event ApprovalForAll(address indexed owner, address indexed operator, bool approved);\n\n /**\n * @dev Returns the number of tokens in ``owner``'s account.\n */\n function balanceOf(address owner) external view returns (uint256 balance);\n\n /**\n * @dev Returns the owner of the `tokenId` token.\n *\n * Requirements:\n *\n * - `tokenId` must exist.\n */\n function ownerOf(uint256 tokenId) external view returns (address owner);\n\n /**\n * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\n * are aware of the ERC721 protocol to prevent tokens from being forever locked.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `tokenId` token must exist and be owned by `from`.\n * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.\n * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n *\n * Emits a {Transfer} event.\n */\n function safeTransferFrom(\n address from,\n address to,\n uint256 tokenId\n ) external;\n\n /**\n * @dev Transfers `tokenId` token from `from` to `to`.\n *\n * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `tokenId` token must be owned by `from`.\n * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n *\n * Emits a {Transfer} event.\n */\n function transferFrom(\n address from,\n address to,\n uint256 tokenId\n ) external;\n\n /**\n * @dev Gives permission to `to` to transfer `tokenId` token to another account.\n * The approval is cleared when the token is transferred.\n *\n * Only a single account can be approved at a time, so approving the zero address clears previous approvals.\n *\n * Requirements:\n *\n * - The caller must own the token or be an approved operator.\n * - `tokenId` must exist.\n *\n * Emits an {Approval} event.\n */\n function approve(address to, uint256 tokenId) external;\n\n /**\n * @dev Returns the account approved for `tokenId` token.\n *\n * Requirements:\n *\n * - `tokenId` must exist.\n */\n function getApproved(uint256 tokenId) external view returns (address operator);\n\n /**\n * @dev Approve or remove `operator` as an operator for the caller.\n * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.\n *\n * Requirements:\n *\n * - The `operator` cannot be the caller.\n *\n * Emits an {ApprovalForAll} event.\n */\n function setApprovalForAll(address operator, bool _approved) external;\n\n /**\n * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.\n *\n * See {setApprovalForAll}\n */\n function isApprovedForAll(address owner, address operator) external view returns (bool);\n\n /**\n * @dev Safely transfers `tokenId` token from `from` to `to`.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `tokenId` token must exist and be owned by `from`.\n * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n *\n * Emits a {Transfer} event.\n */\n function safeTransferFrom(\n address from,\n address to,\n uint256 tokenId,\n bytes calldata data\n ) external;\n}\n"
},
"@openzeppelin/contracts/utils/introspection/IERC165.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC165 standard, as defined in the\n * https://eips.ethereum.org/EIPS/eip-165[EIP].\n *\n * Implementers can declare support of contract interfaces, which can then be\n * queried by others ({ERC165Checker}).\n *\n * For an implementation, see {ERC165}.\n */\ninterface IERC165 {\n /**\n * @dev Returns true if this contract implements the interface defined by\n * `interfaceId`. See the corresponding\n * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]\n * to learn more about how these ids are created.\n *\n * This function call must use less than 30 000 gas.\n */\n function supportsInterface(bytes4 interfaceId) external view returns (bool);\n}\n"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"@openzeppelin/contracts/token/ERC721/ERC721.sol": {
"ERC721": {
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "name_",
"type": "string"
},
{
"internalType": "string",
"name": "symbol_",
"type": "string"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "approved",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"indexed": false,
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "ApprovalForAll",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "approve",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "getApproved",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"name": "isApprovedForAll",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "ownerOf",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "_data",
"type": "bytes"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "setApprovalForAll",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "tokenURI",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including the Metadata extension, but not including the Enumerable extension, which is available separately as {ERC721Enumerable}.",
"kind": "dev",
"methods": {
"approve(address,uint256)": {
"details": "See {IERC721-approve}."
},
"balanceOf(address)": {
"details": "See {IERC721-balanceOf}."
},
"constructor": {
"details": "Initializes the contract by setting a `name` and a `symbol` to the token collection."
},
"getApproved(uint256)": {
"details": "See {IERC721-getApproved}."
},
"isApprovedForAll(address,address)": {
"details": "See {IERC721-isApprovedForAll}."
},
"name()": {
"details": "See {IERC721Metadata-name}."
},
"ownerOf(uint256)": {
"details": "See {IERC721-ownerOf}."
},
"safeTransferFrom(address,address,uint256)": {
"details": "See {IERC721-safeTransferFrom}."
},
"safeTransferFrom(address,address,uint256,bytes)": {
"details": "See {IERC721-safeTransferFrom}."
},
"setApprovalForAll(address,bool)": {
"details": "See {IERC721-setApprovalForAll}."
},
"supportsInterface(bytes4)": {
"details": "See {IERC165-supportsInterface}."
},
"symbol()": {
"details": "See {IERC721Metadata-symbol}."
},
"tokenURI(uint256)": {
"details": "See {IERC721Metadata-tokenURI}."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC721-transferFrom}."
}
},
"version": 1
},
"evm": {
"assembly": " /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":628:14285 contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {... */\n mstore(0x40, 0x80)\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1390:1503 constructor(string memory name_, string memory symbol_) {... */\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n mload(0x40)\n sub(codesize, bytecodeSize)\n dup1\n bytecodeSize\n dup4\n codecopy\n dup2\n dup2\n add\n 0x40\n mstore\n dup2\n add\n swap1\n tag_2\n swap2\n swap1\n tag_3\n jump\t// in\ntag_2:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1464:1469 name_ */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1456:1461 _name */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1456:1469 _name = name_ */\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_6\n swap3\n swap2\n swap1\n tag_7\n jump\t// in\ntag_6:\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1489:1496 symbol_ */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1479:1486 _symbol */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1479:1496 _symbol = symbol_ */\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_8\n swap3\n swap2\n swap1\n tag_7\n jump\t// in\ntag_8:\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1390:1503 constructor(string memory name_, string memory symbol_) {... */\n pop\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":628:14285 contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {... */\n jump(tag_9)\ntag_7:\n dup3\n dup1\n sload\n tag_10\n swap1\n tag_11\n jump\t// in\ntag_10:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x1f\n add\n 0x20\n swap1\n div\n dup2\n add\n swap3\n dup3\n tag_13\n jumpi\n 0x00\n dup6\n sstore\n jump(tag_12)\ntag_13:\n dup3\n 0x1f\n lt\n tag_14\n jumpi\n dup1\n mload\n not(0xff)\n and\n dup4\n dup1\n add\n or\n dup6\n sstore\n jump(tag_12)\ntag_14:\n dup3\n dup1\n add\n 0x01\n add\n dup6\n sstore\n dup3\n iszero\n tag_12\n jumpi\n swap2\n dup3\n add\ntag_15:\n dup3\n dup2\n gt\n iszero\n tag_16\n jumpi\n dup3\n mload\n dup3\n sstore\n swap2\n 0x20\n add\n swap2\n swap1\n 0x01\n add\n swap1\n jump(tag_15)\ntag_16:\ntag_12:\n pop\n swap1\n pop\n tag_17\n swap2\n swap1\n tag_18\n jump\t// in\ntag_17:\n pop\n swap1\n jump\t// out\ntag_18:\ntag_19:\n dup1\n dup3\n gt\n iszero\n tag_20\n jumpi\n 0x00\n dup2\n 0x00\n swap1\n sstore\n pop\n 0x01\n add\n jump(tag_19)\ntag_20:\n pop\n swap1\n jump\t// out\n /* \"#utility.yul\":7:428 */\ntag_22:\n /* \"#utility.yul\":96:101 */\n 0x00\n /* \"#utility.yul\":121:187 */\n tag_24\n /* \"#utility.yul\":137:186 */\n tag_25\n /* \"#utility.yul\":179:185 */\n dup5\n /* \"#utility.yul\":137:186 */\n tag_26\n jump\t// in\ntag_25:\n /* \"#utility.yul\":121:187 */\n tag_27\n jump\t// in\ntag_24:\n /* \"#utility.yul\":112:187 */\n swap1\n pop\n /* \"#utility.yul\":210:216 */\n dup3\n /* \"#utility.yul\":203:208 */\n dup2\n /* \"#utility.yul\":196:217 */\n mstore\n /* \"#utility.yul\":248:252 */\n 0x20\n /* \"#utility.yul\":241:246 */\n dup2\n /* \"#utility.yul\":237:253 */\n add\n /* \"#utility.yul\":286:289 */\n dup5\n /* \"#utility.yul\":277:283 */\n dup5\n /* \"#utility.yul\":272:275 */\n dup5\n /* \"#utility.yul\":268:284 */\n add\n /* \"#utility.yul\":265:290 */\n gt\n /* \"#utility.yul\":262:374 */\n iszero\n tag_28\n jumpi\n /* \"#utility.yul\":293:372 */\n tag_29\n tag_30\n jump\t// in\ntag_29:\n /* \"#utility.yul\":262:374 */\ntag_28:\n /* \"#utility.yul\":383:422 */\n tag_31\n /* \"#utility.yul\":415:421 */\n dup5\n /* \"#utility.yul\":410:413 */\n dup3\n /* \"#utility.yul\":405:408 */\n dup6\n /* \"#utility.yul\":383:422 */\n tag_32\n jump\t// in\ntag_31:\n /* \"#utility.yul\":102:428 */\n pop\n /* \"#utility.yul\":7:428 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":448:803 */\ntag_33:\n /* \"#utility.yul\":515:520 */\n 0x00\n /* \"#utility.yul\":564:567 */\n dup3\n /* \"#utility.yul\":557:561 */\n 0x1f\n /* \"#utility.yul\":549:555 */\n dup4\n /* \"#utility.yul\":545:562 */\n add\n /* \"#utility.yul\":541:568 */\n slt\n /* \"#utility.yul\":531:653 */\n tag_35\n jumpi\n /* \"#utility.yul\":572:651 */\n tag_36\n tag_37\n jump\t// in\ntag_36:\n /* \"#utility.yul\":531:653 */\ntag_35:\n /* \"#utility.yul\":682:688 */\n dup2\n /* \"#utility.yul\":676:689 */\n mload\n /* \"#utility.yul\":707:797 */\n tag_38\n /* \"#utility.yul\":793:796 */\n dup5\n /* \"#utility.yul\":785:791 */\n dup3\n /* \"#utility.yul\":778:782 */\n 0x20\n /* \"#utility.yul\":770:776 */\n dup7\n /* \"#utility.yul\":766:783 */\n add\n /* \"#utility.yul\":707:797 */\n tag_22\n jump\t// in\ntag_38:\n /* \"#utility.yul\":698:797 */\n swap2\n pop\n /* \"#utility.yul\":521:803 */\n pop\n /* \"#utility.yul\":448:803 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":809:1662 */\ntag_3:\n /* \"#utility.yul\":908:914 */\n 0x00\n /* \"#utility.yul\":916:922 */\n dup1\n /* \"#utility.yul\":965:967 */\n 0x40\n /* \"#utility.yul\":953:962 */\n dup4\n /* \"#utility.yul\":944:951 */\n dup6\n /* \"#utility.yul\":940:963 */\n sub\n /* \"#utility.yul\":936:968 */\n slt\n /* \"#utility.yul\":933:1052 */\n iszero\n tag_40\n jumpi\n /* \"#utility.yul\":971:1050 */\n tag_41\n tag_42\n jump\t// in\ntag_41:\n /* \"#utility.yul\":933:1052 */\ntag_40:\n /* \"#utility.yul\":1112:1113 */\n 0x00\n /* \"#utility.yul\":1101:1110 */\n dup4\n /* \"#utility.yul\":1097:1114 */\n add\n /* \"#utility.yul\":1091:1115 */\n mload\n /* \"#utility.yul\":1142:1160 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1134:1140 */\n dup2\n /* \"#utility.yul\":1131:1161 */\n gt\n /* \"#utility.yul\":1128:1245 */\n iszero\n tag_43\n jumpi\n /* \"#utility.yul\":1164:1243 */\n tag_44\n tag_45\n jump\t// in\ntag_44:\n /* \"#utility.yul\":1128:1245 */\ntag_43:\n /* \"#utility.yul\":1269:1343 */\n tag_46\n /* \"#utility.yul\":1335:1342 */\n dup6\n /* \"#utility.yul\":1326:1332 */\n dup3\n /* \"#utility.yul\":1315:1324 */\n dup7\n /* \"#utility.yul\":1311:1333 */\n add\n /* \"#utility.yul\":1269:1343 */\n tag_33\n jump\t// in\ntag_46:\n /* \"#utility.yul\":1259:1343 */\n swap3\n pop\n /* \"#utility.yul\":1062:1353 */\n pop\n /* \"#utility.yul\":1413:1415 */\n 0x20\n /* \"#utility.yul\":1402:1411 */\n dup4\n /* \"#utility.yul\":1398:1416 */\n add\n /* \"#utility.yul\":1392:1417 */\n mload\n /* \"#utility.yul\":1444:1462 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1436:1442 */\n dup2\n /* \"#utility.yul\":1433:1463 */\n gt\n /* \"#utility.yul\":1430:1547 */\n iszero\n tag_47\n jumpi\n /* \"#utility.yul\":1466:1545 */\n tag_48\n tag_45\n jump\t// in\ntag_48:\n /* \"#utility.yul\":1430:1547 */\ntag_47:\n /* \"#utility.yul\":1571:1645 */\n tag_49\n /* \"#utility.yul\":1637:1644 */\n dup6\n /* \"#utility.yul\":1628:1634 */\n dup3\n /* \"#utility.yul\":1617:1626 */\n dup7\n /* \"#utility.yul\":1613:1635 */\n add\n /* \"#utility.yul\":1571:1645 */\n tag_33\n jump\t// in\ntag_49:\n /* \"#utility.yul\":1561:1645 */\n swap2\n pop\n /* \"#utility.yul\":1363:1655 */\n pop\n /* \"#utility.yul\":809:1662 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1668:1797 */\ntag_27:\n /* \"#utility.yul\":1702:1708 */\n 0x00\n /* \"#utility.yul\":1729:1749 */\n tag_51\n tag_52\n jump\t// in\ntag_51:\n /* \"#utility.yul\":1719:1749 */\n swap1\n pop\n /* \"#utility.yul\":1758:1791 */\n tag_53\n /* \"#utility.yul\":1786:1790 */\n dup3\n /* \"#utility.yul\":1778:1784 */\n dup3\n /* \"#utility.yul\":1758:1791 */\n tag_54\n jump\t// in\ntag_53:\n /* \"#utility.yul\":1668:1797 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1803:1878 */\ntag_52:\n /* \"#utility.yul\":1836:1842 */\n 0x00\n /* \"#utility.yul\":1869:1871 */\n 0x40\n /* \"#utility.yul\":1863:1872 */\n mload\n /* \"#utility.yul\":1853:1872 */\n swap1\n pop\n /* \"#utility.yul\":1803:1878 */\n swap1\n jump\t// out\n /* \"#utility.yul\":1884:2192 */\ntag_26:\n /* \"#utility.yul\":1946:1950 */\n 0x00\n /* \"#utility.yul\":2036:2054 */\n 0xffffffffffffffff\n /* \"#utility.yul\":2028:2034 */\n dup3\n /* \"#utility.yul\":2025:2055 */\n gt\n /* \"#utility.yul\":2022:2078 */\n iszero\n tag_57\n jumpi\n /* \"#utility.yul\":2058:2076 */\n tag_58\n tag_59\n jump\t// in\ntag_58:\n /* \"#utility.yul\":2022:2078 */\ntag_57:\n /* \"#utility.yul\":2096:2125 */\n tag_60\n /* \"#utility.yul\":2118:2124 */\n dup3\n /* \"#utility.yul\":2096:2125 */\n tag_61\n jump\t// in\ntag_60:\n /* \"#utility.yul\":2088:2125 */\n swap1\n pop\n /* \"#utility.yul\":2180:2184 */\n 0x20\n /* \"#utility.yul\":2174:2178 */\n dup2\n /* \"#utility.yul\":2170:2185 */\n add\n /* \"#utility.yul\":2162:2185 */\n swap1\n pop\n /* \"#utility.yul\":1884:2192 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2198:2505 */\ntag_32:\n /* \"#utility.yul\":2266:2267 */\n 0x00\n /* \"#utility.yul\":2276:2389 */\ntag_63:\n /* \"#utility.yul\":2290:2296 */\n dup4\n /* \"#utility.yul\":2287:2288 */\n dup2\n /* \"#utility.yul\":2284:2297 */\n lt\n /* \"#utility.yul\":2276:2389 */\n iszero\n tag_65\n jumpi\n /* \"#utility.yul\":2375:2376 */\n dup1\n /* \"#utility.yul\":2370:2373 */\n dup3\n /* \"#utility.yul\":2366:2377 */\n add\n /* \"#utility.yul\":2360:2378 */\n mload\n /* \"#utility.yul\":2356:2357 */\n dup2\n /* \"#utility.yul\":2351:2354 */\n dup5\n /* \"#utility.yul\":2347:2358 */\n add\n /* \"#utility.yul\":2340:2379 */\n mstore\n /* \"#utility.yul\":2312:2314 */\n 0x20\n /* \"#utility.yul\":2309:2310 */\n dup2\n /* \"#utility.yul\":2305:2315 */\n add\n /* \"#utility.yul\":2300:2315 */\n swap1\n pop\n /* \"#utility.yul\":2276:2389 */\n jump(tag_63)\ntag_65:\n /* \"#utility.yul\":2407:2413 */\n dup4\n /* \"#utility.yul\":2404:2405 */\n dup2\n /* \"#utility.yul\":2401:2414 */\n gt\n /* \"#utility.yul\":2398:2499 */\n iszero\n tag_66\n jumpi\n /* \"#utility.yul\":2487:2488 */\n 0x00\n /* \"#utility.yul\":2478:2484 */\n dup5\n /* \"#utility.yul\":2473:2476 */\n dup5\n /* \"#utility.yul\":2469:2485 */\n add\n /* \"#utility.yul\":2462:2489 */\n mstore\n /* \"#utility.yul\":2398:2499 */\ntag_66:\n /* \"#utility.yul\":2247:2505 */\n pop\n /* \"#utility.yul\":2198:2505 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2511:2831 */\ntag_11:\n /* \"#utility.yul\":2555:2561 */\n 0x00\n /* \"#utility.yul\":2592:2593 */\n 0x02\n /* \"#utility.yul\":2586:2590 */\n dup3\n /* \"#utility.yul\":2582:2594 */\n div\n /* \"#utility.yul\":2572:2594 */\n swap1\n pop\n /* \"#utility.yul\":2639:2640 */\n 0x01\n /* \"#utility.yul\":2633:2637 */\n dup3\n /* \"#utility.yul\":2629:2641 */\n and\n /* \"#utility.yul\":2660:2678 */\n dup1\n /* \"#utility.yul\":2650:2731 */\n tag_68\n jumpi\n /* \"#utility.yul\":2716:2720 */\n 0x7f\n /* \"#utility.yul\":2708:2714 */\n dup3\n /* \"#utility.yul\":2704:2721 */\n and\n /* \"#utility.yul\":2694:2721 */\n swap2\n pop\n /* \"#utility.yul\":2650:2731 */\ntag_68:\n /* \"#utility.yul\":2778:2780 */\n 0x20\n /* \"#utility.yul\":2770:2776 */\n dup3\n /* \"#utility.yul\":2767:2781 */\n lt\n /* \"#utility.yul\":2747:2765 */\n dup2\n /* \"#utility.yul\":2744:2782 */\n eq\n /* \"#utility.yul\":2741:2825 */\n iszero\n tag_69\n jumpi\n /* \"#utility.yul\":2797:2815 */\n tag_70\n tag_71\n jump\t// in\ntag_70:\n /* \"#utility.yul\":2741:2825 */\ntag_69:\n /* \"#utility.yul\":2562:2831 */\n pop\n /* \"#utility.yul\":2511:2831 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2837:3118 */\ntag_54:\n /* \"#utility.yul\":2920:2947 */\n tag_73\n /* \"#utility.yul\":2942:2946 */\n dup3\n /* \"#utility.yul\":2920:2947 */\n tag_61\n jump\t// in\ntag_73:\n /* \"#utility.yul\":2912:2918 */\n dup2\n /* \"#utility.yul\":2908:2948 */\n add\n /* \"#utility.yul\":3050:3056 */\n dup2\n /* \"#utility.yul\":3038:3048 */\n dup2\n /* \"#utility.yul\":3035:3057 */\n lt\n /* \"#utility.yul\":3014:3032 */\n 0xffffffffffffffff\n /* \"#utility.yul\":3002:3012 */\n dup3\n /* \"#utility.yul\":2999:3033 */\n gt\n /* \"#utility.yul\":2996:3058 */\n or\n /* \"#utility.yul\":2993:3081 */\n iszero\n tag_74\n jumpi\n /* \"#utility.yul\":3061:3079 */\n tag_75\n tag_59\n jump\t// in\ntag_75:\n /* \"#utility.yul\":2993:3081 */\ntag_74:\n /* \"#utility.yul\":3101:3111 */\n dup1\n /* \"#utility.yul\":3097:3099 */\n 0x40\n /* \"#utility.yul\":3090:3112 */\n mstore\n /* \"#utility.yul\":2880:3118 */\n pop\n /* \"#utility.yul\":2837:3118 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3124:3304 */\ntag_71:\n /* \"#utility.yul\":3172:3249 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":3169:3170 */\n 0x00\n /* \"#utility.yul\":3162:3250 */\n mstore\n /* \"#utility.yul\":3269:3273 */\n 0x22\n /* \"#utility.yul\":3266:3267 */\n 0x04\n /* \"#utility.yul\":3259:3274 */\n mstore\n /* \"#utility.yul\":3293:3297 */\n 0x24\n /* \"#utility.yul\":3290:3291 */\n 0x00\n /* \"#utility.yul\":3283:3298 */\n revert\n /* \"#utility.yul\":3310:3490 */\ntag_59:\n /* \"#utility.yul\":3358:3435 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":3355:3356 */\n 0x00\n /* \"#utility.yul\":3348:3436 */\n mstore\n /* \"#utility.yul\":3455:3459 */\n 0x41\n /* \"#utility.yul\":3452:3453 */\n 0x04\n /* \"#utility.yul\":3445:3460 */\n mstore\n /* \"#utility.yul\":3479:3483 */\n 0x24\n /* \"#utility.yul\":3476:3477 */\n 0x00\n /* \"#utility.yul\":3469:3484 */\n revert\n /* \"#utility.yul\":3496:3613 */\ntag_37:\n /* \"#utility.yul\":3605:3606 */\n 0x00\n /* \"#utility.yul\":3602:3603 */\n dup1\n /* \"#utility.yul\":3595:3607 */\n revert\n /* \"#utility.yul\":3619:3736 */\ntag_30:\n /* \"#utility.yul\":3728:3729 */\n 0x00\n /* \"#utility.yul\":3725:3726 */\n dup1\n /* \"#utility.yul\":3718:3730 */\n revert\n /* \"#utility.yul\":3742:3859 */\ntag_45:\n /* \"#utility.yul\":3851:3852 */\n 0x00\n /* \"#utility.yul\":3848:3849 */\n dup1\n /* \"#utility.yul\":3841:3853 */\n revert\n /* \"#utility.yul\":3865:3982 */\ntag_42:\n /* \"#utility.yul\":3974:3975 */\n 0x00\n /* \"#utility.yul\":3971:3972 */\n dup1\n /* \"#utility.yul\":3964:3976 */\n revert\n /* \"#utility.yul\":3988:4090 */\ntag_61:\n /* \"#utility.yul\":4029:4035 */\n 0x00\n /* \"#utility.yul\":4080:4082 */\n 0x1f\n /* \"#utility.yul\":4076:4083 */\n not\n /* \"#utility.yul\":4071:4073 */\n 0x1f\n /* \"#utility.yul\":4064:4069 */\n dup4\n /* \"#utility.yul\":4060:4074 */\n add\n /* \"#utility.yul\":4056:4084 */\n and\n /* \"#utility.yul\":4046:4084 */\n swap1\n pop\n /* \"#utility.yul\":3988:4090 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":628:14285 contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {... */\ntag_9:\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":628:14285 contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\n tag_1:\n pop\n jumpi(tag_2, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0x6352211e\n gt\n tag_16\n jumpi\n dup1\n 0xa22cb465\n gt\n tag_17\n jumpi\n dup1\n 0xa22cb465\n eq\n tag_12\n jumpi\n dup1\n 0xb88d4fde\n eq\n tag_13\n jumpi\n dup1\n 0xc87b56dd\n eq\n tag_14\n jumpi\n dup1\n 0xe985e9c5\n eq\n tag_15\n jumpi\n jump(tag_2)\n tag_17:\n dup1\n 0x6352211e\n eq\n tag_9\n jumpi\n dup1\n 0x70a08231\n eq\n tag_10\n jumpi\n dup1\n 0x95d89b41\n eq\n tag_11\n jumpi\n jump(tag_2)\n tag_16:\n dup1\n 0x01ffc9a7\n eq\n tag_3\n jumpi\n dup1\n 0x06fdde03\n eq\n tag_4\n jumpi\n dup1\n 0x081812fc\n eq\n tag_5\n jumpi\n dup1\n 0x095ea7b3\n eq\n tag_6\n jumpi\n dup1\n 0x23b872dd\n eq\n tag_7\n jumpi\n dup1\n 0x42842e0e\n eq\n tag_8\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1570:1870 function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {... */\n tag_3:\n tag_18\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_19\n swap2\n swap1\n tag_20\n jump\t// in\n tag_19:\n tag_21\n jump\t// in\n tag_18:\n mload(0x40)\n tag_22\n swap2\n swap1\n tag_23\n jump\t// in\n tag_22:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2488:2586 function name() public view virtual override returns (string memory) {... */\n tag_4:\n tag_24\n tag_25\n jump\t// in\n tag_24:\n mload(0x40)\n tag_26\n swap2\n swap1\n tag_27\n jump\t// in\n tag_26:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3999:4216 function getApproved(uint256 tokenId) public view virtual override returns (address) {... */\n tag_5:\n tag_28\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_29\n swap2\n swap1\n tag_30\n jump\t// in\n tag_29:\n tag_31\n jump\t// in\n tag_28:\n mload(0x40)\n tag_32\n swap2\n swap1\n tag_33\n jump\t// in\n tag_32:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3537:3938 function approve(address to, uint256 tokenId) public virtual override {... */\n tag_6:\n tag_34\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_35\n swap2\n swap1\n tag_36\n jump\t// in\n tag_35:\n tag_37\n jump\t// in\n tag_34:\n stop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4726:5056 function transferFrom(... */\n tag_7:\n tag_38\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_39\n swap2\n swap1\n tag_40\n jump\t// in\n tag_39:\n tag_41\n jump\t// in\n tag_38:\n stop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5122:5301 function safeTransferFrom(... */\n tag_8:\n tag_42\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_43\n swap2\n swap1\n tag_40\n jump\t// in\n tag_43:\n tag_44\n jump\t// in\n tag_42:\n stop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2191:2426 function ownerOf(uint256 tokenId) public view virtual override returns (address) {... */\n tag_9:\n tag_45\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_46\n swap2\n swap1\n tag_30\n jump\t// in\n tag_46:\n tag_47\n jump\t// in\n tag_45:\n mload(0x40)\n tag_48\n swap2\n swap1\n tag_33\n jump\t// in\n tag_48:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1929:2134 function balanceOf(address owner) public view virtual override returns (uint256) {... */\n tag_10:\n tag_49\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_50\n swap2\n swap1\n tag_51\n jump\t// in\n tag_50:\n tag_52\n jump\t// in\n tag_49:\n mload(0x40)\n tag_53\n swap2\n swap1\n tag_54\n jump\t// in\n tag_53:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2650:2752 function symbol() public view virtual override returns (string memory) {... */\n tag_11:\n tag_55\n tag_56\n jump\t// in\n tag_55:\n mload(0x40)\n tag_57\n swap2\n swap1\n tag_27\n jump\t// in\n tag_57:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4283:4436 function setApprovalForAll(address operator, bool approved) public virtual override {... */\n tag_12:\n tag_58\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_59\n swap2\n swap1\n tag_60\n jump\t// in\n tag_59:\n tag_61\n jump\t// in\n tag_58:\n stop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5367:5687 function safeTransferFrom(... */\n tag_13:\n tag_62\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_63\n swap2\n swap1\n tag_64\n jump\t// in\n tag_63:\n tag_65\n jump\t// in\n tag_62:\n stop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2818:3147 function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {... */\n tag_14:\n tag_66\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_67\n swap2\n swap1\n tag_30\n jump\t// in\n tag_67:\n tag_68\n jump\t// in\n tag_66:\n mload(0x40)\n tag_69\n swap2\n swap1\n tag_27\n jump\t// in\n tag_69:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4502:4664 function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {... */\n tag_15:\n tag_70\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_71\n swap2\n swap1\n tag_72\n jump\t// in\n tag_71:\n tag_73\n jump\t// in\n tag_70:\n mload(0x40)\n tag_74\n swap2\n swap1\n tag_23\n jump\t// in\n tag_74:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1570:1870 function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {... */\n tag_21:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1672:1676 bool */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1722:1747 type(IERC721).interfaceId */\n 0x80ac58cd00000000000000000000000000000000000000000000000000000000\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1707:1747 interfaceId == type(IERC721).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1707:1718 interfaceId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1707:1747 interfaceId == type(IERC721).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n eq\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1707:1811 interfaceId == type(IERC721).interfaceId ||... */\n dup1\n tag_76\n jumpi\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1778:1811 type(IERC721Metadata).interfaceId */\n 0x5b5e139f00000000000000000000000000000000000000000000000000000000\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1763:1811 interfaceId == type(IERC721Metadata).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1763:1774 interfaceId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1763:1811 interfaceId == type(IERC721Metadata).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n eq\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1707:1811 interfaceId == type(IERC721).interfaceId ||... */\n tag_76:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1707:1863 interfaceId == type(IERC721).interfaceId ||... */\n dup1\n tag_77\n jumpi\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1827:1863 super.supportsInterface(interfaceId) */\n tag_78\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1851:1862 interfaceId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1827:1850 super.supportsInterface */\n tag_79\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1827:1863 super.supportsInterface(interfaceId) */\n jump\t// in\n tag_78:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1707:1863 interfaceId == type(IERC721).interfaceId ||... */\n tag_77:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1688:1863 return... */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1570:1870 function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2488:2586 function name() public view virtual override returns (string memory) {... */\n tag_25:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2542:2555 string memory */\n 0x60\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2574:2579 _name */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2567:2579 return _name */\n dup1\n sload\n tag_81\n swap1\n tag_82\n jump\t// in\n tag_81:\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n tag_83\n swap1\n tag_82\n jump\t// in\n tag_83:\n dup1\n iszero\n tag_84\n jumpi\n dup1\n 0x1f\n lt\n tag_85\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_84)\n tag_85:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_86:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_86\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_84:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2488:2586 function name() public view virtual override returns (string memory) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3999:4216 function getApproved(uint256 tokenId) public view virtual override returns (address) {... */\n tag_31:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4075:4082 address */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4102:4118 _exists(tokenId) */\n tag_88\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4110:4117 tokenId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4102:4109 _exists */\n tag_89\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4102:4118 _exists(tokenId) */\n jump\t// in\n tag_88:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4094:4167 require(_exists(tokenId), \"ERC721: approved query for nonexistent token\") */\n tag_90\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_91\n swap1\n tag_92\n jump\t// in\n tag_91:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_90:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4185:4200 _tokenApprovals */\n 0x04\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4185:4209 _tokenApprovals[tokenId] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4201:4208 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4185:4209 _tokenApprovals[tokenId] */\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4178:4209 return _tokenApprovals[tokenId] */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3999:4216 function getApproved(uint256 tokenId) public view virtual override returns (address) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3537:3938 function approve(address to, uint256 tokenId) public virtual override {... */\n tag_37:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3617:3630 address owner */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3633:3656 ERC721.ownerOf(tokenId) */\n tag_94\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3648:3655 tokenId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3633:3647 ERC721.ownerOf */\n tag_47\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3633:3656 ERC721.ownerOf(tokenId) */\n jump\t// in\n tag_94:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3617:3656 address owner = ERC721.ownerOf(tokenId) */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3680:3685 owner */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3674:3685 to != owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3674:3676 to */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3674:3685 to != owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3666:3723 require(to != owner, \"ERC721: approval to current owner\") */\n tag_95\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_96\n swap1\n tag_97\n jump\t// in\n tag_96:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_95:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3771:3776 owner */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3755:3776 _msgSender() == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3755:3767 _msgSender() */\n tag_98\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3755:3765 _msgSender */\n tag_99\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3755:3767 _msgSender() */\n jump\t// in\n tag_98:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3755:3776 _msgSender() == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3755:3817 _msgSender() == owner || isApprovedForAll(owner, _msgSender()) */\n dup1\n tag_100\n jumpi\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3780:3817 isApprovedForAll(owner, _msgSender()) */\n tag_101\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3797:3802 owner */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3804:3816 _msgSender() */\n tag_102\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3804:3814 _msgSender */\n tag_99\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3804:3816 _msgSender() */\n jump\t// in\n tag_102:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3780:3796 isApprovedForAll */\n tag_73\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3780:3817 isApprovedForAll(owner, _msgSender()) */\n jump\t// in\n tag_101:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3755:3817 _msgSender() == owner || isApprovedForAll(owner, _msgSender()) */\n tag_100:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3734:3899 require(... */\n tag_103\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_104\n swap1\n tag_105\n jump\t// in\n tag_104:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_103:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3910:3931 _approve(to, tokenId) */\n tag_106\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3919:3921 to */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3923:3930 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3910:3918 _approve */\n tag_107\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3910:3931 _approve(to, tokenId) */\n jump\t// in\n tag_106:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3607:3938 {... */\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3537:3938 function approve(address to, uint256 tokenId) public virtual override {... */\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4726:5056 function transferFrom(... */\n tag_41:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4915:4956 _isApprovedOrOwner(_msgSender(), tokenId) */\n tag_109\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4934:4946 _msgSender() */\n tag_110\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4934:4944 _msgSender */\n tag_99\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4934:4946 _msgSender() */\n jump\t// in\n tag_110:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4948:4955 tokenId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4915:4933 _isApprovedOrOwner */\n tag_111\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4915:4956 _isApprovedOrOwner(_msgSender(), tokenId) */\n jump\t// in\n tag_109:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4907:5010 require(_isApprovedOrOwner(_msgSender(), tokenId), \"ERC721: transfer caller is not owner nor approved\") */\n tag_112\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_113\n swap1\n tag_114\n jump\t// in\n tag_113:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_112:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5021:5049 _transfer(from, to, tokenId) */\n tag_115\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5031:5035 from */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5037:5039 to */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5041:5048 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5021:5030 _transfer */\n tag_116\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5021:5049 _transfer(from, to, tokenId) */\n jump\t// in\n tag_115:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4726:5056 function transferFrom(... */\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5122:5301 function safeTransferFrom(... */\n tag_44:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5255:5294 safeTransferFrom(from, to, tokenId, \"\") */\n tag_118\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5272:5276 from */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5278:5280 to */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5282:5289 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5255:5294 safeTransferFrom(from, to, tokenId, \"\") */\n mload(0x40)\n dup1\n 0x20\n add\n 0x40\n mstore\n dup1\n 0x00\n dup2\n mstore\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5255:5271 safeTransferFrom */\n tag_65\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5255:5294 safeTransferFrom(from, to, tokenId, \"\") */\n jump\t// in\n tag_118:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5122:5301 function safeTransferFrom(... */\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2191:2426 function ownerOf(uint256 tokenId) public view virtual override returns (address) {... */\n tag_47:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2263:2270 address */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2282:2295 address owner */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2298:2305 _owners */\n 0x02\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2298:2314 _owners[tokenId] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2306:2313 tokenId */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2298:2314 _owners[tokenId] */\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2282:2314 address owner = _owners[tokenId] */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2349:2350 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2332:2351 owner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2332:2337 owner */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2332:2351 owner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2324:2397 require(owner != address(0), \"ERC721: owner query for nonexistent token\") */\n tag_120\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_121\n swap1\n tag_122\n jump\t// in\n tag_121:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_120:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2414:2419 owner */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2407:2419 return owner */\n swap2\n pop\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2191:2426 function ownerOf(uint256 tokenId) public view virtual override returns (address) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1929:2134 function balanceOf(address owner) public view virtual override returns (uint256) {... */\n tag_52:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2001:2008 uint256 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2045:2046 0 */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2028:2047 owner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2028:2033 owner */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2028:2047 owner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2020:2094 require(owner != address(0), \"ERC721: balance query for the zero address\") */\n tag_124\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_125\n swap1\n tag_126\n jump\t// in\n tag_125:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_124:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2111:2120 _balances */\n 0x03\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2111:2127 _balances[owner] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2121:2126 owner */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2111:2127 _balances[owner] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n sload\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2104:2127 return _balances[owner] */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1929:2134 function balanceOf(address owner) public view virtual override returns (uint256) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2650:2752 function symbol() public view virtual override returns (string memory) {... */\n tag_56:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2706:2719 string memory */\n 0x60\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2738:2745 _symbol */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2731:2745 return _symbol */\n dup1\n sload\n tag_128\n swap1\n tag_82\n jump\t// in\n tag_128:\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n tag_129\n swap1\n tag_82\n jump\t// in\n tag_129:\n dup1\n iszero\n tag_130\n jumpi\n dup1\n 0x1f\n lt\n tag_131\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_130)\n tag_131:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_132:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_132\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_130:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2650:2752 function symbol() public view virtual override returns (string memory) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4283:4436 function setApprovalForAll(address operator, bool approved) public virtual override {... */\n tag_61:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4377:4429 _setApprovalForAll(_msgSender(), operator, approved) */\n tag_134\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4396:4408 _msgSender() */\n tag_135\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4396:4406 _msgSender */\n tag_99\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4396:4408 _msgSender() */\n jump\t// in\n tag_135:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4410:4418 operator */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4420:4428 approved */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4377:4395 _setApprovalForAll */\n tag_136\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4377:4429 _setApprovalForAll(_msgSender(), operator, approved) */\n jump\t// in\n tag_134:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4283:4436 function setApprovalForAll(address operator, bool approved) public virtual override {... */\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5367:5687 function safeTransferFrom(... */\n tag_65:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5536:5577 _isApprovedOrOwner(_msgSender(), tokenId) */\n tag_138\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5555:5567 _msgSender() */\n tag_139\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5555:5565 _msgSender */\n tag_99\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5555:5567 _msgSender() */\n jump\t// in\n tag_139:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5569:5576 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5536:5554 _isApprovedOrOwner */\n tag_111\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5536:5577 _isApprovedOrOwner(_msgSender(), tokenId) */\n jump\t// in\n tag_138:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5528:5631 require(_isApprovedOrOwner(_msgSender(), tokenId), \"ERC721: transfer caller is not owner nor approved\") */\n tag_140\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_141\n swap1\n tag_114\n jump\t// in\n tag_141:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_140:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5641:5680 _safeTransfer(from, to, tokenId, _data) */\n tag_142\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5655:5659 from */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5661:5663 to */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5665:5672 tokenId */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5674:5679 _data */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5641:5654 _safeTransfer */\n tag_143\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5641:5680 _safeTransfer(from, to, tokenId, _data) */\n jump\t// in\n tag_142:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5367:5687 function safeTransferFrom(... */\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2818:3147 function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {... */\n tag_68:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2891:2904 string memory */\n 0x60\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2924:2940 _exists(tokenId) */\n tag_145\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2932:2939 tokenId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2924:2931 _exists */\n tag_89\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2924:2940 _exists(tokenId) */\n jump\t// in\n tag_145:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2916:2992 require(_exists(tokenId), \"ERC721Metadata: URI query for nonexistent token\") */\n tag_146\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_147\n swap1\n tag_148\n jump\t// in\n tag_147:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_146:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3003:3024 string memory baseURI */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3027:3037 _baseURI() */\n tag_149\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3027:3035 _baseURI */\n tag_150\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3027:3037 _baseURI() */\n jump\t// in\n tag_149:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3003:3037 string memory baseURI = _baseURI() */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3078:3079 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3060:3067 baseURI */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3054:3075 bytes(baseURI).length */\n mload\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3054:3079 bytes(baseURI).length > 0 */\n gt\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3054:3140 bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : \"\" */\n tag_151\n jumpi\n mload(0x40)\n dup1\n 0x20\n add\n 0x40\n mstore\n dup1\n 0x00\n dup2\n mstore\n pop\n jump(tag_152)\n tag_151:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3106:3113 baseURI */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3115:3133 tokenId.toString() */\n tag_153\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3115:3122 tokenId */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3115:3131 tokenId.toString */\n tag_154\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3115:3133 tokenId.toString() */\n jump\t// in\n tag_153:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3089:3134 abi.encodePacked(baseURI, tokenId.toString()) */\n add(0x20, mload(0x40))\n tag_155\n swap3\n swap2\n swap1\n tag_156\n jump\t// in\n tag_155:\n mload(0x40)\n 0x20\n dup2\n dup4\n sub\n sub\n dup2\n mstore\n swap1\n 0x40\n mstore\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3054:3140 bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : \"\" */\n tag_152:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3047:3140 return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : \"\" */\n swap2\n pop\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2818:3147 function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4502:4664 function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {... */\n tag_73:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4599:4603 bool */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4622:4640 _operatorApprovals */\n 0x05\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4622:4647 _operatorApprovals[owner] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4641:4646 owner */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4622:4647 _operatorApprovals[owner] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4622:4657 _operatorApprovals[owner][operator] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4648:4656 operator */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4622:4657 _operatorApprovals[owner][operator] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4615:4657 return _operatorApprovals[owner][operator] */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4502:4664 function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/utils/introspection/ERC165.sol\":829:984 function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {... */\n tag_79:\n /* \"@openzeppelin/contracts/utils/introspection/ERC165.sol\":914:918 bool */\n 0x00\n /* \"@openzeppelin/contracts/utils/introspection/ERC165.sol\":952:977 type(IERC165).interfaceId */\n 0x01ffc9a700000000000000000000000000000000000000000000000000000000\n /* \"@openzeppelin/contracts/utils/introspection/ERC165.sol\":937:977 interfaceId == type(IERC165).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n /* \"@openzeppelin/contracts/utils/introspection/ERC165.sol\":937:948 interfaceId */\n dup3\n /* \"@openzeppelin/contracts/utils/introspection/ERC165.sol\":937:977 interfaceId == type(IERC165).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n eq\n /* \"@openzeppelin/contracts/utils/introspection/ERC165.sol\":930:977 return interfaceId == type(IERC165).interfaceId */\n swap1\n pop\n /* \"@openzeppelin/contracts/utils/introspection/ERC165.sol\":829:984 function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7159:7284 function _exists(uint256 tokenId) internal view virtual returns (bool) {... */\n tag_89:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7224:7228 bool */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7275:7276 0 */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7247:7277 _owners[tokenId] != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7247:7254 _owners */\n 0x02\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7247:7263 _owners[tokenId] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7255:7262 tokenId */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7247:7263 _owners[tokenId] */\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7247:7277 _owners[tokenId] != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7240:7277 return _owners[tokenId] != address(0) */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7159:7284 function _exists(uint256 tokenId) internal view virtual returns (bool) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\n tag_99:\n /* \"@openzeppelin/contracts/utils/Context.sol\":693:700 address */\n 0x00\n /* \"@openzeppelin/contracts/utils/Context.sol\":719:729 msg.sender */\n caller\n /* \"@openzeppelin/contracts/utils/Context.sol\":712:729 return msg.sender */\n swap1\n pop\n /* \"@openzeppelin/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11168:11339 function _approve(address to, uint256 tokenId) internal virtual {... */\n tag_107:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11269:11271 to */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11242:11257 _tokenApprovals */\n 0x04\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11242:11266 _tokenApprovals[tokenId] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11258:11265 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11242:11266 _tokenApprovals[tokenId] */\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11242:11271 _tokenApprovals[tokenId] = to */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffffffffffffffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11324:11331 tokenId */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11320:11322 to */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11286:11332 Approval(ERC721.ownerOf(tokenId), to, tokenId) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11295:11318 ERC721.ownerOf(tokenId) */\n tag_162\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11310:11317 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11295:11309 ERC721.ownerOf */\n tag_47\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11295:11318 ERC721.ownerOf(tokenId) */\n jump\t// in\n tag_162:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11286:11332 Approval(ERC721.ownerOf(tokenId), to, tokenId) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925\n mload(0x40)\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11168:11339 function _approve(address to, uint256 tokenId) internal virtual {... */\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7442:7786 function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {... */\n tag_111:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7535:7539 bool */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7559:7575 _exists(tokenId) */\n tag_164\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7567:7574 tokenId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7559:7566 _exists */\n tag_89\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7559:7575 _exists(tokenId) */\n jump\t// in\n tag_164:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7551:7624 require(_exists(tokenId), \"ERC721: operator query for nonexistent token\") */\n tag_165\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_166\n swap1\n tag_167\n jump\t// in\n tag_166:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_165:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7634:7647 address owner */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7650:7673 ERC721.ownerOf(tokenId) */\n tag_168\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7665:7672 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7650:7664 ERC721.ownerOf */\n tag_47\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7650:7673 ERC721.ownerOf(tokenId) */\n jump\t// in\n tag_168:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7634:7673 address owner = ERC721.ownerOf(tokenId) */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7702:7707 owner */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7691:7707 spender == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7691:7698 spender */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7691:7707 spender == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7691:7742 spender == owner || getApproved(tokenId) == spender */\n dup1\n tag_169\n jumpi\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7735:7742 spender */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7711:7742 getApproved(tokenId) == spender */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7711:7731 getApproved(tokenId) */\n tag_170\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7723:7730 tokenId */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7711:7722 getApproved */\n tag_31\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7711:7731 getApproved(tokenId) */\n jump\t// in\n tag_170:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7711:7742 getApproved(tokenId) == spender */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7691:7742 spender == owner || getApproved(tokenId) == spender */\n tag_169:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7691:7778 spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender) */\n dup1\n tag_171\n jumpi\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7746:7778 isApprovedForAll(owner, spender) */\n tag_172\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7763:7768 owner */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7770:7777 spender */\n dup6\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7746:7762 isApprovedForAll */\n tag_73\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7746:7778 isApprovedForAll(owner, spender) */\n jump\t// in\n tag_172:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7691:7778 spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender) */\n tag_171:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7683:7779 return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)) */\n swap2\n pop\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7442:7786 function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10452:11057 function _transfer(... */\n tag_116:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10606:10610 from */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10579:10610 ERC721.ownerOf(tokenId) == from */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10579:10602 ERC721.ownerOf(tokenId) */\n tag_174\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10594:10601 tokenId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10579:10593 ERC721.ownerOf */\n tag_47\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10579:10602 ERC721.ownerOf(tokenId) */\n jump\t// in\n tag_174:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10579:10610 ERC721.ownerOf(tokenId) == from */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10571:10652 require(ERC721.ownerOf(tokenId) == from, \"ERC721: transfer from incorrect owner\") */\n tag_175\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_176\n swap1\n tag_177\n jump\t// in\n tag_176:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_175:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10684:10685 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10670:10686 to != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10670:10672 to */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10670:10686 to != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10662:10727 require(to != address(0), \"ERC721: transfer to the zero address\") */\n tag_178\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_179\n swap1\n tag_180\n jump\t// in\n tag_179:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_178:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10738:10777 _beforeTokenTransfer(from, to, tokenId) */\n tag_181\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10759:10763 from */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10765:10767 to */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10769:10776 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10738:10758 _beforeTokenTransfer */\n tag_182\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10738:10777 _beforeTokenTransfer(from, to, tokenId) */\n jump\t// in\n tag_181:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10839:10868 _approve(address(0), tokenId) */\n tag_183\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10856:10857 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10860:10867 tokenId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10839:10847 _approve */\n tag_107\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10839:10868 _approve(address(0), tokenId) */\n jump\t// in\n tag_183:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10898:10899 1 */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10879:10888 _balances */\n 0x03\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10879:10894 _balances[from] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10889:10893 from */\n dup6\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10879:10894 _balances[from] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10879:10899 _balances[from] -= 1 */\n dup3\n dup3\n sload\n tag_184\n swap2\n swap1\n tag_185\n jump\t// in\n tag_184:\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10926:10927 1 */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10909:10918 _balances */\n 0x03\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10909:10922 _balances[to] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10919:10921 to */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10909:10922 _balances[to] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10909:10927 _balances[to] += 1 */\n dup3\n dup3\n sload\n tag_186\n swap2\n swap1\n tag_187\n jump\t// in\n tag_186:\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10956:10958 to */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10937:10944 _owners */\n 0x02\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10937:10953 _owners[tokenId] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10945:10952 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10937:10953 _owners[tokenId] */\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10937:10958 _owners[tokenId] = to */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffffffffffffffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10993:11000 tokenId */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10989:10991 to */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10974:11001 Transfer(from, to, tokenId) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10983:10987 from */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10974:11001 Transfer(from, to, tokenId) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef\n mload(0x40)\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11012:11050 _afterTokenTransfer(from, to, tokenId) */\n tag_188\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11032:11036 from */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11038:11040 to */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11042:11049 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11012:11031 _afterTokenTransfer */\n tag_189\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11012:11050 _afterTokenTransfer(from, to, tokenId) */\n jump\t// in\n tag_188:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10452:11057 function _transfer(... */\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11474:11781 function _setApprovalForAll(... */\n tag_136:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11624:11632 operator */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11615:11632 owner != operator */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11615:11620 owner */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11615:11632 owner != operator */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11607:11662 require(owner != operator, \"ERC721: approve to caller\") */\n tag_191\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_192\n swap1\n tag_193\n jump\t// in\n tag_192:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_191:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11710:11718 approved */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11672:11690 _operatorApprovals */\n 0x05\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11672:11697 _operatorApprovals[owner] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11691:11696 owner */\n dup6\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11672:11697 _operatorApprovals[owner] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11672:11707 _operatorApprovals[owner][operator] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11698:11706 operator */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11672:11707 _operatorApprovals[owner][operator] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11672:11718 _operatorApprovals[owner][operator] = approved */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xff\n mul\n not\n and\n swap1\n dup4\n iszero\n iszero\n mul\n or\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11755:11763 operator */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11733:11774 ApprovalForAll(owner, operator, approved) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11748:11753 owner */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11733:11774 ApprovalForAll(owner, operator, approved) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11765:11773 approved */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11733:11774 ApprovalForAll(owner, operator, approved) */\n mload(0x40)\n tag_194\n swap2\n swap1\n tag_23\n jump\t// in\n tag_194:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11474:11781 function _setApprovalForAll(... */\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6549:6856 function _safeTransfer(... */\n tag_143:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6700:6728 _transfer(from, to, tokenId) */\n tag_196\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6710:6714 from */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6716:6718 to */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6720:6727 tokenId */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6700:6709 _transfer */\n tag_116\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6700:6728 _transfer(from, to, tokenId) */\n jump\t// in\n tag_196:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6746:6794 _checkOnERC721Received(from, to, tokenId, _data) */\n tag_197\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6769:6773 from */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6775:6777 to */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6779:6786 tokenId */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6788:6793 _data */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6746:6768 _checkOnERC721Received */\n tag_198\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6746:6794 _checkOnERC721Received(from, to, tokenId, _data) */\n jump\t// in\n tag_197:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6738:6849 require(_checkOnERC721Received(from, to, tokenId, _data), \"ERC721: transfer to non ERC721Receiver implementer\") */\n tag_199\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_200\n swap1\n tag_201\n jump\t// in\n tag_200:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_199:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6549:6856 function _safeTransfer(... */\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3388:3480 function _baseURI() internal view virtual returns (string memory) {... */\n tag_150:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3439:3452 string memory */\n 0x60\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3464:3473 return \"\" */\n mload(0x40)\n dup1\n 0x20\n add\n 0x40\n mstore\n dup1\n 0x00\n dup2\n mstore\n pop\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3388:3480 function _baseURI() internal view virtual returns (string memory) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/utils/Strings.sol\":328:1031 function toString(uint256 value) internal pure returns (string memory) {... */\n tag_154:\n /* \"@openzeppelin/contracts/utils/Strings.sol\":384:397 string memory */\n 0x60\n /* \"@openzeppelin/contracts/utils/Strings.sol\":610:611 0 */\n 0x00\n /* \"@openzeppelin/contracts/utils/Strings.sol\":601:606 value */\n dup3\n /* \"@openzeppelin/contracts/utils/Strings.sol\":601:611 value == 0 */\n eq\n /* \"@openzeppelin/contracts/utils/Strings.sol\":597:648 if (value == 0) {... */\n iszero\n tag_204\n jumpi\n /* \"@openzeppelin/contracts/utils/Strings.sol\":627:637 return \"0\" */\n mload(0x40)\n dup1\n 0x40\n add\n 0x40\n mstore\n dup1\n 0x01\n dup2\n mstore\n 0x20\n add\n 0x3000000000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n pop\n swap1\n pop\n jump(tag_203)\n /* \"@openzeppelin/contracts/utils/Strings.sol\":597:648 if (value == 0) {... */\n tag_204:\n /* \"@openzeppelin/contracts/utils/Strings.sol\":657:669 uint256 temp */\n 0x00\n /* \"@openzeppelin/contracts/utils/Strings.sol\":672:677 value */\n dup3\n /* \"@openzeppelin/contracts/utils/Strings.sol\":657:677 uint256 temp = value */\n swap1\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":687:701 uint256 digits */\n 0x00\n /* \"@openzeppelin/contracts/utils/Strings.sol\":711:786 while (temp != 0) {... */\n tag_205:\n /* \"@openzeppelin/contracts/utils/Strings.sol\":726:727 0 */\n 0x00\n /* \"@openzeppelin/contracts/utils/Strings.sol\":718:722 temp */\n dup3\n /* \"@openzeppelin/contracts/utils/Strings.sol\":718:727 temp != 0 */\n eq\n /* \"@openzeppelin/contracts/utils/Strings.sol\":711:786 while (temp != 0) {... */\n tag_206\n jumpi\n /* \"@openzeppelin/contracts/utils/Strings.sol\":743:751 digits++ */\n dup1\n dup1\n tag_207\n swap1\n tag_208\n jump\t// in\n tag_207:\n swap2\n pop\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":773:775 10 */\n 0x0a\n /* \"@openzeppelin/contracts/utils/Strings.sol\":765:775 temp /= 10 */\n dup3\n tag_209\n swap2\n swap1\n tag_210\n jump\t// in\n tag_209:\n swap2\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":711:786 while (temp != 0) {... */\n jump(tag_205)\n tag_206:\n /* \"@openzeppelin/contracts/utils/Strings.sol\":795:814 bytes memory buffer */\n 0x00\n /* \"@openzeppelin/contracts/utils/Strings.sol\":827:833 digits */\n dup2\n /* \"@openzeppelin/contracts/utils/Strings.sol\":817:834 new bytes(digits) */\n 0xffffffffffffffff\n dup2\n gt\n iszero\n tag_211\n jumpi\n tag_212\n tag_213\n jump\t// in\n tag_212:\n tag_211:\n mload(0x40)\n swap1\n dup1\n dup3\n mstore\n dup1\n 0x1f\n add\n not(0x1f)\n and\n 0x20\n add\n dup3\n add\n 0x40\n mstore\n dup1\n iszero\n tag_214\n jumpi\n dup2\n 0x20\n add\n 0x01\n dup3\n mul\n dup1\n calldatasize\n dup4\n calldatacopy\n dup1\n dup3\n add\n swap2\n pop\n pop\n swap1\n pop\n tag_214:\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":795:834 bytes memory buffer = new bytes(digits) */\n swap1\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":844:994 while (value != 0) {... */\n tag_215:\n /* \"@openzeppelin/contracts/utils/Strings.sol\":860:861 0 */\n 0x00\n /* \"@openzeppelin/contracts/utils/Strings.sol\":851:856 value */\n dup6\n /* \"@openzeppelin/contracts/utils/Strings.sol\":851:861 value != 0 */\n eq\n /* \"@openzeppelin/contracts/utils/Strings.sol\":844:994 while (value != 0) {... */\n tag_216\n jumpi\n /* \"@openzeppelin/contracts/utils/Strings.sol\":887:888 1 */\n 0x01\n /* \"@openzeppelin/contracts/utils/Strings.sol\":877:888 digits -= 1 */\n dup3\n tag_217\n swap2\n swap1\n tag_185\n jump\t// in\n tag_217:\n swap2\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":953:955 10 */\n 0x0a\n /* \"@openzeppelin/contracts/utils/Strings.sol\":945:950 value */\n dup6\n /* \"@openzeppelin/contracts/utils/Strings.sol\":945:955 value % 10 */\n tag_218\n swap2\n swap1\n tag_219\n jump\t// in\n tag_218:\n /* \"@openzeppelin/contracts/utils/Strings.sol\":932:934 48 */\n 0x30\n /* \"@openzeppelin/contracts/utils/Strings.sol\":932:956 48 + uint256(value % 10) */\n tag_220\n swap2\n swap1\n tag_187\n jump\t// in\n tag_220:\n /* \"@openzeppelin/contracts/utils/Strings.sol\":919:958 bytes1(uint8(48 + uint256(value % 10))) */\n 0xf8\n shl\n /* \"@openzeppelin/contracts/utils/Strings.sol\":902:908 buffer */\n dup2\n /* \"@openzeppelin/contracts/utils/Strings.sol\":909:915 digits */\n dup4\n /* \"@openzeppelin/contracts/utils/Strings.sol\":902:916 buffer[digits] */\n dup2\n mload\n dup2\n lt\n tag_221\n jumpi\n tag_222\n tag_223\n jump\t// in\n tag_222:\n tag_221:\n 0x20\n add\n add\n /* \"@openzeppelin/contracts/utils/Strings.sol\":902:958 buffer[digits] = bytes1(uint8(48 + uint256(value % 10))) */\n swap1\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n swap1\n dup2\n 0x00\n byte\n swap1\n mstore8\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":981:983 10 */\n 0x0a\n /* \"@openzeppelin/contracts/utils/Strings.sol\":972:983 value /= 10 */\n dup6\n tag_224\n swap2\n swap1\n tag_210\n jump\t// in\n tag_224:\n swap5\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":844:994 while (value != 0) {... */\n jump(tag_215)\n tag_216:\n /* \"@openzeppelin/contracts/utils/Strings.sol\":1017:1023 buffer */\n dup1\n /* \"@openzeppelin/contracts/utils/Strings.sol\":1003:1024 return string(buffer) */\n swap4\n pop\n pop\n pop\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":328:1031 function toString(uint256 value) internal pure returns (string memory) {... */\n tag_203:\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13668:13790 function _beforeTokenTransfer(... */\n tag_182:\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":14162:14283 function _afterTokenTransfer(... */\n tag_189:\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12334:13112 function _checkOnERC721Received(... */\n tag_198:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12484:12488 bool */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12504:12519 to.isContract() */\n tag_228\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12504:12506 to */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12504:12517 to.isContract */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n tag_229\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12504:12519 to.isContract() */\n jump\t// in\n tag_228:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12500:13106 if (to.isContract()) {... */\n iszero\n tag_230\n jumpi\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12555:12557 to */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12539:12575 IERC721Receiver(to).onERC721Received */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x150b7a02\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12576:12588 _msgSender() */\n tag_231\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12576:12586 _msgSender */\n tag_99\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12576:12588 _msgSender() */\n jump\t// in\n tag_231:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12590:12594 from */\n dup8\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12596:12603 tokenId */\n dup7\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12605:12610 _data */\n dup7\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12539:12611 IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) */\n mload(0x40)\n dup6\n 0xffffffff\n and\n 0xe0\n shl\n dup2\n mstore\n 0x04\n add\n tag_232\n swap5\n swap4\n swap3\n swap2\n swap1\n tag_233\n jump\t// in\n tag_232:\n 0x20\n mload(0x40)\n dup1\n dup4\n sub\n dup2\n 0x00\n dup8\n dup1\n extcodesize\n iszero\n dup1\n iszero\n tag_234\n jumpi\n 0x00\n dup1\n revert\n tag_234:\n pop\n gas\n call\n swap3\n pop\n pop\n pop\n dup1\n iszero\n tag_235\n jumpi\n pop\n mload(0x40)\n returndatasize\n not(0x1f)\n 0x1f\n dup3\n add\n and\n dup3\n add\n dup1\n 0x40\n mstore\n pop\n dup2\n add\n swap1\n tag_236\n swap2\n swap1\n tag_237\n jump\t// in\n tag_236:\n 0x01\n tag_235:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12535:13054 try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {... */\n tag_238\n jumpi\n returndatasize\n dup1\n 0x00\n dup2\n eq\n tag_243\n jumpi\n mload(0x40)\n swap2\n pop\n and(add(returndatasize, 0x3f), not(0x1f))\n dup3\n add\n 0x40\n mstore\n returndatasize\n dup3\n mstore\n returndatasize\n 0x00\n 0x20\n dup5\n add\n returndatacopy\n jump(tag_242)\n tag_243:\n 0x60\n swap2\n pop\n tag_242:\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12795:12796 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12778:12784 reason */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12778:12791 reason.length */\n mload\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12778:12796 reason.length == 0 */\n eq\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12774:13040 if (reason.length == 0) {... */\n iszero\n tag_244\n jumpi\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12820:12880 revert(\"ERC721: transfer to non ERC721Receiver implementer\") */\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_245\n swap1\n tag_201\n jump\t// in\n tag_245:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12774:13040 if (reason.length == 0) {... */\n tag_244:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12992:12998 reason */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12986:12999 mload(reason) */\n mload\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12977:12983 reason */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12973:12975 32 */\n 0x20\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12969:12984 add(32, reason) */\n add\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12962:13000 revert(add(32, reason), mload(reason)) */\n revert\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12535:13054 try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {... */\n tag_238:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12671:12712 IERC721Receiver.onERC721Received.selector */\n shl(0xe0, 0x150b7a02)\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12661:12712 retval == IERC721Receiver.onERC721Received.selector */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12661:12667 retval */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12661:12712 retval == IERC721Receiver.onERC721Received.selector */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n eq\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12654:12712 return retval == IERC721Receiver.onERC721Received.selector */\n swap2\n pop\n pop\n jump(tag_227)\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12500:13106 if (to.isContract()) {... */\n tag_230:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13091:13095 true */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13084:13095 return true */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12334:13112 function _checkOnERC721Received(... */\n tag_227:\n swap5\n swap4\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/utils/Address.sol\":1175:1495 function isContract(address account) internal view returns (bool) {... */\n tag_229:\n /* \"@openzeppelin/contracts/utils/Address.sol\":1235:1239 bool */\n 0x00\n /* \"@openzeppelin/contracts/utils/Address.sol\":1487:1488 0 */\n dup1\n /* \"@openzeppelin/contracts/utils/Address.sol\":1465:1472 account */\n dup3\n /* \"@openzeppelin/contracts/utils/Address.sol\":1465:1484 account.code.length */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n extcodesize\n /* \"@openzeppelin/contracts/utils/Address.sol\":1465:1488 account.code.length > 0 */\n gt\n /* \"@openzeppelin/contracts/utils/Address.sol\":1458:1488 return account.code.length > 0 */\n swap1\n pop\n /* \"@openzeppelin/contracts/utils/Address.sol\":1175:1495 function isContract(address account) internal view returns (bool) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7:417 */\n tag_251:\n /* \"#utility.yul\":84:89 */\n 0x00\n /* \"#utility.yul\":109:174 */\n tag_253\n /* \"#utility.yul\":125:173 */\n tag_254\n /* \"#utility.yul\":166:172 */\n dup5\n /* \"#utility.yul\":125:173 */\n tag_255\n jump\t// in\n tag_254:\n /* \"#utility.yul\":109:174 */\n tag_256\n jump\t// in\n tag_253:\n /* \"#utility.yul\":100:174 */\n swap1\n pop\n /* \"#utility.yul\":197:203 */\n dup3\n /* \"#utility.yul\":190:195 */\n dup2\n /* \"#utility.yul\":183:204 */\n mstore\n /* \"#utility.yul\":235:239 */\n 0x20\n /* \"#utility.yul\":228:233 */\n dup2\n /* \"#utility.yul\":224:240 */\n add\n /* \"#utility.yul\":273:276 */\n dup5\n /* \"#utility.yul\":264:270 */\n dup5\n /* \"#utility.yul\":259:262 */\n dup5\n /* \"#utility.yul\":255:271 */\n add\n /* \"#utility.yul\":252:277 */\n gt\n /* \"#utility.yul\":249:361 */\n iszero\n tag_257\n jumpi\n /* \"#utility.yul\":280:359 */\n tag_258\n tag_259\n jump\t// in\n tag_258:\n /* \"#utility.yul\":249:361 */\n tag_257:\n /* \"#utility.yul\":370:411 */\n tag_260\n /* \"#utility.yul\":404:410 */\n dup5\n /* \"#utility.yul\":399:402 */\n dup3\n /* \"#utility.yul\":394:397 */\n dup6\n /* \"#utility.yul\":370:411 */\n tag_261\n jump\t// in\n tag_260:\n /* \"#utility.yul\":90:417 */\n pop\n /* \"#utility.yul\":7:417 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":423:562 */\n tag_262:\n /* \"#utility.yul\":469:474 */\n 0x00\n /* \"#utility.yul\":507:513 */\n dup2\n /* \"#utility.yul\":494:514 */\n calldataload\n /* \"#utility.yul\":485:514 */\n swap1\n pop\n /* \"#utility.yul\":523:556 */\n tag_264\n /* \"#utility.yul\":550:555 */\n dup2\n /* \"#utility.yul\":523:556 */\n tag_265\n jump\t// in\n tag_264:\n /* \"#utility.yul\":423:562 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":568:701 */\n tag_266:\n /* \"#utility.yul\":611:616 */\n 0x00\n /* \"#utility.yul\":649:655 */\n dup2\n /* \"#utility.yul\":636:656 */\n calldataload\n /* \"#utility.yul\":627:656 */\n swap1\n pop\n /* \"#utility.yul\":665:695 */\n tag_268\n /* \"#utility.yul\":689:694 */\n dup2\n /* \"#utility.yul\":665:695 */\n tag_269\n jump\t// in\n tag_268:\n /* \"#utility.yul\":568:701 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":707:844 */\n tag_270:\n /* \"#utility.yul\":752:757 */\n 0x00\n /* \"#utility.yul\":790:796 */\n dup2\n /* \"#utility.yul\":777:797 */\n calldataload\n /* \"#utility.yul\":768:797 */\n swap1\n pop\n /* \"#utility.yul\":806:838 */\n tag_272\n /* \"#utility.yul\":832:837 */\n dup2\n /* \"#utility.yul\":806:838 */\n tag_273\n jump\t// in\n tag_272:\n /* \"#utility.yul\":707:844 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":850:991 */\n tag_274:\n /* \"#utility.yul\":906:911 */\n 0x00\n /* \"#utility.yul\":937:943 */\n dup2\n /* \"#utility.yul\":931:944 */\n mload\n /* \"#utility.yul\":922:944 */\n swap1\n pop\n /* \"#utility.yul\":953:985 */\n tag_276\n /* \"#utility.yul\":979:984 */\n dup2\n /* \"#utility.yul\":953:985 */\n tag_273\n jump\t// in\n tag_276:\n /* \"#utility.yul\":850:991 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1010:1348 */\n tag_277:\n /* \"#utility.yul\":1065:1070 */\n 0x00\n /* \"#utility.yul\":1114:1117 */\n dup3\n /* \"#utility.yul\":1107:1111 */\n 0x1f\n /* \"#utility.yul\":1099:1105 */\n dup4\n /* \"#utility.yul\":1095:1112 */\n add\n /* \"#utility.yul\":1091:1118 */\n slt\n /* \"#utility.yul\":1081:1203 */\n tag_279\n jumpi\n /* \"#utility.yul\":1122:1201 */\n tag_280\n tag_281\n jump\t// in\n tag_280:\n /* \"#utility.yul\":1081:1203 */\n tag_279:\n /* \"#utility.yul\":1239:1245 */\n dup2\n /* \"#utility.yul\":1226:1246 */\n calldataload\n /* \"#utility.yul\":1264:1342 */\n tag_282\n /* \"#utility.yul\":1338:1341 */\n dup5\n /* \"#utility.yul\":1330:1336 */\n dup3\n /* \"#utility.yul\":1323:1327 */\n 0x20\n /* \"#utility.yul\":1315:1321 */\n dup7\n /* \"#utility.yul\":1311:1328 */\n add\n /* \"#utility.yul\":1264:1342 */\n tag_251\n jump\t// in\n tag_282:\n /* \"#utility.yul\":1255:1342 */\n swap2\n pop\n /* \"#utility.yul\":1071:1348 */\n pop\n /* \"#utility.yul\":1010:1348 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1354:1493 */\n tag_283:\n /* \"#utility.yul\":1400:1405 */\n 0x00\n /* \"#utility.yul\":1438:1444 */\n dup2\n /* \"#utility.yul\":1425:1445 */\n calldataload\n /* \"#utility.yul\":1416:1445 */\n swap1\n pop\n /* \"#utility.yul\":1454:1487 */\n tag_285\n /* \"#utility.yul\":1481:1486 */\n dup2\n /* \"#utility.yul\":1454:1487 */\n tag_286\n jump\t// in\n tag_285:\n /* \"#utility.yul\":1354:1493 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1499:1828 */\n tag_51:\n /* \"#utility.yul\":1558:1564 */\n 0x00\n /* \"#utility.yul\":1607:1609 */\n 0x20\n /* \"#utility.yul\":1595:1604 */\n dup3\n /* \"#utility.yul\":1586:1593 */\n dup5\n /* \"#utility.yul\":1582:1605 */\n sub\n /* \"#utility.yul\":1578:1610 */\n slt\n /* \"#utility.yul\":1575:1694 */\n iszero\n tag_288\n jumpi\n /* \"#utility.yul\":1613:1692 */\n tag_289\n tag_290\n jump\t// in\n tag_289:\n /* \"#utility.yul\":1575:1694 */\n tag_288:\n /* \"#utility.yul\":1733:1734 */\n 0x00\n /* \"#utility.yul\":1758:1811 */\n tag_291\n /* \"#utility.yul\":1803:1810 */\n dup5\n /* \"#utility.yul\":1794:1800 */\n dup3\n /* \"#utility.yul\":1783:1792 */\n dup6\n /* \"#utility.yul\":1779:1801 */\n add\n /* \"#utility.yul\":1758:1811 */\n tag_262\n jump\t// in\n tag_291:\n /* \"#utility.yul\":1748:1811 */\n swap2\n pop\n /* \"#utility.yul\":1704:1821 */\n pop\n /* \"#utility.yul\":1499:1828 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1834:2308 */\n tag_72:\n /* \"#utility.yul\":1902:1908 */\n 0x00\n /* \"#utility.yul\":1910:1916 */\n dup1\n /* \"#utility.yul\":1959:1961 */\n 0x40\n /* \"#utility.yul\":1947:1956 */\n dup4\n /* \"#utility.yul\":1938:1945 */\n dup6\n /* \"#utility.yul\":1934:1957 */\n sub\n /* \"#utility.yul\":1930:1962 */\n slt\n /* \"#utility.yul\":1927:2046 */\n iszero\n tag_293\n jumpi\n /* \"#utility.yul\":1965:2044 */\n tag_294\n tag_290\n jump\t// in\n tag_294:\n /* \"#utility.yul\":1927:2046 */\n tag_293:\n /* \"#utility.yul\":2085:2086 */\n 0x00\n /* \"#utility.yul\":2110:2163 */\n tag_295\n /* \"#utility.yul\":2155:2162 */\n dup6\n /* \"#utility.yul\":2146:2152 */\n dup3\n /* \"#utility.yul\":2135:2144 */\n dup7\n /* \"#utility.yul\":2131:2153 */\n add\n /* \"#utility.yul\":2110:2163 */\n tag_262\n jump\t// in\n tag_295:\n /* \"#utility.yul\":2100:2163 */\n swap3\n pop\n /* \"#utility.yul\":2056:2173 */\n pop\n /* \"#utility.yul\":2212:2214 */\n 0x20\n /* \"#utility.yul\":2238:2291 */\n tag_296\n /* \"#utility.yul\":2283:2290 */\n dup6\n /* \"#utility.yul\":2274:2280 */\n dup3\n /* \"#utility.yul\":2263:2272 */\n dup7\n /* \"#utility.yul\":2259:2281 */\n add\n /* \"#utility.yul\":2238:2291 */\n tag_262\n jump\t// in\n tag_296:\n /* \"#utility.yul\":2228:2291 */\n swap2\n pop\n /* \"#utility.yul\":2183:2301 */\n pop\n /* \"#utility.yul\":1834:2308 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2314:2933 */\n tag_40:\n /* \"#utility.yul\":2391:2397 */\n 0x00\n /* \"#utility.yul\":2399:2405 */\n dup1\n /* \"#utility.yul\":2407:2413 */\n 0x00\n /* \"#utility.yul\":2456:2458 */\n 0x60\n /* \"#utility.yul\":2444:2453 */\n dup5\n /* \"#utility.yul\":2435:2442 */\n dup7\n /* \"#utility.yul\":2431:2454 */\n sub\n /* \"#utility.yul\":2427:2459 */\n slt\n /* \"#utility.yul\":2424:2543 */\n iszero\n tag_298\n jumpi\n /* \"#utility.yul\":2462:2541 */\n tag_299\n tag_290\n jump\t// in\n tag_299:\n /* \"#utility.yul\":2424:2543 */\n tag_298:\n /* \"#utility.yul\":2582:2583 */\n 0x00\n /* \"#utility.yul\":2607:2660 */\n tag_300\n /* \"#utility.yul\":2652:2659 */\n dup7\n /* \"#utility.yul\":2643:2649 */\n dup3\n /* \"#utility.yul\":2632:2641 */\n dup8\n /* \"#utility.yul\":2628:2650 */\n add\n /* \"#utility.yul\":2607:2660 */\n tag_262\n jump\t// in\n tag_300:\n /* \"#utility.yul\":2597:2660 */\n swap4\n pop\n /* \"#utility.yul\":2553:2670 */\n pop\n /* \"#utility.yul\":2709:2711 */\n 0x20\n /* \"#utility.yul\":2735:2788 */\n tag_301\n /* \"#utility.yul\":2780:2787 */\n dup7\n /* \"#utility.yul\":2771:2777 */\n dup3\n /* \"#utility.yul\":2760:2769 */\n dup8\n /* \"#utility.yul\":2756:2778 */\n add\n /* \"#utility.yul\":2735:2788 */\n tag_262\n jump\t// in\n tag_301:\n /* \"#utility.yul\":2725:2788 */\n swap3\n pop\n /* \"#utility.yul\":2680:2798 */\n pop\n /* \"#utility.yul\":2837:2839 */\n 0x40\n /* \"#utility.yul\":2863:2916 */\n tag_302\n /* \"#utility.yul\":2908:2915 */\n dup7\n /* \"#utility.yul\":2899:2905 */\n dup3\n /* \"#utility.yul\":2888:2897 */\n dup8\n /* \"#utility.yul\":2884:2906 */\n add\n /* \"#utility.yul\":2863:2916 */\n tag_283\n jump\t// in\n tag_302:\n /* \"#utility.yul\":2853:2916 */\n swap2\n pop\n /* \"#utility.yul\":2808:2926 */\n pop\n /* \"#utility.yul\":2314:2933 */\n swap3\n pop\n swap3\n pop\n swap3\n jump\t// out\n /* \"#utility.yul\":2939:3882 */\n tag_64:\n /* \"#utility.yul\":3034:3040 */\n 0x00\n /* \"#utility.yul\":3042:3048 */\n dup1\n /* \"#utility.yul\":3050:3056 */\n 0x00\n /* \"#utility.yul\":3058:3064 */\n dup1\n /* \"#utility.yul\":3107:3110 */\n 0x80\n /* \"#utility.yul\":3095:3104 */\n dup6\n /* \"#utility.yul\":3086:3093 */\n dup8\n /* \"#utility.yul\":3082:3105 */\n sub\n /* \"#utility.yul\":3078:3111 */\n slt\n /* \"#utility.yul\":3075:3195 */\n iszero\n tag_304\n jumpi\n /* \"#utility.yul\":3114:3193 */\n tag_305\n tag_290\n jump\t// in\n tag_305:\n /* \"#utility.yul\":3075:3195 */\n tag_304:\n /* \"#utility.yul\":3234:3235 */\n 0x00\n /* \"#utility.yul\":3259:3312 */\n tag_306\n /* \"#utility.yul\":3304:3311 */\n dup8\n /* \"#utility.yul\":3295:3301 */\n dup3\n /* \"#utility.yul\":3284:3293 */\n dup9\n /* \"#utility.yul\":3280:3302 */\n add\n /* \"#utility.yul\":3259:3312 */\n tag_262\n jump\t// in\n tag_306:\n /* \"#utility.yul\":3249:3312 */\n swap5\n pop\n /* \"#utility.yul\":3205:3322 */\n pop\n /* \"#utility.yul\":3361:3363 */\n 0x20\n /* \"#utility.yul\":3387:3440 */\n tag_307\n /* \"#utility.yul\":3432:3439 */\n dup8\n /* \"#utility.yul\":3423:3429 */\n dup3\n /* \"#utility.yul\":3412:3421 */\n dup9\n /* \"#utility.yul\":3408:3430 */\n add\n /* \"#utility.yul\":3387:3440 */\n tag_262\n jump\t// in\n tag_307:\n /* \"#utility.yul\":3377:3440 */\n swap4\n pop\n /* \"#utility.yul\":3332:3450 */\n pop\n /* \"#utility.yul\":3489:3491 */\n 0x40\n /* \"#utility.yul\":3515:3568 */\n tag_308\n /* \"#utility.yul\":3560:3567 */\n dup8\n /* \"#utility.yul\":3551:3557 */\n dup3\n /* \"#utility.yul\":3540:3549 */\n dup9\n /* \"#utility.yul\":3536:3558 */\n add\n /* \"#utility.yul\":3515:3568 */\n tag_283\n jump\t// in\n tag_308:\n /* \"#utility.yul\":3505:3568 */\n swap3\n pop\n /* \"#utility.yul\":3460:3578 */\n pop\n /* \"#utility.yul\":3645:3647 */\n 0x60\n /* \"#utility.yul\":3634:3643 */\n dup6\n /* \"#utility.yul\":3630:3648 */\n add\n /* \"#utility.yul\":3617:3649 */\n calldataload\n /* \"#utility.yul\":3676:3694 */\n 0xffffffffffffffff\n /* \"#utility.yul\":3668:3674 */\n dup2\n /* \"#utility.yul\":3665:3695 */\n gt\n /* \"#utility.yul\":3662:3779 */\n iszero\n tag_309\n jumpi\n /* \"#utility.yul\":3698:3777 */\n tag_310\n tag_311\n jump\t// in\n tag_310:\n /* \"#utility.yul\":3662:3779 */\n tag_309:\n /* \"#utility.yul\":3803:3865 */\n tag_312\n /* \"#utility.yul\":3857:3864 */\n dup8\n /* \"#utility.yul\":3848:3854 */\n dup3\n /* \"#utility.yul\":3837:3846 */\n dup9\n /* \"#utility.yul\":3833:3855 */\n add\n /* \"#utility.yul\":3803:3865 */\n tag_277\n jump\t// in\n tag_312:\n /* \"#utility.yul\":3793:3865 */\n swap2\n pop\n /* \"#utility.yul\":3588:3875 */\n pop\n /* \"#utility.yul\":2939:3882 */\n swap3\n swap6\n swap2\n swap5\n pop\n swap3\n pop\n jump\t// out\n /* \"#utility.yul\":3888:4356 */\n tag_60:\n /* \"#utility.yul\":3953:3959 */\n 0x00\n /* \"#utility.yul\":3961:3967 */\n dup1\n /* \"#utility.yul\":4010:4012 */\n 0x40\n /* \"#utility.yul\":3998:4007 */\n dup4\n /* \"#utility.yul\":3989:3996 */\n dup6\n /* \"#utility.yul\":3985:4008 */\n sub\n /* \"#utility.yul\":3981:4013 */\n slt\n /* \"#utility.yul\":3978:4097 */\n iszero\n tag_314\n jumpi\n /* \"#utility.yul\":4016:4095 */\n tag_315\n tag_290\n jump\t// in\n tag_315:\n /* \"#utility.yul\":3978:4097 */\n tag_314:\n /* \"#utility.yul\":4136:4137 */\n 0x00\n /* \"#utility.yul\":4161:4214 */\n tag_316\n /* \"#utility.yul\":4206:4213 */\n dup6\n /* \"#utility.yul\":4197:4203 */\n dup3\n /* \"#utility.yul\":4186:4195 */\n dup7\n /* \"#utility.yul\":4182:4204 */\n add\n /* \"#utility.yul\":4161:4214 */\n tag_262\n jump\t// in\n tag_316:\n /* \"#utility.yul\":4151:4214 */\n swap3\n pop\n /* \"#utility.yul\":4107:4224 */\n pop\n /* \"#utility.yul\":4263:4265 */\n 0x20\n /* \"#utility.yul\":4289:4339 */\n tag_317\n /* \"#utility.yul\":4331:4338 */\n dup6\n /* \"#utility.yul\":4322:4328 */\n dup3\n /* \"#utility.yul\":4311:4320 */\n dup7\n /* \"#utility.yul\":4307:4329 */\n add\n /* \"#utility.yul\":4289:4339 */\n tag_266\n jump\t// in\n tag_317:\n /* \"#utility.yul\":4279:4339 */\n swap2\n pop\n /* \"#utility.yul\":4234:4349 */\n pop\n /* \"#utility.yul\":3888:4356 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4362:4836 */\n tag_36:\n /* \"#utility.yul\":4430:4436 */\n 0x00\n /* \"#utility.yul\":4438:4444 */\n dup1\n /* \"#utility.yul\":4487:4489 */\n 0x40\n /* \"#utility.yul\":4475:4484 */\n dup4\n /* \"#utility.yul\":4466:4473 */\n dup6\n /* \"#utility.yul\":4462:4485 */\n sub\n /* \"#utility.yul\":4458:4490 */\n slt\n /* \"#utility.yul\":4455:4574 */\n iszero\n tag_319\n jumpi\n /* \"#utility.yul\":4493:4572 */\n tag_320\n tag_290\n jump\t// in\n tag_320:\n /* \"#utility.yul\":4455:4574 */\n tag_319:\n /* \"#utility.yul\":4613:4614 */\n 0x00\n /* \"#utility.yul\":4638:4691 */\n tag_321\n /* \"#utility.yul\":4683:4690 */\n dup6\n /* \"#utility.yul\":4674:4680 */\n dup3\n /* \"#utility.yul\":4663:4672 */\n dup7\n /* \"#utility.yul\":4659:4681 */\n add\n /* \"#utility.yul\":4638:4691 */\n tag_262\n jump\t// in\n tag_321:\n /* \"#utility.yul\":4628:4691 */\n swap3\n pop\n /* \"#utility.yul\":4584:4701 */\n pop\n /* \"#utility.yul\":4740:4742 */\n 0x20\n /* \"#utility.yul\":4766:4819 */\n tag_322\n /* \"#utility.yul\":4811:4818 */\n dup6\n /* \"#utility.yul\":4802:4808 */\n dup3\n /* \"#utility.yul\":4791:4800 */\n dup7\n /* \"#utility.yul\":4787:4809 */\n add\n /* \"#utility.yul\":4766:4819 */\n tag_283\n jump\t// in\n tag_322:\n /* \"#utility.yul\":4756:4819 */\n swap2\n pop\n /* \"#utility.yul\":4711:4829 */\n pop\n /* \"#utility.yul\":4362:4836 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4842:5169 */\n tag_20:\n /* \"#utility.yul\":4900:4906 */\n 0x00\n /* \"#utility.yul\":4949:4951 */\n 0x20\n /* \"#utility.yul\":4937:4946 */\n dup3\n /* \"#utility.yul\":4928:4935 */\n dup5\n /* \"#utility.yul\":4924:4947 */\n sub\n /* \"#utility.yul\":4920:4952 */\n slt\n /* \"#utility.yul\":4917:5036 */\n iszero\n tag_324\n jumpi\n /* \"#utility.yul\":4955:5034 */\n tag_325\n tag_290\n jump\t// in\n tag_325:\n /* \"#utility.yul\":4917:5036 */\n tag_324:\n /* \"#utility.yul\":5075:5076 */\n 0x00\n /* \"#utility.yul\":5100:5152 */\n tag_326\n /* \"#utility.yul\":5144:5151 */\n dup5\n /* \"#utility.yul\":5135:5141 */\n dup3\n /* \"#utility.yul\":5124:5133 */\n dup6\n /* \"#utility.yul\":5120:5142 */\n add\n /* \"#utility.yul\":5100:5152 */\n tag_270\n jump\t// in\n tag_326:\n /* \"#utility.yul\":5090:5152 */\n swap2\n pop\n /* \"#utility.yul\":5046:5162 */\n pop\n /* \"#utility.yul\":4842:5169 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5175:5524 */\n tag_237:\n /* \"#utility.yul\":5244:5250 */\n 0x00\n /* \"#utility.yul\":5293:5295 */\n 0x20\n /* \"#utility.yul\":5281:5290 */\n dup3\n /* \"#utility.yul\":5272:5279 */\n dup5\n /* \"#utility.yul\":5268:5291 */\n sub\n /* \"#utility.yul\":5264:5296 */\n slt\n /* \"#utility.yul\":5261:5380 */\n iszero\n tag_328\n jumpi\n /* \"#utility.yul\":5299:5378 */\n tag_329\n tag_290\n jump\t// in\n tag_329:\n /* \"#utility.yul\":5261:5380 */\n tag_328:\n /* \"#utility.yul\":5419:5420 */\n 0x00\n /* \"#utility.yul\":5444:5507 */\n tag_330\n /* \"#utility.yul\":5499:5506 */\n dup5\n /* \"#utility.yul\":5490:5496 */\n dup3\n /* \"#utility.yul\":5479:5488 */\n dup6\n /* \"#utility.yul\":5475:5497 */\n add\n /* \"#utility.yul\":5444:5507 */\n tag_274\n jump\t// in\n tag_330:\n /* \"#utility.yul\":5434:5507 */\n swap2\n pop\n /* \"#utility.yul\":5390:5517 */\n pop\n /* \"#utility.yul\":5175:5524 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5530:5859 */\n tag_30:\n /* \"#utility.yul\":5589:5595 */\n 0x00\n /* \"#utility.yul\":5638:5640 */\n 0x20\n /* \"#utility.yul\":5626:5635 */\n dup3\n /* \"#utility.yul\":5617:5624 */\n dup5\n /* \"#utility.yul\":5613:5636 */\n sub\n /* \"#utility.yul\":5609:5641 */\n slt\n /* \"#utility.yul\":5606:5725 */\n iszero\n tag_332\n jumpi\n /* \"#utility.yul\":5644:5723 */\n tag_333\n tag_290\n jump\t// in\n tag_333:\n /* \"#utility.yul\":5606:5725 */\n tag_332:\n /* \"#utility.yul\":5764:5765 */\n 0x00\n /* \"#utility.yul\":5789:5842 */\n tag_334\n /* \"#utility.yul\":5834:5841 */\n dup5\n /* \"#utility.yul\":5825:5831 */\n dup3\n /* \"#utility.yul\":5814:5823 */\n dup6\n /* \"#utility.yul\":5810:5832 */\n add\n /* \"#utility.yul\":5789:5842 */\n tag_283\n jump\t// in\n tag_334:\n /* \"#utility.yul\":5779:5842 */\n swap2\n pop\n /* \"#utility.yul\":5735:5852 */\n pop\n /* \"#utility.yul\":5530:5859 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5865:5983 */\n tag_335:\n /* \"#utility.yul\":5952:5976 */\n tag_337\n /* \"#utility.yul\":5970:5975 */\n dup2\n /* \"#utility.yul\":5952:5976 */\n tag_338\n jump\t// in\n tag_337:\n /* \"#utility.yul\":5947:5950 */\n dup3\n /* \"#utility.yul\":5940:5977 */\n mstore\n /* \"#utility.yul\":5865:5983 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5989:6098 */\n tag_339:\n /* \"#utility.yul\":6070:6091 */\n tag_341\n /* \"#utility.yul\":6085:6090 */\n dup2\n /* \"#utility.yul\":6070:6091 */\n tag_342\n jump\t// in\n tag_341:\n /* \"#utility.yul\":6065:6068 */\n dup3\n /* \"#utility.yul\":6058:6092 */\n mstore\n /* \"#utility.yul\":5989:6098 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6104:6464 */\n tag_343:\n /* \"#utility.yul\":6190:6193 */\n 0x00\n /* \"#utility.yul\":6218:6256 */\n tag_345\n /* \"#utility.yul\":6250:6255 */\n dup3\n /* \"#utility.yul\":6218:6256 */\n tag_346\n jump\t// in\n tag_345:\n /* \"#utility.yul\":6272:6342 */\n tag_347\n /* \"#utility.yul\":6335:6341 */\n dup2\n /* \"#utility.yul\":6330:6333 */\n dup6\n /* \"#utility.yul\":6272:6342 */\n tag_348\n jump\t// in\n tag_347:\n /* \"#utility.yul\":6265:6342 */\n swap4\n pop\n /* \"#utility.yul\":6351:6403 */\n tag_349\n /* \"#utility.yul\":6396:6402 */\n dup2\n /* \"#utility.yul\":6391:6394 */\n dup6\n /* \"#utility.yul\":6384:6388 */\n 0x20\n /* \"#utility.yul\":6377:6382 */\n dup7\n /* \"#utility.yul\":6373:6389 */\n add\n /* \"#utility.yul\":6351:6403 */\n tag_350\n jump\t// in\n tag_349:\n /* \"#utility.yul\":6428:6457 */\n tag_351\n /* \"#utility.yul\":6450:6456 */\n dup2\n /* \"#utility.yul\":6428:6457 */\n tag_352\n jump\t// in\n tag_351:\n /* \"#utility.yul\":6423:6426 */\n dup5\n /* \"#utility.yul\":6419:6458 */\n add\n /* \"#utility.yul\":6412:6458 */\n swap2\n pop\n /* \"#utility.yul\":6194:6464 */\n pop\n /* \"#utility.yul\":6104:6464 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6470:6834 */\n tag_353:\n /* \"#utility.yul\":6558:6561 */\n 0x00\n /* \"#utility.yul\":6586:6625 */\n tag_355\n /* \"#utility.yul\":6619:6624 */\n dup3\n /* \"#utility.yul\":6586:6625 */\n tag_356\n jump\t// in\n tag_355:\n /* \"#utility.yul\":6641:6712 */\n tag_357\n /* \"#utility.yul\":6705:6711 */\n dup2\n /* \"#utility.yul\":6700:6703 */\n dup6\n /* \"#utility.yul\":6641:6712 */\n tag_358\n jump\t// in\n tag_357:\n /* \"#utility.yul\":6634:6712 */\n swap4\n pop\n /* \"#utility.yul\":6721:6773 */\n tag_359\n /* \"#utility.yul\":6766:6772 */\n dup2\n /* \"#utility.yul\":6761:6764 */\n dup6\n /* \"#utility.yul\":6754:6758 */\n 0x20\n /* \"#utility.yul\":6747:6752 */\n dup7\n /* \"#utility.yul\":6743:6759 */\n add\n /* \"#utility.yul\":6721:6773 */\n tag_350\n jump\t// in\n tag_359:\n /* \"#utility.yul\":6798:6827 */\n tag_360\n /* \"#utility.yul\":6820:6826 */\n dup2\n /* \"#utility.yul\":6798:6827 */\n tag_352\n jump\t// in\n tag_360:\n /* \"#utility.yul\":6793:6796 */\n dup5\n /* \"#utility.yul\":6789:6828 */\n add\n /* \"#utility.yul\":6782:6828 */\n swap2\n pop\n /* \"#utility.yul\":6562:6834 */\n pop\n /* \"#utility.yul\":6470:6834 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6840:7217 */\n tag_361:\n /* \"#utility.yul\":6946:6949 */\n 0x00\n /* \"#utility.yul\":6974:7013 */\n tag_363\n /* \"#utility.yul\":7007:7012 */\n dup3\n /* \"#utility.yul\":6974:7013 */\n tag_356\n jump\t// in\n tag_363:\n /* \"#utility.yul\":7029:7118 */\n tag_364\n /* \"#utility.yul\":7111:7117 */\n dup2\n /* \"#utility.yul\":7106:7109 */\n dup6\n /* \"#utility.yul\":7029:7118 */\n tag_365\n jump\t// in\n tag_364:\n /* \"#utility.yul\":7022:7118 */\n swap4\n pop\n /* \"#utility.yul\":7127:7179 */\n tag_366\n /* \"#utility.yul\":7172:7178 */\n dup2\n /* \"#utility.yul\":7167:7170 */\n dup6\n /* \"#utility.yul\":7160:7164 */\n 0x20\n /* \"#utility.yul\":7153:7158 */\n dup7\n /* \"#utility.yul\":7149:7165 */\n add\n /* \"#utility.yul\":7127:7179 */\n tag_350\n jump\t// in\n tag_366:\n /* \"#utility.yul\":7204:7210 */\n dup1\n /* \"#utility.yul\":7199:7202 */\n dup5\n /* \"#utility.yul\":7195:7211 */\n add\n /* \"#utility.yul\":7188:7211 */\n swap2\n pop\n /* \"#utility.yul\":6950:7217 */\n pop\n /* \"#utility.yul\":6840:7217 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7223:7589 */\n tag_367:\n /* \"#utility.yul\":7365:7368 */\n 0x00\n /* \"#utility.yul\":7386:7453 */\n tag_369\n /* \"#utility.yul\":7450:7452 */\n 0x32\n /* \"#utility.yul\":7445:7448 */\n dup4\n /* \"#utility.yul\":7386:7453 */\n tag_358\n jump\t// in\n tag_369:\n /* \"#utility.yul\":7379:7453 */\n swap2\n pop\n /* \"#utility.yul\":7462:7555 */\n tag_370\n /* \"#utility.yul\":7551:7554 */\n dup3\n /* \"#utility.yul\":7462:7555 */\n tag_371\n jump\t// in\n tag_370:\n /* \"#utility.yul\":7580:7582 */\n 0x40\n /* \"#utility.yul\":7575:7578 */\n dup3\n /* \"#utility.yul\":7571:7583 */\n add\n /* \"#utility.yul\":7564:7583 */\n swap1\n pop\n /* \"#utility.yul\":7223:7589 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7595:7961 */\n tag_372:\n /* \"#utility.yul\":7737:7740 */\n 0x00\n /* \"#utility.yul\":7758:7825 */\n tag_374\n /* \"#utility.yul\":7822:7824 */\n 0x25\n /* \"#utility.yul\":7817:7820 */\n dup4\n /* \"#utility.yul\":7758:7825 */\n tag_358\n jump\t// in\n tag_374:\n /* \"#utility.yul\":7751:7825 */\n swap2\n pop\n /* \"#utility.yul\":7834:7927 */\n tag_375\n /* \"#utility.yul\":7923:7926 */\n dup3\n /* \"#utility.yul\":7834:7927 */\n tag_376\n jump\t// in\n tag_375:\n /* \"#utility.yul\":7952:7954 */\n 0x40\n /* \"#utility.yul\":7947:7950 */\n dup3\n /* \"#utility.yul\":7943:7955 */\n add\n /* \"#utility.yul\":7936:7955 */\n swap1\n pop\n /* \"#utility.yul\":7595:7961 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7967:8333 */\n tag_377:\n /* \"#utility.yul\":8109:8112 */\n 0x00\n /* \"#utility.yul\":8130:8197 */\n tag_379\n /* \"#utility.yul\":8194:8196 */\n 0x24\n /* \"#utility.yul\":8189:8192 */\n dup4\n /* \"#utility.yul\":8130:8197 */\n tag_358\n jump\t// in\n tag_379:\n /* \"#utility.yul\":8123:8197 */\n swap2\n pop\n /* \"#utility.yul\":8206:8299 */\n tag_380\n /* \"#utility.yul\":8295:8298 */\n dup3\n /* \"#utility.yul\":8206:8299 */\n tag_381\n jump\t// in\n tag_380:\n /* \"#utility.yul\":8324:8326 */\n 0x40\n /* \"#utility.yul\":8319:8322 */\n dup3\n /* \"#utility.yul\":8315:8327 */\n add\n /* \"#utility.yul\":8308:8327 */\n swap1\n pop\n /* \"#utility.yul\":7967:8333 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":8339:8705 */\n tag_382:\n /* \"#utility.yul\":8481:8484 */\n 0x00\n /* \"#utility.yul\":8502:8569 */\n tag_384\n /* \"#utility.yul\":8566:8568 */\n 0x19\n /* \"#utility.yul\":8561:8564 */\n dup4\n /* \"#utility.yul\":8502:8569 */\n tag_358\n jump\t// in\n tag_384:\n /* \"#utility.yul\":8495:8569 */\n swap2\n pop\n /* \"#utility.yul\":8578:8671 */\n tag_385\n /* \"#utility.yul\":8667:8670 */\n dup3\n /* \"#utility.yul\":8578:8671 */\n tag_386\n jump\t// in\n tag_385:\n /* \"#utility.yul\":8696:8698 */\n 0x20\n /* \"#utility.yul\":8691:8694 */\n dup3\n /* \"#utility.yul\":8687:8699 */\n add\n /* \"#utility.yul\":8680:8699 */\n swap1\n pop\n /* \"#utility.yul\":8339:8705 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":8711:9077 */\n tag_387:\n /* \"#utility.yul\":8853:8856 */\n 0x00\n /* \"#utility.yul\":8874:8941 */\n tag_389\n /* \"#utility.yul\":8938:8940 */\n 0x2c\n /* \"#utility.yul\":8933:8936 */\n dup4\n /* \"#utility.yul\":8874:8941 */\n tag_358\n jump\t// in\n tag_389:\n /* \"#utility.yul\":8867:8941 */\n swap2\n pop\n /* \"#utility.yul\":8950:9043 */\n tag_390\n /* \"#utility.yul\":9039:9042 */\n dup3\n /* \"#utility.yul\":8950:9043 */\n tag_391\n jump\t// in\n tag_390:\n /* \"#utility.yul\":9068:9070 */\n 0x40\n /* \"#utility.yul\":9063:9066 */\n dup3\n /* \"#utility.yul\":9059:9071 */\n add\n /* \"#utility.yul\":9052:9071 */\n swap1\n pop\n /* \"#utility.yul\":8711:9077 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":9083:9449 */\n tag_392:\n /* \"#utility.yul\":9225:9228 */\n 0x00\n /* \"#utility.yul\":9246:9313 */\n tag_394\n /* \"#utility.yul\":9310:9312 */\n 0x38\n /* \"#utility.yul\":9305:9308 */\n dup4\n /* \"#utility.yul\":9246:9313 */\n tag_358\n jump\t// in\n tag_394:\n /* \"#utility.yul\":9239:9313 */\n swap2\n pop\n /* \"#utility.yul\":9322:9415 */\n tag_395\n /* \"#utility.yul\":9411:9414 */\n dup3\n /* \"#utility.yul\":9322:9415 */\n tag_396\n jump\t// in\n tag_395:\n /* \"#utility.yul\":9440:9442 */\n 0x40\n /* \"#utility.yul\":9435:9438 */\n dup3\n /* \"#utility.yul\":9431:9443 */\n add\n /* \"#utility.yul\":9424:9443 */\n swap1\n pop\n /* \"#utility.yul\":9083:9449 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":9455:9821 */\n tag_397:\n /* \"#utility.yul\":9597:9600 */\n 0x00\n /* \"#utility.yul\":9618:9685 */\n tag_399\n /* \"#utility.yul\":9682:9684 */\n 0x2a\n /* \"#utility.yul\":9677:9680 */\n dup4\n /* \"#utility.yul\":9618:9685 */\n tag_358\n jump\t// in\n tag_399:\n /* \"#utility.yul\":9611:9685 */\n swap2\n pop\n /* \"#utility.yul\":9694:9787 */\n tag_400\n /* \"#utility.yul\":9783:9786 */\n dup3\n /* \"#utility.yul\":9694:9787 */\n tag_401\n jump\t// in\n tag_400:\n /* \"#utility.yul\":9812:9814 */\n 0x40\n /* \"#utility.yul\":9807:9810 */\n dup3\n /* \"#utility.yul\":9803:9815 */\n add\n /* \"#utility.yul\":9796:9815 */\n swap1\n pop\n /* \"#utility.yul\":9455:9821 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":9827:10193 */\n tag_402:\n /* \"#utility.yul\":9969:9972 */\n 0x00\n /* \"#utility.yul\":9990:10057 */\n tag_404\n /* \"#utility.yul\":10054:10056 */\n 0x29\n /* \"#utility.yul\":10049:10052 */\n dup4\n /* \"#utility.yul\":9990:10057 */\n tag_358\n jump\t// in\n tag_404:\n /* \"#utility.yul\":9983:10057 */\n swap2\n pop\n /* \"#utility.yul\":10066:10159 */\n tag_405\n /* \"#utility.yul\":10155:10158 */\n dup3\n /* \"#utility.yul\":10066:10159 */\n tag_406\n jump\t// in\n tag_405:\n /* \"#utility.yul\":10184:10186 */\n 0x40\n /* \"#utility.yul\":10179:10182 */\n dup3\n /* \"#utility.yul\":10175:10187 */\n add\n /* \"#utility.yul\":10168:10187 */\n swap1\n pop\n /* \"#utility.yul\":9827:10193 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":10199:10565 */\n tag_407:\n /* \"#utility.yul\":10341:10344 */\n 0x00\n /* \"#utility.yul\":10362:10429 */\n tag_409\n /* \"#utility.yul\":10426:10428 */\n 0x2c\n /* \"#utility.yul\":10421:10424 */\n dup4\n /* \"#utility.yul\":10362:10429 */\n tag_358\n jump\t// in\n tag_409:\n /* \"#utility.yul\":10355:10429 */\n swap2\n pop\n /* \"#utility.yul\":10438:10531 */\n tag_410\n /* \"#utility.yul\":10527:10530 */\n dup3\n /* \"#utility.yul\":10438:10531 */\n tag_411\n jump\t// in\n tag_410:\n /* \"#utility.yul\":10556:10558 */\n 0x40\n /* \"#utility.yul\":10551:10554 */\n dup3\n /* \"#utility.yul\":10547:10559 */\n add\n /* \"#utility.yul\":10540:10559 */\n swap1\n pop\n /* \"#utility.yul\":10199:10565 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":10571:10937 */\n tag_412:\n /* \"#utility.yul\":10713:10716 */\n 0x00\n /* \"#utility.yul\":10734:10801 */\n tag_414\n /* \"#utility.yul\":10798:10800 */\n 0x2f\n /* \"#utility.yul\":10793:10796 */\n dup4\n /* \"#utility.yul\":10734:10801 */\n tag_358\n jump\t// in\n tag_414:\n /* \"#utility.yul\":10727:10801 */\n swap2\n pop\n /* \"#utility.yul\":10810:10903 */\n tag_415\n /* \"#utility.yul\":10899:10902 */\n dup3\n /* \"#utility.yul\":10810:10903 */\n tag_416\n jump\t// in\n tag_415:\n /* \"#utility.yul\":10928:10930 */\n 0x40\n /* \"#utility.yul\":10923:10926 */\n dup3\n /* \"#utility.yul\":10919:10931 */\n add\n /* \"#utility.yul\":10912:10931 */\n swap1\n pop\n /* \"#utility.yul\":10571:10937 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":10943:11309 */\n tag_417:\n /* \"#utility.yul\":11085:11088 */\n 0x00\n /* \"#utility.yul\":11106:11173 */\n tag_419\n /* \"#utility.yul\":11170:11172 */\n 0x21\n /* \"#utility.yul\":11165:11168 */\n dup4\n /* \"#utility.yul\":11106:11173 */\n tag_358\n jump\t// in\n tag_419:\n /* \"#utility.yul\":11099:11173 */\n swap2\n pop\n /* \"#utility.yul\":11182:11275 */\n tag_420\n /* \"#utility.yul\":11271:11274 */\n dup3\n /* \"#utility.yul\":11182:11275 */\n tag_421\n jump\t// in\n tag_420:\n /* \"#utility.yul\":11300:11302 */\n 0x40\n /* \"#utility.yul\":11295:11298 */\n dup3\n /* \"#utility.yul\":11291:11303 */\n add\n /* \"#utility.yul\":11284:11303 */\n swap1\n pop\n /* \"#utility.yul\":10943:11309 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":11315:11681 */\n tag_422:\n /* \"#utility.yul\":11457:11460 */\n 0x00\n /* \"#utility.yul\":11478:11545 */\n tag_424\n /* \"#utility.yul\":11542:11544 */\n 0x31\n /* \"#utility.yul\":11537:11540 */\n dup4\n /* \"#utility.yul\":11478:11545 */\n tag_358\n jump\t// in\n tag_424:\n /* \"#utility.yul\":11471:11545 */\n swap2\n pop\n /* \"#utility.yul\":11554:11647 */\n tag_425\n /* \"#utility.yul\":11643:11646 */\n dup3\n /* \"#utility.yul\":11554:11647 */\n tag_426\n jump\t// in\n tag_425:\n /* \"#utility.yul\":11672:11674 */\n 0x40\n /* \"#utility.yul\":11667:11670 */\n dup3\n /* \"#utility.yul\":11663:11675 */\n add\n /* \"#utility.yul\":11656:11675 */\n swap1\n pop\n /* \"#utility.yul\":11315:11681 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":11687:11805 */\n tag_427:\n /* \"#utility.yul\":11774:11798 */\n tag_429\n /* \"#utility.yul\":11792:11797 */\n dup2\n /* \"#utility.yul\":11774:11798 */\n tag_430\n jump\t// in\n tag_429:\n /* \"#utility.yul\":11769:11772 */\n dup3\n /* \"#utility.yul\":11762:11799 */\n mstore\n /* \"#utility.yul\":11687:11805 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":11811:12246 */\n tag_156:\n /* \"#utility.yul\":11991:11994 */\n 0x00\n /* \"#utility.yul\":12013:12108 */\n tag_432\n /* \"#utility.yul\":12104:12107 */\n dup3\n /* \"#utility.yul\":12095:12101 */\n dup6\n /* \"#utility.yul\":12013:12108 */\n tag_361\n jump\t// in\n tag_432:\n /* \"#utility.yul\":12006:12108 */\n swap2\n pop\n /* \"#utility.yul\":12125:12220 */\n tag_433\n /* \"#utility.yul\":12216:12219 */\n dup3\n /* \"#utility.yul\":12207:12213 */\n dup5\n /* \"#utility.yul\":12125:12220 */\n tag_361\n jump\t// in\n tag_433:\n /* \"#utility.yul\":12118:12220 */\n swap2\n pop\n /* \"#utility.yul\":12237:12240 */\n dup2\n /* \"#utility.yul\":12230:12240 */\n swap1\n pop\n /* \"#utility.yul\":11811:12246 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":12252:12474 */\n tag_33:\n /* \"#utility.yul\":12345:12349 */\n 0x00\n /* \"#utility.yul\":12383:12385 */\n 0x20\n /* \"#utility.yul\":12372:12381 */\n dup3\n /* \"#utility.yul\":12368:12386 */\n add\n /* \"#utility.yul\":12360:12386 */\n swap1\n pop\n /* \"#utility.yul\":12396:12467 */\n tag_435\n /* \"#utility.yul\":12464:12465 */\n 0x00\n /* \"#utility.yul\":12453:12462 */\n dup4\n /* \"#utility.yul\":12449:12466 */\n add\n /* \"#utility.yul\":12440:12446 */\n dup5\n /* \"#utility.yul\":12396:12467 */\n tag_335\n jump\t// in\n tag_435:\n /* \"#utility.yul\":12252:12474 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":12480:13120 */\n tag_233:\n /* \"#utility.yul\":12675:12679 */\n 0x00\n /* \"#utility.yul\":12713:12716 */\n 0x80\n /* \"#utility.yul\":12702:12711 */\n dup3\n /* \"#utility.yul\":12698:12717 */\n add\n /* \"#utility.yul\":12690:12717 */\n swap1\n pop\n /* \"#utility.yul\":12727:12798 */\n tag_437\n /* \"#utility.yul\":12795:12796 */\n 0x00\n /* \"#utility.yul\":12784:12793 */\n dup4\n /* \"#utility.yul\":12780:12797 */\n add\n /* \"#utility.yul\":12771:12777 */\n dup8\n /* \"#utility.yul\":12727:12798 */\n tag_335\n jump\t// in\n tag_437:\n /* \"#utility.yul\":12808:12880 */\n tag_438\n /* \"#utility.yul\":12876:12878 */\n 0x20\n /* \"#utility.yul\":12865:12874 */\n dup4\n /* \"#utility.yul\":12861:12879 */\n add\n /* \"#utility.yul\":12852:12858 */\n dup7\n /* \"#utility.yul\":12808:12880 */\n tag_335\n jump\t// in\n tag_438:\n /* \"#utility.yul\":12890:12962 */\n tag_439\n /* \"#utility.yul\":12958:12960 */\n 0x40\n /* \"#utility.yul\":12947:12956 */\n dup4\n /* \"#utility.yul\":12943:12961 */\n add\n /* \"#utility.yul\":12934:12940 */\n dup6\n /* \"#utility.yul\":12890:12962 */\n tag_427\n jump\t// in\n tag_439:\n /* \"#utility.yul\":13009:13018 */\n dup2\n /* \"#utility.yul\":13003:13007 */\n dup2\n /* \"#utility.yul\":12999:13019 */\n sub\n /* \"#utility.yul\":12994:12996 */\n 0x60\n /* \"#utility.yul\":12983:12992 */\n dup4\n /* \"#utility.yul\":12979:12997 */\n add\n /* \"#utility.yul\":12972:13020 */\n mstore\n /* \"#utility.yul\":13037:13113 */\n tag_440\n /* \"#utility.yul\":13108:13112 */\n dup2\n /* \"#utility.yul\":13099:13105 */\n dup5\n /* \"#utility.yul\":13037:13113 */\n tag_343\n jump\t// in\n tag_440:\n /* \"#utility.yul\":13029:13113 */\n swap1\n pop\n /* \"#utility.yul\":12480:13120 */\n swap6\n swap5\n pop\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":13126:13336 */\n tag_23:\n /* \"#utility.yul\":13213:13217 */\n 0x00\n /* \"#utility.yul\":13251:13253 */\n 0x20\n /* \"#utility.yul\":13240:13249 */\n dup3\n /* \"#utility.yul\":13236:13254 */\n add\n /* \"#utility.yul\":13228:13254 */\n swap1\n pop\n /* \"#utility.yul\":13264:13329 */\n tag_442\n /* \"#utility.yul\":13326:13327 */\n 0x00\n /* \"#utility.yul\":13315:13324 */\n dup4\n /* \"#utility.yul\":13311:13328 */\n add\n /* \"#utility.yul\":13302:13308 */\n dup5\n /* \"#utility.yul\":13264:13329 */\n tag_339\n jump\t// in\n tag_442:\n /* \"#utility.yul\":13126:13336 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":13342:13655 */\n tag_27:\n /* \"#utility.yul\":13455:13459 */\n 0x00\n /* \"#utility.yul\":13493:13495 */\n 0x20\n /* \"#utility.yul\":13482:13491 */\n dup3\n /* \"#utility.yul\":13478:13496 */\n add\n /* \"#utility.yul\":13470:13496 */\n swap1\n pop\n /* \"#utility.yul\":13542:13551 */\n dup2\n /* \"#utility.yul\":13536:13540 */\n dup2\n /* \"#utility.yul\":13532:13552 */\n sub\n /* \"#utility.yul\":13528:13529 */\n 0x00\n /* \"#utility.yul\":13517:13526 */\n dup4\n /* \"#utility.yul\":13513:13530 */\n add\n /* \"#utility.yul\":13506:13553 */\n mstore\n /* \"#utility.yul\":13570:13648 */\n tag_444\n /* \"#utility.yul\":13643:13647 */\n dup2\n /* \"#utility.yul\":13634:13640 */\n dup5\n /* \"#utility.yul\":13570:13648 */\n tag_353\n jump\t// in\n tag_444:\n /* \"#utility.yul\":13562:13648 */\n swap1\n pop\n /* \"#utility.yul\":13342:13655 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":13661:14080 */\n tag_201:\n /* \"#utility.yul\":13827:13831 */\n 0x00\n /* \"#utility.yul\":13865:13867 */\n 0x20\n /* \"#utility.yul\":13854:13863 */\n dup3\n /* \"#utility.yul\":13850:13868 */\n add\n /* \"#utility.yul\":13842:13868 */\n swap1\n pop\n /* \"#utility.yul\":13914:13923 */\n dup2\n /* \"#utility.yul\":13908:13912 */\n dup2\n /* \"#utility.yul\":13904:13924 */\n sub\n /* \"#utility.yul\":13900:13901 */\n 0x00\n /* \"#utility.yul\":13889:13898 */\n dup4\n /* \"#utility.yul\":13885:13902 */\n add\n /* \"#utility.yul\":13878:13925 */\n mstore\n /* \"#utility.yul\":13942:14073 */\n tag_446\n /* \"#utility.yul\":14068:14072 */\n dup2\n /* \"#utility.yul\":13942:14073 */\n tag_367\n jump\t// in\n tag_446:\n /* \"#utility.yul\":13934:14073 */\n swap1\n pop\n /* \"#utility.yul\":13661:14080 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":14086:14505 */\n tag_177:\n /* \"#utility.yul\":14252:14256 */\n 0x00\n /* \"#utility.yul\":14290:14292 */\n 0x20\n /* \"#utility.yul\":14279:14288 */\n dup3\n /* \"#utility.yul\":14275:14293 */\n add\n /* \"#utility.yul\":14267:14293 */\n swap1\n pop\n /* \"#utility.yul\":14339:14348 */\n dup2\n /* \"#utility.yul\":14333:14337 */\n dup2\n /* \"#utility.yul\":14329:14349 */\n sub\n /* \"#utility.yul\":14325:14326 */\n 0x00\n /* \"#utility.yul\":14314:14323 */\n dup4\n /* \"#utility.yul\":14310:14327 */\n add\n /* \"#utility.yul\":14303:14350 */\n mstore\n /* \"#utility.yul\":14367:14498 */\n tag_448\n /* \"#utility.yul\":14493:14497 */\n dup2\n /* \"#utility.yul\":14367:14498 */\n tag_372\n jump\t// in\n tag_448:\n /* \"#utility.yul\":14359:14498 */\n swap1\n pop\n /* \"#utility.yul\":14086:14505 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":14511:14930 */\n tag_180:\n /* \"#utility.yul\":14677:14681 */\n 0x00\n /* \"#utility.yul\":14715:14717 */\n 0x20\n /* \"#utility.yul\":14704:14713 */\n dup3\n /* \"#utility.yul\":14700:14718 */\n add\n /* \"#utility.yul\":14692:14718 */\n swap1\n pop\n /* \"#utility.yul\":14764:14773 */\n dup2\n /* \"#utility.yul\":14758:14762 */\n dup2\n /* \"#utility.yul\":14754:14774 */\n sub\n /* \"#utility.yul\":14750:14751 */\n 0x00\n /* \"#utility.yul\":14739:14748 */\n dup4\n /* \"#utility.yul\":14735:14752 */\n add\n /* \"#utility.yul\":14728:14775 */\n mstore\n /* \"#utility.yul\":14792:14923 */\n tag_450\n /* \"#utility.yul\":14918:14922 */\n dup2\n /* \"#utility.yul\":14792:14923 */\n tag_377\n jump\t// in\n tag_450:\n /* \"#utility.yul\":14784:14923 */\n swap1\n pop\n /* \"#utility.yul\":14511:14930 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":14936:15355 */\n tag_193:\n /* \"#utility.yul\":15102:15106 */\n 0x00\n /* \"#utility.yul\":15140:15142 */\n 0x20\n /* \"#utility.yul\":15129:15138 */\n dup3\n /* \"#utility.yul\":15125:15143 */\n add\n /* \"#utility.yul\":15117:15143 */\n swap1\n pop\n /* \"#utility.yul\":15189:15198 */\n dup2\n /* \"#utility.yul\":15183:15187 */\n dup2\n /* \"#utility.yul\":15179:15199 */\n sub\n /* \"#utility.yul\":15175:15176 */\n 0x00\n /* \"#utility.yul\":15164:15173 */\n dup4\n /* \"#utility.yul\":15160:15177 */\n add\n /* \"#utility.yul\":15153:15200 */\n mstore\n /* \"#utility.yul\":15217:15348 */\n tag_452\n /* \"#utility.yul\":15343:15347 */\n dup2\n /* \"#utility.yul\":15217:15348 */\n tag_382\n jump\t// in\n tag_452:\n /* \"#utility.yul\":15209:15348 */\n swap1\n pop\n /* \"#utility.yul\":14936:15355 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":15361:15780 */\n tag_167:\n /* \"#utility.yul\":15527:15531 */\n 0x00\n /* \"#utility.yul\":15565:15567 */\n 0x20\n /* \"#utility.yul\":15554:15563 */\n dup3\n /* \"#utility.yul\":15550:15568 */\n add\n /* \"#utility.yul\":15542:15568 */\n swap1\n pop\n /* \"#utility.yul\":15614:15623 */\n dup2\n /* \"#utility.yul\":15608:15612 */\n dup2\n /* \"#utility.yul\":15604:15624 */\n sub\n /* \"#utility.yul\":15600:15601 */\n 0x00\n /* \"#utility.yul\":15589:15598 */\n dup4\n /* \"#utility.yul\":15585:15602 */\n add\n /* \"#utility.yul\":15578:15625 */\n mstore\n /* \"#utility.yul\":15642:15773 */\n tag_454\n /* \"#utility.yul\":15768:15772 */\n dup2\n /* \"#utility.yul\":15642:15773 */\n tag_387\n jump\t// in\n tag_454:\n /* \"#utility.yul\":15634:15773 */\n swap1\n pop\n /* \"#utility.yul\":15361:15780 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":15786:16205 */\n tag_105:\n /* \"#utility.yul\":15952:15956 */\n 0x00\n /* \"#utility.yul\":15990:15992 */\n 0x20\n /* \"#utility.yul\":15979:15988 */\n dup3\n /* \"#utility.yul\":15975:15993 */\n add\n /* \"#utility.yul\":15967:15993 */\n swap1\n pop\n /* \"#utility.yul\":16039:16048 */\n dup2\n /* \"#utility.yul\":16033:16037 */\n dup2\n /* \"#utility.yul\":16029:16049 */\n sub\n /* \"#utility.yul\":16025:16026 */\n 0x00\n /* \"#utility.yul\":16014:16023 */\n dup4\n /* \"#utility.yul\":16010:16027 */\n add\n /* \"#utility.yul\":16003:16050 */\n mstore\n /* \"#utility.yul\":16067:16198 */\n tag_456\n /* \"#utility.yul\":16193:16197 */\n dup2\n /* \"#utility.yul\":16067:16198 */\n tag_392\n jump\t// in\n tag_456:\n /* \"#utility.yul\":16059:16198 */\n swap1\n pop\n /* \"#utility.yul\":15786:16205 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":16211:16630 */\n tag_126:\n /* \"#utility.yul\":16377:16381 */\n 0x00\n /* \"#utility.yul\":16415:16417 */\n 0x20\n /* \"#utility.yul\":16404:16413 */\n dup3\n /* \"#utility.yul\":16400:16418 */\n add\n /* \"#utility.yul\":16392:16418 */\n swap1\n pop\n /* \"#utility.yul\":16464:16473 */\n dup2\n /* \"#utility.yul\":16458:16462 */\n dup2\n /* \"#utility.yul\":16454:16474 */\n sub\n /* \"#utility.yul\":16450:16451 */\n 0x00\n /* \"#utility.yul\":16439:16448 */\n dup4\n /* \"#utility.yul\":16435:16452 */\n add\n /* \"#utility.yul\":16428:16475 */\n mstore\n /* \"#utility.yul\":16492:16623 */\n tag_458\n /* \"#utility.yul\":16618:16622 */\n dup2\n /* \"#utility.yul\":16492:16623 */\n tag_397\n jump\t// in\n tag_458:\n /* \"#utility.yul\":16484:16623 */\n swap1\n pop\n /* \"#utility.yul\":16211:16630 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":16636:17055 */\n tag_122:\n /* \"#utility.yul\":16802:16806 */\n 0x00\n /* \"#utility.yul\":16840:16842 */\n 0x20\n /* \"#utility.yul\":16829:16838 */\n dup3\n /* \"#utility.yul\":16825:16843 */\n add\n /* \"#utility.yul\":16817:16843 */\n swap1\n pop\n /* \"#utility.yul\":16889:16898 */\n dup2\n /* \"#utility.yul\":16883:16887 */\n dup2\n /* \"#utility.yul\":16879:16899 */\n sub\n /* \"#utility.yul\":16875:16876 */\n 0x00\n /* \"#utility.yul\":16864:16873 */\n dup4\n /* \"#utility.yul\":16860:16877 */\n add\n /* \"#utility.yul\":16853:16900 */\n mstore\n /* \"#utility.yul\":16917:17048 */\n tag_460\n /* \"#utility.yul\":17043:17047 */\n dup2\n /* \"#utility.yul\":16917:17048 */\n tag_402\n jump\t// in\n tag_460:\n /* \"#utility.yul\":16909:17048 */\n swap1\n pop\n /* \"#utility.yul\":16636:17055 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":17061:17480 */\n tag_92:\n /* \"#utility.yul\":17227:17231 */\n 0x00\n /* \"#utility.yul\":17265:17267 */\n 0x20\n /* \"#utility.yul\":17254:17263 */\n dup3\n /* \"#utility.yul\":17250:17268 */\n add\n /* \"#utility.yul\":17242:17268 */\n swap1\n pop\n /* \"#utility.yul\":17314:17323 */\n dup2\n /* \"#utility.yul\":17308:17312 */\n dup2\n /* \"#utility.yul\":17304:17324 */\n sub\n /* \"#utility.yul\":17300:17301 */\n 0x00\n /* \"#utility.yul\":17289:17298 */\n dup4\n /* \"#utility.yul\":17285:17302 */\n add\n /* \"#utility.yul\":17278:17325 */\n mstore\n /* \"#utility.yul\":17342:17473 */\n tag_462\n /* \"#utility.yul\":17468:17472 */\n dup2\n /* \"#utility.yul\":17342:17473 */\n tag_407\n jump\t// in\n tag_462:\n /* \"#utility.yul\":17334:17473 */\n swap1\n pop\n /* \"#utility.yul\":17061:17480 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":17486:17905 */\n tag_148:\n /* \"#utility.yul\":17652:17656 */\n 0x00\n /* \"#utility.yul\":17690:17692 */\n 0x20\n /* \"#utility.yul\":17679:17688 */\n dup3\n /* \"#utility.yul\":17675:17693 */\n add\n /* \"#utility.yul\":17667:17693 */\n swap1\n pop\n /* \"#utility.yul\":17739:17748 */\n dup2\n /* \"#utility.yul\":17733:17737 */\n dup2\n /* \"#utility.yul\":17729:17749 */\n sub\n /* \"#utility.yul\":17725:17726 */\n 0x00\n /* \"#utility.yul\":17714:17723 */\n dup4\n /* \"#utility.yul\":17710:17727 */\n add\n /* \"#utility.yul\":17703:17750 */\n mstore\n /* \"#utility.yul\":17767:17898 */\n tag_464\n /* \"#utility.yul\":17893:17897 */\n dup2\n /* \"#utility.yul\":17767:17898 */\n tag_412\n jump\t// in\n tag_464:\n /* \"#utility.yul\":17759:17898 */\n swap1\n pop\n /* \"#utility.yul\":17486:17905 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":17911:18330 */\n tag_97:\n /* \"#utility.yul\":18077:18081 */\n 0x00\n /* \"#utility.yul\":18115:18117 */\n 0x20\n /* \"#utility.yul\":18104:18113 */\n dup3\n /* \"#utility.yul\":18100:18118 */\n add\n /* \"#utility.yul\":18092:18118 */\n swap1\n pop\n /* \"#utility.yul\":18164:18173 */\n dup2\n /* \"#utility.yul\":18158:18162 */\n dup2\n /* \"#utility.yul\":18154:18174 */\n sub\n /* \"#utility.yul\":18150:18151 */\n 0x00\n /* \"#utility.yul\":18139:18148 */\n dup4\n /* \"#utility.yul\":18135:18152 */\n add\n /* \"#utility.yul\":18128:18175 */\n mstore\n /* \"#utility.yul\":18192:18323 */\n tag_466\n /* \"#utility.yul\":18318:18322 */\n dup2\n /* \"#utility.yul\":18192:18323 */\n tag_417\n jump\t// in\n tag_466:\n /* \"#utility.yul\":18184:18323 */\n swap1\n pop\n /* \"#utility.yul\":17911:18330 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":18336:18755 */\n tag_114:\n /* \"#utility.yul\":18502:18506 */\n 0x00\n /* \"#utility.yul\":18540:18542 */\n 0x20\n /* \"#utility.yul\":18529:18538 */\n dup3\n /* \"#utility.yul\":18525:18543 */\n add\n /* \"#utility.yul\":18517:18543 */\n swap1\n pop\n /* \"#utility.yul\":18589:18598 */\n dup2\n /* \"#utility.yul\":18583:18587 */\n dup2\n /* \"#utility.yul\":18579:18599 */\n sub\n /* \"#utility.yul\":18575:18576 */\n 0x00\n /* \"#utility.yul\":18564:18573 */\n dup4\n /* \"#utility.yul\":18560:18577 */\n add\n /* \"#utility.yul\":18553:18600 */\n mstore\n /* \"#utility.yul\":18617:18748 */\n tag_468\n /* \"#utility.yul\":18743:18747 */\n dup2\n /* \"#utility.yul\":18617:18748 */\n tag_422\n jump\t// in\n tag_468:\n /* \"#utility.yul\":18609:18748 */\n swap1\n pop\n /* \"#utility.yul\":18336:18755 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":18761:18983 */\n tag_54:\n /* \"#utility.yul\":18854:18858 */\n 0x00\n /* \"#utility.yul\":18892:18894 */\n 0x20\n /* \"#utility.yul\":18881:18890 */\n dup3\n /* \"#utility.yul\":18877:18895 */\n add\n /* \"#utility.yul\":18869:18895 */\n swap1\n pop\n /* \"#utility.yul\":18905:18976 */\n tag_470\n /* \"#utility.yul\":18973:18974 */\n 0x00\n /* \"#utility.yul\":18962:18971 */\n dup4\n /* \"#utility.yul\":18958:18975 */\n add\n /* \"#utility.yul\":18949:18955 */\n dup5\n /* \"#utility.yul\":18905:18976 */\n tag_427\n jump\t// in\n tag_470:\n /* \"#utility.yul\":18761:18983 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":18989:19118 */\n tag_256:\n /* \"#utility.yul\":19023:19029 */\n 0x00\n /* \"#utility.yul\":19050:19070 */\n tag_472\n tag_473\n jump\t// in\n tag_472:\n /* \"#utility.yul\":19040:19070 */\n swap1\n pop\n /* \"#utility.yul\":19079:19112 */\n tag_474\n /* \"#utility.yul\":19107:19111 */\n dup3\n /* \"#utility.yul\":19099:19105 */\n dup3\n /* \"#utility.yul\":19079:19112 */\n tag_475\n jump\t// in\n tag_474:\n /* \"#utility.yul\":18989:19118 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":19124:19199 */\n tag_473:\n /* \"#utility.yul\":19157:19163 */\n 0x00\n /* \"#utility.yul\":19190:19192 */\n 0x40\n /* \"#utility.yul\":19184:19193 */\n mload\n /* \"#utility.yul\":19174:19193 */\n swap1\n pop\n /* \"#utility.yul\":19124:19199 */\n swap1\n jump\t// out\n /* \"#utility.yul\":19205:19512 */\n tag_255:\n /* \"#utility.yul\":19266:19270 */\n 0x00\n /* \"#utility.yul\":19356:19374 */\n 0xffffffffffffffff\n /* \"#utility.yul\":19348:19354 */\n dup3\n /* \"#utility.yul\":19345:19375 */\n gt\n /* \"#utility.yul\":19342:19398 */\n iszero\n tag_478\n jumpi\n /* \"#utility.yul\":19378:19396 */\n tag_479\n tag_213\n jump\t// in\n tag_479:\n /* \"#utility.yul\":19342:19398 */\n tag_478:\n /* \"#utility.yul\":19416:19445 */\n tag_480\n /* \"#utility.yul\":19438:19444 */\n dup3\n /* \"#utility.yul\":19416:19445 */\n tag_352\n jump\t// in\n tag_480:\n /* \"#utility.yul\":19408:19445 */\n swap1\n pop\n /* \"#utility.yul\":19500:19504 */\n 0x20\n /* \"#utility.yul\":19494:19498 */\n dup2\n /* \"#utility.yul\":19490:19505 */\n add\n /* \"#utility.yul\":19482:19505 */\n swap1\n pop\n /* \"#utility.yul\":19205:19512 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":19518:19616 */\n tag_346:\n /* \"#utility.yul\":19569:19575 */\n 0x00\n /* \"#utility.yul\":19603:19608 */\n dup2\n /* \"#utility.yul\":19597:19609 */\n mload\n /* \"#utility.yul\":19587:19609 */\n swap1\n pop\n /* \"#utility.yul\":19518:19616 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":19622:19721 */\n tag_356:\n /* \"#utility.yul\":19674:19680 */\n 0x00\n /* \"#utility.yul\":19708:19713 */\n dup2\n /* \"#utility.yul\":19702:19714 */\n mload\n /* \"#utility.yul\":19692:19714 */\n swap1\n pop\n /* \"#utility.yul\":19622:19721 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":19727:19895 */\n tag_348:\n /* \"#utility.yul\":19810:19821 */\n 0x00\n /* \"#utility.yul\":19844:19850 */\n dup3\n /* \"#utility.yul\":19839:19842 */\n dup3\n /* \"#utility.yul\":19832:19851 */\n mstore\n /* \"#utility.yul\":19884:19888 */\n 0x20\n /* \"#utility.yul\":19879:19882 */\n dup3\n /* \"#utility.yul\":19875:19889 */\n add\n /* \"#utility.yul\":19860:19889 */\n swap1\n pop\n /* \"#utility.yul\":19727:19895 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":19901:20070 */\n tag_358:\n /* \"#utility.yul\":19985:19996 */\n 0x00\n /* \"#utility.yul\":20019:20025 */\n dup3\n /* \"#utility.yul\":20014:20017 */\n dup3\n /* \"#utility.yul\":20007:20026 */\n mstore\n /* \"#utility.yul\":20059:20063 */\n 0x20\n /* \"#utility.yul\":20054:20057 */\n dup3\n /* \"#utility.yul\":20050:20064 */\n add\n /* \"#utility.yul\":20035:20064 */\n swap1\n pop\n /* \"#utility.yul\":19901:20070 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":20076:20224 */\n tag_365:\n /* \"#utility.yul\":20178:20189 */\n 0x00\n /* \"#utility.yul\":20215:20218 */\n dup2\n /* \"#utility.yul\":20200:20218 */\n swap1\n pop\n /* \"#utility.yul\":20076:20224 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":20230:20535 */\n tag_187:\n /* \"#utility.yul\":20270:20273 */\n 0x00\n /* \"#utility.yul\":20289:20309 */\n tag_487\n /* \"#utility.yul\":20307:20308 */\n dup3\n /* \"#utility.yul\":20289:20309 */\n tag_430\n jump\t// in\n tag_487:\n /* \"#utility.yul\":20284:20309 */\n swap2\n pop\n /* \"#utility.yul\":20323:20343 */\n tag_488\n /* \"#utility.yul\":20341:20342 */\n dup4\n /* \"#utility.yul\":20323:20343 */\n tag_430\n jump\t// in\n tag_488:\n /* \"#utility.yul\":20318:20343 */\n swap3\n pop\n /* \"#utility.yul\":20477:20478 */\n dup3\n /* \"#utility.yul\":20409:20475 */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":20405:20479 */\n sub\n /* \"#utility.yul\":20402:20403 */\n dup3\n /* \"#utility.yul\":20399:20480 */\n gt\n /* \"#utility.yul\":20396:20503 */\n iszero\n tag_489\n jumpi\n /* \"#utility.yul\":20483:20501 */\n tag_490\n tag_491\n jump\t// in\n tag_490:\n /* \"#utility.yul\":20396:20503 */\n tag_489:\n /* \"#utility.yul\":20527:20528 */\n dup3\n /* \"#utility.yul\":20524:20525 */\n dup3\n /* \"#utility.yul\":20520:20529 */\n add\n /* \"#utility.yul\":20513:20529 */\n swap1\n pop\n /* \"#utility.yul\":20230:20535 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":20541:20726 */\n tag_210:\n /* \"#utility.yul\":20581:20582 */\n 0x00\n /* \"#utility.yul\":20598:20618 */\n tag_493\n /* \"#utility.yul\":20616:20617 */\n dup3\n /* \"#utility.yul\":20598:20618 */\n tag_430\n jump\t// in\n tag_493:\n /* \"#utility.yul\":20593:20618 */\n swap2\n pop\n /* \"#utility.yul\":20632:20652 */\n tag_494\n /* \"#utility.yul\":20650:20651 */\n dup4\n /* \"#utility.yul\":20632:20652 */\n tag_430\n jump\t// in\n tag_494:\n /* \"#utility.yul\":20627:20652 */\n swap3\n pop\n /* \"#utility.yul\":20671:20672 */\n dup3\n /* \"#utility.yul\":20661:20696 */\n tag_495\n jumpi\n /* \"#utility.yul\":20676:20694 */\n tag_496\n tag_497\n jump\t// in\n tag_496:\n /* \"#utility.yul\":20661:20696 */\n tag_495:\n /* \"#utility.yul\":20718:20719 */\n dup3\n /* \"#utility.yul\":20715:20716 */\n dup3\n /* \"#utility.yul\":20711:20720 */\n div\n /* \"#utility.yul\":20706:20720 */\n swap1\n pop\n /* \"#utility.yul\":20541:20726 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":20732:20923 */\n tag_185:\n /* \"#utility.yul\":20772:20776 */\n 0x00\n /* \"#utility.yul\":20792:20812 */\n tag_499\n /* \"#utility.yul\":20810:20811 */\n dup3\n /* \"#utility.yul\":20792:20812 */\n tag_430\n jump\t// in\n tag_499:\n /* \"#utility.yul\":20787:20812 */\n swap2\n pop\n /* \"#utility.yul\":20826:20846 */\n tag_500\n /* \"#utility.yul\":20844:20845 */\n dup4\n /* \"#utility.yul\":20826:20846 */\n tag_430\n jump\t// in\n tag_500:\n /* \"#utility.yul\":20821:20846 */\n swap3\n pop\n /* \"#utility.yul\":20865:20866 */\n dup3\n /* \"#utility.yul\":20862:20863 */\n dup3\n /* \"#utility.yul\":20859:20867 */\n lt\n /* \"#utility.yul\":20856:20890 */\n iszero\n tag_501\n jumpi\n /* \"#utility.yul\":20870:20888 */\n tag_502\n tag_491\n jump\t// in\n tag_502:\n /* \"#utility.yul\":20856:20890 */\n tag_501:\n /* \"#utility.yul\":20915:20916 */\n dup3\n /* \"#utility.yul\":20912:20913 */\n dup3\n /* \"#utility.yul\":20908:20917 */\n sub\n /* \"#utility.yul\":20900:20917 */\n swap1\n pop\n /* \"#utility.yul\":20732:20923 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":20929:21025 */\n tag_338:\n /* \"#utility.yul\":20966:20973 */\n 0x00\n /* \"#utility.yul\":20995:21019 */\n tag_504\n /* \"#utility.yul\":21013:21018 */\n dup3\n /* \"#utility.yul\":20995:21019 */\n tag_505\n jump\t// in\n tag_504:\n /* \"#utility.yul\":20984:21019 */\n swap1\n pop\n /* \"#utility.yul\":20929:21025 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":21031:21121 */\n tag_342:\n /* \"#utility.yul\":21065:21072 */\n 0x00\n /* \"#utility.yul\":21108:21113 */\n dup2\n /* \"#utility.yul\":21101:21114 */\n iszero\n /* \"#utility.yul\":21094:21115 */\n iszero\n /* \"#utility.yul\":21083:21115 */\n swap1\n pop\n /* \"#utility.yul\":21031:21121 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":21127:21276 */\n tag_507:\n /* \"#utility.yul\":21163:21170 */\n 0x00\n /* \"#utility.yul\":21203:21269 */\n 0xffffffff00000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":21196:21201 */\n dup3\n /* \"#utility.yul\":21192:21270 */\n and\n /* \"#utility.yul\":21181:21270 */\n swap1\n pop\n /* \"#utility.yul\":21127:21276 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":21282:21408 */\n tag_505:\n /* \"#utility.yul\":21319:21326 */\n 0x00\n /* \"#utility.yul\":21359:21401 */\n 0xffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":21352:21357 */\n dup3\n /* \"#utility.yul\":21348:21402 */\n and\n /* \"#utility.yul\":21337:21402 */\n swap1\n pop\n /* \"#utility.yul\":21282:21408 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":21414:21491 */\n tag_430:\n /* \"#utility.yul\":21451:21458 */\n 0x00\n /* \"#utility.yul\":21480:21485 */\n dup2\n /* \"#utility.yul\":21469:21485 */\n swap1\n pop\n /* \"#utility.yul\":21414:21491 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":21497:21651 */\n tag_261:\n /* \"#utility.yul\":21581:21587 */\n dup3\n /* \"#utility.yul\":21576:21579 */\n dup2\n /* \"#utility.yul\":21571:21574 */\n dup4\n /* \"#utility.yul\":21558:21588 */\n calldatacopy\n /* \"#utility.yul\":21643:21644 */\n 0x00\n /* \"#utility.yul\":21634:21640 */\n dup4\n /* \"#utility.yul\":21629:21632 */\n dup4\n /* \"#utility.yul\":21625:21641 */\n add\n /* \"#utility.yul\":21618:21645 */\n mstore\n /* \"#utility.yul\":21497:21651 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":21657:21964 */\n tag_350:\n /* \"#utility.yul\":21725:21726 */\n 0x00\n /* \"#utility.yul\":21735:21848 */\n tag_513:\n /* \"#utility.yul\":21749:21755 */\n dup4\n /* \"#utility.yul\":21746:21747 */\n dup2\n /* \"#utility.yul\":21743:21756 */\n lt\n /* \"#utility.yul\":21735:21848 */\n iszero\n tag_515\n jumpi\n /* \"#utility.yul\":21834:21835 */\n dup1\n /* \"#utility.yul\":21829:21832 */\n dup3\n /* \"#utility.yul\":21825:21836 */\n add\n /* \"#utility.yul\":21819:21837 */\n mload\n /* \"#utility.yul\":21815:21816 */\n dup2\n /* \"#utility.yul\":21810:21813 */\n dup5\n /* \"#utility.yul\":21806:21817 */\n add\n /* \"#utility.yul\":21799:21838 */\n mstore\n /* \"#utility.yul\":21771:21773 */\n 0x20\n /* \"#utility.yul\":21768:21769 */\n dup2\n /* \"#utility.yul\":21764:21774 */\n add\n /* \"#utility.yul\":21759:21774 */\n swap1\n pop\n /* \"#utility.yul\":21735:21848 */\n jump(tag_513)\n tag_515:\n /* \"#utility.yul
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