Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gndx/17663f85142f6cac650838e8710344ed to your computer and use it in GitHub Desktop.
Save gndx/17663f85142f6cac650838e8710344ed to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.7+commit.e28d00a7.js&optimize=true&runs=200&gist=
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.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);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Emits a {ApprovalForAll} event.
*/
function _setApprovalForAll(
address owner,
address operator,
bool approved
) internal virtual {
require(owner != operator, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol)
pragma solidity ^0.8.0;
import "../ERC721.sol";
import "./IERC721Enumerable.sol";
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;
// Array with all token ids, used for enumeration
uint256[] private _allTokens;
// Mapping from token id to position in the allTokens array
mapping(uint256 => uint256) private _allTokensIndex;
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
return _ownedTokens[owner][index];
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _allTokens.length;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
return _allTokens[index];
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual override {
super._beforeTokenTransfer(from, to, tokenId);
if (from == address(0)) {
_addTokenToAllTokensEnumeration(tokenId);
} else if (from != to) {
_removeTokenFromOwnerEnumeration(from, tokenId);
}
if (to == address(0)) {
_removeTokenFromAllTokensEnumeration(tokenId);
} else if (to != from) {
_addTokenToOwnerEnumeration(to, tokenId);
}
}
/**
* @dev Private function to add a token to this extension's ownership-tracking data structures.
* @param to address representing the new owner of the given token ID
* @param tokenId uint256 ID of the token to be added to the tokens list of the given address
*/
function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
uint256 length = ERC721.balanceOf(to);
_ownedTokens[to][length] = tokenId;
_ownedTokensIndex[tokenId] = length;
}
/**
* @dev Private function to add a token to this extension's token tracking data structures.
* @param tokenId uint256 ID of the token to be added to the tokens list
*/
function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
_allTokensIndex[tokenId] = _allTokens.length;
_allTokens.push(tokenId);
}
/**
* @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
* while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
* gas optimizations e.g. when performing a transfer operation (avoiding double writes).
* This has O(1) time complexity, but alters the order of the _ownedTokens array.
* @param from address representing the previous owner of the given token ID
* @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
*/
function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
// To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
uint256 tokenIndex = _ownedTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary
if (tokenIndex != lastTokenIndex) {
uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];
_ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
}
// This also deletes the contents at the last position of the array
delete _ownedTokensIndex[tokenId];
delete _ownedTokens[from][lastTokenIndex];
}
/**
* @dev Private function to remove a token from this extension's token tracking data structures.
* This has O(1) time complexity, but alters the order of the _allTokens array.
* @param tokenId uint256 ID of the token to be removed from the tokens list
*/
function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
// To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = _allTokens.length - 1;
uint256 tokenIndex = _allTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
// rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
// an 'if' statement (like in _removeTokenFromOwnerEnumeration)
uint256 lastTokenId = _allTokens[lastTokenIndex];
_allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
// This also deletes the contents at the last position of the array
delete _allTokensIndex[tokenId];
_allTokens.pop();
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol)
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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.0 (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.0 (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)
pragma solidity ^0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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.0 (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.0 (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.0 (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 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.
{
"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": {
"@_167": {
"entryPoint": null,
"id": 167,
"parameterSlots": 2,
"returnSlots": 0
},
"@_2080": {
"entryPoint": null,
"id": 2080,
"parameterSlots": 4,
"returnSlots": 0
},
"@_23": {
"entryPoint": null,
"id": 23,
"parameterSlots": 0,
"returnSlots": 0
},
"@_msgSender_1774": {
"entryPoint": 230,
"id": 1774,
"parameterSlots": 0,
"returnSlots": 1
},
"@_transferOwnership_103": {
"entryPoint": 234,
"id": 103,
"parameterSlots": 1,
"returnSlots": 0
},
"@owner_32": {
"entryPoint": null,
"id": 32,
"parameterSlots": 0,
"returnSlots": 1
},
"@setBaseURI_2316": {
"entryPoint": 316,
"id": 2316,
"parameterSlots": 1,
"returnSlots": 0
},
"@setNotRevealedURI_2304": {
"entryPoint": 420,
"id": 2304,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_string_fromMemory": {
"entryPoint": 677,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_string_memory_ptrt_string_memory_ptr_fromMemory": {
"entryPoint": 860,
"id": null,
"parameterSlots": 2,
"returnSlots": 4
},
"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 1045,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x41": {
"entryPoint": 1106,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:2755:13",
"statements": [
{
"nodeType": "YulBlock",
"src": "6:3:13",
"statements": []
},
{
"body": {
"nodeType": "YulBlock",
"src": "78:821:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "127:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "136:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "139:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "129:6:13"
},
"nodeType": "YulFunctionCall",
"src": "129:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "129:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "106:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "114:4:13",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "102:3:13"
},
"nodeType": "YulFunctionCall",
"src": "102:17:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "121:3:13"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "98:3:13"
},
"nodeType": "YulFunctionCall",
"src": "98:27:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "91:6:13"
},
"nodeType": "YulFunctionCall",
"src": "91:35:13"
},
"nodeType": "YulIf",
"src": "88:55:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "152:23:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "168:6:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "162:5:13"
},
"nodeType": "YulFunctionCall",
"src": "162:13:13"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "156:2:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "184:28:13",
"value": {
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "202:2:13",
"type": "",
"value": "64"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "206:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "198:3:13"
},
"nodeType": "YulFunctionCall",
"src": "198:10:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "210:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "194:3:13"
},
"nodeType": "YulFunctionCall",
"src": "194:18:13"
},
"variables": [
{
"name": "_2",
"nodeType": "YulTypedName",
"src": "188:2:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "235:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "237:16:13"
},
"nodeType": "YulFunctionCall",
"src": "237:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "237:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "227:2:13"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "231:2:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "224:2:13"
},
"nodeType": "YulFunctionCall",
"src": "224:10:13"
},
"nodeType": "YulIf",
"src": "221:36:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "266:17:13",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "280:2:13",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "276:3:13"
},
"nodeType": "YulFunctionCall",
"src": "276:7:13"
},
"variables": [
{
"name": "_3",
"nodeType": "YulTypedName",
"src": "270:2:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "292:23:13",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "312:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "306:5:13"
},
"nodeType": "YulFunctionCall",
"src": "306:9:13"
},
"variables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "296:6:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "324:71:13",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "346:6:13"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "370:2:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "374:4:13",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "366:3:13"
},
"nodeType": "YulFunctionCall",
"src": "366:13:13"
},
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "381:2:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "362:3:13"
},
"nodeType": "YulFunctionCall",
"src": "362:22:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "386:2:13",
"type": "",
"value": "63"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "358:3:13"
},
"nodeType": "YulFunctionCall",
"src": "358:31:13"
},
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "391:2:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "354:3:13"
},
"nodeType": "YulFunctionCall",
"src": "354:40:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "342:3:13"
},
"nodeType": "YulFunctionCall",
"src": "342:53:13"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "328:10:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "454:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "456:16:13"
},
"nodeType": "YulFunctionCall",
"src": "456:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "456:18:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "413:10:13"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "425:2:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "410:2:13"
},
"nodeType": "YulFunctionCall",
"src": "410:18:13"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "433:10:13"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "445:6:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "430:2:13"
},
"nodeType": "YulFunctionCall",
"src": "430:22:13"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "407:2:13"
},
"nodeType": "YulFunctionCall",
"src": "407:46:13"
},
"nodeType": "YulIf",
"src": "404:72:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "492:2:13",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "496:10:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "485:6:13"
},
"nodeType": "YulFunctionCall",
"src": "485:22:13"
},
"nodeType": "YulExpressionStatement",
"src": "485:22:13"
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "523:6:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "531:2:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "516:6:13"
},
"nodeType": "YulFunctionCall",
"src": "516:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "516:18:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "543:14:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "553:4:13",
"type": "",
"value": "0x20"
},
"variables": [
{
"name": "_4",
"nodeType": "YulTypedName",
"src": "547:2:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "603:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "612:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "615:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "605:6:13"
},
"nodeType": "YulFunctionCall",
"src": "605:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "605:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "580:6:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "588:2:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "576:3:13"
},
"nodeType": "YulFunctionCall",
"src": "576:15:13"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "593:2:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "572:3:13"
},
"nodeType": "YulFunctionCall",
"src": "572:24:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "598:3:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "569:2:13"
},
"nodeType": "YulFunctionCall",
"src": "569:33:13"
},
"nodeType": "YulIf",
"src": "566:53:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "628:10:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "637:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "632:1:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "693:87:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "722:6:13"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "730:1:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "718:3:13"
},
"nodeType": "YulFunctionCall",
"src": "718:14:13"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "734:2:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "714:3:13"
},
"nodeType": "YulFunctionCall",
"src": "714:23:13"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "753:6:13"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "761:1:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "749:3:13"
},
"nodeType": "YulFunctionCall",
"src": "749:14:13"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "765:2:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "745:3:13"
},
"nodeType": "YulFunctionCall",
"src": "745:23:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "739:5:13"
},
"nodeType": "YulFunctionCall",
"src": "739:30:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "707:6:13"
},
"nodeType": "YulFunctionCall",
"src": "707:63:13"
},
"nodeType": "YulExpressionStatement",
"src": "707:63:13"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "658:1:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "661:2:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "655:2:13"
},
"nodeType": "YulFunctionCall",
"src": "655:9:13"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "665:19:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "667:15:13",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "676:1:13"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "679:2:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "672:3:13"
},
"nodeType": "YulFunctionCall",
"src": "672:10:13"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "667:1:13"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "651:3:13",
"statements": []
},
"src": "647:133:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "810:59:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "839:6:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "847:2:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "835:3:13"
},
"nodeType": "YulFunctionCall",
"src": "835:15:13"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "852:2:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "831:3:13"
},
"nodeType": "YulFunctionCall",
"src": "831:24:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "857:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "824:6:13"
},
"nodeType": "YulFunctionCall",
"src": "824:35:13"
},
"nodeType": "YulExpressionStatement",
"src": "824:35:13"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "795:1:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "798:2:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "792:2:13"
},
"nodeType": "YulFunctionCall",
"src": "792:9:13"
},
"nodeType": "YulIf",
"src": "789:80:13"
},
{
"nodeType": "YulAssignment",
"src": "878:15:13",
"value": {
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "887:6:13"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "878:5:13"
}
]
}
]
},
"name": "abi_decode_string_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "52:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "60:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "68:5:13",
"type": ""
}
],
"src": "14:885:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1076:799:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1123:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1132:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1135:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1125:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1125:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "1125:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1097:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1106:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1093:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1093:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1118:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1089:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1089:33:13"
},
"nodeType": "YulIf",
"src": "1086:53:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1148:30:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1168:9:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1162:5:13"
},
"nodeType": "YulFunctionCall",
"src": "1162:16:13"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1152:6:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1187:28:13",
"value": {
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1205:2:13",
"type": "",
"value": "64"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1209:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "1201:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1201:10:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1213:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1197:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1197:18:13"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "1191:2:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1242:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1251:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1254:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1244:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1244:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "1244:12:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1230:6:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1238:2:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1227:2:13"
},
"nodeType": "YulFunctionCall",
"src": "1227:14:13"
},
"nodeType": "YulIf",
"src": "1224:34:13"
},
{
"nodeType": "YulAssignment",
"src": "1267:71:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1310:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1321:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1306:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1306:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1330:7:13"
}
],
"functionName": {
"name": "abi_decode_string_fromMemory",
"nodeType": "YulIdentifier",
"src": "1277:28:13"
},
"nodeType": "YulFunctionCall",
"src": "1277:61:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1267:6:13"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1347:41:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1373:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1384:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1369:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1369:18:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1363:5:13"
},
"nodeType": "YulFunctionCall",
"src": "1363:25:13"
},
"variables": [
{
"name": "offset_1",
"nodeType": "YulTypedName",
"src": "1351:8:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1417:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1426:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1429:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1419:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1419:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "1419:12:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset_1",
"nodeType": "YulIdentifier",
"src": "1403:8:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1413:2:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1400:2:13"
},
"nodeType": "YulFunctionCall",
"src": "1400:16:13"
},
"nodeType": "YulIf",
"src": "1397:36:13"
},
{
"nodeType": "YulAssignment",
"src": "1442:73:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1485:9:13"
},
{
"name": "offset_1",
"nodeType": "YulIdentifier",
"src": "1496:8:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1481:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1481:24:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1507:7:13"
}
],
"functionName": {
"name": "abi_decode_string_fromMemory",
"nodeType": "YulIdentifier",
"src": "1452:28:13"
},
"nodeType": "YulFunctionCall",
"src": "1452:63:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1442:6:13"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1524:41:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1550:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1561:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1546:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1546:18:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1540:5:13"
},
"nodeType": "YulFunctionCall",
"src": "1540:25:13"
},
"variables": [
{
"name": "offset_2",
"nodeType": "YulTypedName",
"src": "1528:8:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1594:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1603:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1606:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1596:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1596:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "1596:12:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset_2",
"nodeType": "YulIdentifier",
"src": "1580:8:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1590:2:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1577:2:13"
},
"nodeType": "YulFunctionCall",
"src": "1577:16:13"
},
"nodeType": "YulIf",
"src": "1574:36:13"
},
{
"nodeType": "YulAssignment",
"src": "1619:73:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1662:9:13"
},
{
"name": "offset_2",
"nodeType": "YulIdentifier",
"src": "1673:8:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1658:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1658:24:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1684:7:13"
}
],
"functionName": {
"name": "abi_decode_string_fromMemory",
"nodeType": "YulIdentifier",
"src": "1629:28:13"
},
"nodeType": "YulFunctionCall",
"src": "1629:63:13"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1619:6:13"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1701:41:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1727:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1738:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1723:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1723:18:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1717:5:13"
},
"nodeType": "YulFunctionCall",
"src": "1717:25:13"
},
"variables": [
{
"name": "offset_3",
"nodeType": "YulTypedName",
"src": "1705:8:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1771:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1780:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1783:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1773:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1773:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "1773:12:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset_3",
"nodeType": "YulIdentifier",
"src": "1757:8:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1767:2:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1754:2:13"
},
"nodeType": "YulFunctionCall",
"src": "1754:16:13"
},
"nodeType": "YulIf",
"src": "1751:36:13"
},
{
"nodeType": "YulAssignment",
"src": "1796:73:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1839:9:13"
},
{
"name": "offset_3",
"nodeType": "YulIdentifier",
"src": "1850:8:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1835:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1835:24:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1861:7:13"
}
],
"functionName": {
"name": "abi_decode_string_fromMemory",
"nodeType": "YulIdentifier",
"src": "1806:28:13"
},
"nodeType": "YulFunctionCall",
"src": "1806:63:13"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "1796:6:13"
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_string_memory_ptrt_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1018:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1029:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1041:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1049:6:13",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1057:6:13",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "1065:6:13",
"type": ""
}
],
"src": "904:971:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2054:182:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2071:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2082:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2064:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2064:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "2064:21:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2105:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2116:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2101:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2101:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2121:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2094:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2094:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "2094:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2144:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2155:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2140:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2140:18:13"
},
{
"hexValue": "4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "2160:34:13",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2133:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2133:62:13"
},
"nodeType": "YulExpressionStatement",
"src": "2133:62:13"
},
{
"nodeType": "YulAssignment",
"src": "2204:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2216:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2227:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2212:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2212:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2204:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2031:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2045:4:13",
"type": ""
}
],
"src": "1880:356:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2296:325:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2306:22:13",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2320:1:13",
"type": "",
"value": "1"
},
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "2323:4:13"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "2316:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2316:12:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2306:6:13"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2337:38:13",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "2367:4:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2373:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2363:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2363:12:13"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "2341:18:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2414:31:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2416:27:13",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2430:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2438:4:13",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2426:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2426:17:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2416:6:13"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "2394:18:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2387:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2387:26:13"
},
"nodeType": "YulIf",
"src": "2384:61:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2504:111:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2525:1:13",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2532:3:13",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2537:10:13",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "2528:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2528:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2518:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2518:31:13"
},
"nodeType": "YulExpressionStatement",
"src": "2518:31:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2569:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2572:4:13",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2562:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2562:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "2562:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2597:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2600:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2590:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2590:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "2590:15:13"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "2460:18:13"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2483:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2491:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2480:2:13"
},
"nodeType": "YulFunctionCall",
"src": "2480:14:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2457:2:13"
},
"nodeType": "YulFunctionCall",
"src": "2457:38:13"
},
"nodeType": "YulIf",
"src": "2454:161:13"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "2276:4:13",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2285:6:13",
"type": ""
}
],
"src": "2241:380:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2658:95:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2675:1:13",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2682:3:13",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2687:10:13",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "2678:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2678:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2668:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2668:31:13"
},
"nodeType": "YulExpressionStatement",
"src": "2668:31:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2715:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2718:4:13",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2708:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2708:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "2708:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2739:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2742:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2732:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2732:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "2732:15:13"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "2626:127:13"
}
]
},
"contents": "{\n { }\n function abi_decode_string_fromMemory(offset, end) -> array\n {\n if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n let _1 := mload(offset)\n let _2 := sub(shl(64, 1), 1)\n if gt(_1, _2) { panic_error_0x41() }\n let _3 := not(31)\n let memPtr := mload(64)\n let newFreePtr := add(memPtr, and(add(and(add(_1, 0x1f), _3), 63), _3))\n if or(gt(newFreePtr, _2), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n mstore(memPtr, _1)\n let _4 := 0x20\n if gt(add(add(offset, _1), _4), end) { revert(0, 0) }\n let i := 0\n for { } lt(i, _1) { i := add(i, _4) }\n {\n mstore(add(add(memPtr, i), _4), mload(add(add(offset, i), _4)))\n }\n if gt(i, _1)\n {\n mstore(add(add(memPtr, _1), _4), 0)\n }\n array := memPtr\n }\n function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_string_memory_ptrt_string_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1, value2, value3\n {\n if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n let offset := mload(headStart)\n let _1 := sub(shl(64, 1), 1)\n if gt(offset, _1) { revert(0, 0) }\n value0 := abi_decode_string_fromMemory(add(headStart, offset), dataEnd)\n let offset_1 := mload(add(headStart, 32))\n if gt(offset_1, _1) { revert(0, 0) }\n value1 := abi_decode_string_fromMemory(add(headStart, offset_1), dataEnd)\n let offset_2 := mload(add(headStart, 64))\n if gt(offset_2, _1) { revert(0, 0) }\n value2 := abi_decode_string_fromMemory(add(headStart, offset_2), dataEnd)\n let offset_3 := mload(add(headStart, 96))\n if gt(offset_3, _1) { revert(0, 0) }\n value3 := abi_decode_string_fromMemory(add(headStart, offset_3), dataEnd)\n }\n function abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 32)\n mstore(add(headStart, 64), \"Ownable: caller is not the owner\")\n tail := add(headStart, 96)\n }\n function extract_byte_array_length(data) -> length\n {\n length := shr(1, data)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n if eq(outOfPlaceEncoding, lt(length, 32))\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n }\n function panic_error_0x41()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n}",
"id": 13,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60c06040526005608081905264173539b7b760d91b60a09081526200002891600c9190620001ff565b5066038d7ea4c68000600d5561012c600e556001600f556010805461ffff191690553480156200005757600080fd5b50604051620028ba380380620028ba8339810160408190526200007a916200035c565b83518490849062000093906000906020850190620001ff565b508051620000a9906001906020840190620001ff565b505050620000c6620000c0620000e660201b60201c565b620000ea565b620000d1826200013c565b620000dc81620001a4565b5050505062000468565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b031633146200018b5760405162461bcd60e51b815260206004820181905260248201526000805160206200289a83398151915260448201526064015b60405180910390fd5b8051620001a090600b906020840190620001ff565b5050565b600a546001600160a01b03163314620001ef5760405162461bcd60e51b815260206004820181905260248201526000805160206200289a833981519152604482015260640162000182565b8051620001a09060119060208401905b8280546200020d9062000415565b90600052602060002090601f0160209004810192826200023157600085556200027c565b82601f106200024c57805160ff19168380011785556200027c565b828001600101855582156200027c579182015b828111156200027c5782518255916020019190600101906200025f565b506200028a9291506200028e565b5090565b5b808211156200028a57600081556001016200028f565b600082601f830112620002b757600080fd5b81516001600160401b0380821115620002d457620002d462000452565b604051601f8301601f19908116603f01168101908282118183101715620002ff57620002ff62000452565b816040528381526020925086838588010111156200031c57600080fd5b600091505b8382101562000340578582018301518183018401529082019062000321565b83821115620003525760008385830101525b9695505050505050565b600080600080608085870312156200037357600080fd5b84516001600160401b03808211156200038b57600080fd5b6200039988838901620002a5565b95506020870151915080821115620003b057600080fd5b620003be88838901620002a5565b94506040870151915080821115620003d557600080fd5b620003e388838901620002a5565b93506060870151915080821115620003fa57600080fd5b506200040987828801620002a5565b91505092959194509250565b600181811c908216806200042a57607f821691505b602082108114156200044c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61242280620004786000396000f3fe60806040526004361061020f5760003560e01c80635c975abb11610118578063a475b5dd116100a0578063d5abeb011161006f578063d5abeb01146105bc578063da3ef23f146105d2578063e985e9c5146105f2578063f2c4ce1e1461063b578063f2fde38b1461065b57600080fd5b8063a475b5dd14610552578063b88d4fde14610567578063c668286214610587578063c87b56dd1461059c57600080fd5b80637f00c7a6116100e75780637f00c7a6146104cc5780638da5cb5b146104ec57806395d89b411461050a578063a0712d681461051f578063a22cb4651461053257600080fd5b80635c975abb1461045d5780636352211e1461047757806370a0823114610497578063715018a6146104b757600080fd5b806323b872dd1161019b578063438b63001161016a578063438b6300146103b157806344a0d68a146103de5780634f6ccce7146103fe578063518302271461041e57806355f804b31461043d57600080fd5b806323b872dd146103495780632f745c59146103695780633ccfd60b1461038957806342842e0e1461039157600080fd5b8063081c8c44116101e2578063081c8c44146102c5578063095ea7b3146102da57806313faede6146102fa57806318160ddd1461031e578063239c70ae1461033357600080fd5b806301ffc9a71461021457806302329a291461024957806306fdde031461026b578063081812fc1461028d575b600080fd5b34801561022057600080fd5b5061023461022f366004611f78565b61067b565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b50610269610264366004611f5d565b6106a6565b005b34801561027757600080fd5b506102806106ec565b6040516102409190612185565b34801561029957600080fd5b506102ad6102a8366004611ffb565b61077e565b6040516001600160a01b039091168152602001610240565b3480156102d157600080fd5b50610280610813565b3480156102e657600080fd5b506102696102f5366004611f33565b6108a1565b34801561030657600080fd5b50610310600d5481565b604051908152602001610240565b34801561032a57600080fd5b50600854610310565b34801561033f57600080fd5b50610310600f5481565b34801561035557600080fd5b50610269610364366004611e51565b6109b7565b34801561037557600080fd5b50610310610384366004611f33565b6109e8565b610269610a7e565b34801561039d57600080fd5b506102696103ac366004611e51565b610b1c565b3480156103bd57600080fd5b506103d16103cc366004611e03565b610b37565b6040516102409190612141565b3480156103ea57600080fd5b506102696103f9366004611ffb565b610bd9565b34801561040a57600080fd5b50610310610419366004611ffb565b610c08565b34801561042a57600080fd5b5060105461023490610100900460ff1681565b34801561044957600080fd5b50610269610458366004611fb2565b610c9b565b34801561046957600080fd5b506010546102349060ff1681565b34801561048357600080fd5b506102ad610492366004611ffb565b610cdc565b3480156104a357600080fd5b506103106104b2366004611e03565b610d53565b3480156104c357600080fd5b50610269610dda565b3480156104d857600080fd5b506102696104e7366004611ffb565b610e10565b3480156104f857600080fd5b50600a546001600160a01b03166102ad565b34801561051657600080fd5b50610280610e3f565b61026961052d366004611ffb565b610e4e565b34801561053e57600080fd5b5061026961054d366004611f09565b610efb565b34801561055e57600080fd5b50610269610f06565b34801561057357600080fd5b50610269610582366004611e8d565b610f41565b34801561059357600080fd5b50610280610f79565b3480156105a857600080fd5b506102806105b7366004611ffb565b610f86565b3480156105c857600080fd5b50610310600e5481565b3480156105de57600080fd5b506102696105ed366004611fb2565b611105565b3480156105fe57600080fd5b5061023461060d366004611e1e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561064757600080fd5b50610269610656366004611fb2565b611142565b34801561066757600080fd5b50610269610676366004611e03565b61117f565b60006001600160e01b0319821663780e9d6360e01b14806106a057506106a082611217565b92915050565b600a546001600160a01b031633146106d95760405162461bcd60e51b81526004016106d0906121ea565b60405180910390fd5b6010805460ff1916911515919091179055565b6060600080546106fb906122fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610727906122fe565b80156107745780601f1061074957610100808354040283529160200191610774565b820191906000526020600020905b81548152906001019060200180831161075757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107f75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106d0565b506000908152600460205260409020546001600160a01b031690565b60118054610820906122fe565b80601f016020809104026020016040519081016040528092919081815260200182805461084c906122fe565b80156108995780601f1061086e57610100808354040283529160200191610899565b820191906000526020600020905b81548152906001019060200180831161087c57829003601f168201915b505050505081565b60006108ac82610cdc565b9050806001600160a01b0316836001600160a01b0316141561091a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106d0565b336001600160a01b03821614806109365750610936813361060d565b6109a85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106d0565b6109b28383611267565b505050565b6109c133826112d5565b6109dd5760405162461bcd60e51b81526004016106d09061221f565b6109b28383836113cc565b60006109f383610d53565b8210610a555760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106d0565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610aa85760405162461bcd60e51b81526004016106d0906121ea565b6000610abc600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b06576040519150601f19603f3d011682016040523d82523d6000602084013e610b0b565b606091505b5050905080610b1957600080fd5b50565b6109b283838360405180602001604052806000815250610f41565b60606000610b4483610d53565b905060008167ffffffffffffffff811115610b6157610b616123c0565b604051908082528060200260200182016040528015610b8a578160200160208202803683370190505b50905060005b82811015610bd157610ba285826109e8565b828281518110610bb457610bb46123aa565b602090810291909101015280610bc981612339565b915050610b90565b509392505050565b600a546001600160a01b03163314610c035760405162461bcd60e51b81526004016106d0906121ea565b600d55565b6000610c1360085490565b8210610c765760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106d0565b60088281548110610c8957610c896123aa565b90600052602060002001549050919050565b600a546001600160a01b03163314610cc55760405162461bcd60e51b81526004016106d0906121ea565b8051610cd890600b906020840190611cc8565b5050565b6000818152600260205260408120546001600160a01b0316806106a05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106d0565b60006001600160a01b038216610dbe5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106d0565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610e045760405162461bcd60e51b81526004016106d0906121ea565b610e0e6000611577565b565b600a546001600160a01b03163314610e3a5760405162461bcd60e51b81526004016106d0906121ea565b600f55565b6060600180546106fb906122fe565b6000610e5960085490565b60105490915060ff1615610e6c57600080fd5b60008211610e7957600080fd5b600f54821115610e8857600080fd5b600e54610e958383612270565b1115610ea057600080fd5b600a546001600160a01b03163314610ecc5781600d54610ec0919061229c565b341015610ecc57600080fd5b60015b8281116109b257610ee933610ee48385612270565b6115c9565b80610ef381612339565b915050610ecf565b610cd83383836115e3565b600a546001600160a01b03163314610f305760405162461bcd60e51b81526004016106d0906121ea565b6010805461ff001916610100179055565b610f4b33836112d5565b610f675760405162461bcd60e51b81526004016106d09061221f565b610f73848484846116b2565b50505050565b600c8054610820906122fe565b6000818152600260205260409020546060906001600160a01b03166110055760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106d0565b601054610100900460ff166110a65760118054611021906122fe565b80601f016020809104026020016040519081016040528092919081815260200182805461104d906122fe565b801561109a5780601f1061106f5761010080835404028352916020019161109a565b820191906000526020600020905b81548152906001019060200180831161107d57829003601f168201915b50505050509050919050565b60006110b06116e5565b905060008151116110d057604051806020016040528060008152506110fe565b806110da846116f4565b600c6040516020016110ee93929190612040565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461112f5760405162461bcd60e51b81526004016106d0906121ea565b8051610cd890600c906020840190611cc8565b600a546001600160a01b0316331461116c5760405162461bcd60e51b81526004016106d0906121ea565b8051610cd8906011906020840190611cc8565b600a546001600160a01b031633146111a95760405162461bcd60e51b81526004016106d0906121ea565b6001600160a01b03811661120e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106d0565b610b1981611577565b60006001600160e01b031982166380ac58cd60e01b148061124857506001600160e01b03198216635b5e139f60e01b145b806106a057506301ffc9a760e01b6001600160e01b03198316146106a0565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061129c82610cdc565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661134e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106d0565b600061135983610cdc565b9050806001600160a01b0316846001600160a01b031614806113945750836001600160a01b03166113898461077e565b6001600160a01b0316145b806113c457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166113df82610cdc565b6001600160a01b0316146114475760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106d0565b6001600160a01b0382166114a95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106d0565b6114b48383836117f2565b6114bf600082611267565b6001600160a01b03831660009081526003602052604081208054600192906114e89084906122bb565b90915550506001600160a01b0382166000908152600360205260408120805460019290611516908490612270565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610cd88282604051806020016040528060008152506118aa565b816001600160a01b0316836001600160a01b031614156116455760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106d0565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6116bd8484846113cc565b6116c9848484846118dd565b610f735760405162461bcd60e51b81526004016106d090612198565b6060600b80546106fb906122fe565b6060816117185750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611742578061172c81612339565b915061173b9050600a83612288565b915061171c565b60008167ffffffffffffffff81111561175d5761175d6123c0565b6040519080825280601f01601f191660200182016040528015611787576020820181803683370190505b5090505b84156113c45761179c6001836122bb565b91506117a9600a86612354565b6117b4906030612270565b60f81b8183815181106117c9576117c96123aa565b60200101906001600160f81b031916908160001a9053506117eb600a86612288565b945061178b565b6001600160a01b03831661184d5761184881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611870565b816001600160a01b0316836001600160a01b0316146118705761187083826119ea565b6001600160a01b038216611887576109b281611a87565b826001600160a01b0316826001600160a01b0316146109b2576109b28282611b36565b6118b48383611b7a565b6118c160008484846118dd565b6109b25760405162461bcd60e51b81526004016106d090612198565b60006001600160a01b0384163b156119df57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611921903390899088908890600401612104565b602060405180830381600087803b15801561193b57600080fd5b505af192505050801561196b575060408051601f3d908101601f1916820190925261196891810190611f95565b60015b6119c5573d808015611999576040519150601f19603f3d011682016040523d82523d6000602084013e61199e565b606091505b5080516119bd5760405162461bcd60e51b81526004016106d090612198565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113c4565b506001949350505050565b600060016119f784610d53565b611a0191906122bb565b600083815260076020526040902054909150808214611a54576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a99906001906122bb565b60008381526009602052604081205460088054939450909284908110611ac157611ac16123aa565b906000526020600020015490508060088381548110611ae257611ae26123aa565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b1a57611b1a612394565b6001900381819060005260206000200160009055905550505050565b6000611b4183610d53565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611bd05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106d0565b6000818152600260205260409020546001600160a01b031615611c355760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106d0565b611c41600083836117f2565b6001600160a01b0382166000908152600360205260408120805460019290611c6a908490612270565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611cd4906122fe565b90600052602060002090601f016020900481019282611cf65760008555611d3c565b82601f10611d0f57805160ff1916838001178555611d3c565b82800160010185558215611d3c579182015b82811115611d3c578251825591602001919060010190611d21565b50611d48929150611d4c565b5090565b5b80821115611d485760008155600101611d4d565b600067ffffffffffffffff80841115611d7c57611d7c6123c0565b604051601f8501601f19908116603f01168101908282118183101715611da457611da46123c0565b81604052809350858152868686011115611dbd57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611dee57600080fd5b919050565b80358015158114611dee57600080fd5b600060208284031215611e1557600080fd5b6110fe82611dd7565b60008060408385031215611e3157600080fd5b611e3a83611dd7565b9150611e4860208401611dd7565b90509250929050565b600080600060608486031215611e6657600080fd5b611e6f84611dd7565b9250611e7d60208501611dd7565b9150604084013590509250925092565b60008060008060808587031215611ea357600080fd5b611eac85611dd7565b9350611eba60208601611dd7565b925060408501359150606085013567ffffffffffffffff811115611edd57600080fd5b8501601f81018713611eee57600080fd5b611efd87823560208401611d61565b91505092959194509250565b60008060408385031215611f1c57600080fd5b611f2583611dd7565b9150611e4860208401611df3565b60008060408385031215611f4657600080fd5b611f4f83611dd7565b946020939093013593505050565b600060208284031215611f6f57600080fd5b6110fe82611df3565b600060208284031215611f8a57600080fd5b81356110fe816123d6565b600060208284031215611fa757600080fd5b81516110fe816123d6565b600060208284031215611fc457600080fd5b813567ffffffffffffffff811115611fdb57600080fd5b8201601f81018413611fec57600080fd5b6113c484823560208401611d61565b60006020828403121561200d57600080fd5b5035919050565b6000815180845261202c8160208601602086016122d2565b601f01601f19169290920160200192915050565b6000845160206120538285838a016122d2565b8551918401916120668184848a016122d2565b8554920191600090600181811c908083168061208357607f831692505b8583108114156120a157634e487b7160e01b85526022600452602485fd5b8080156120b557600181146120c6576120f3565b60ff198516885283880195506120f3565b60008b81526020902060005b858110156120eb5781548a8201529084019088016120d2565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061213790830184612014565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156121795783518352928401929184019160010161215d565b50909695505050505050565b6020815260006110fe6020830184612014565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561228357612283612368565b500190565b6000826122975761229761237e565b500490565b60008160001904831182151516156122b6576122b6612368565b500290565b6000828210156122cd576122cd612368565b500390565b60005b838110156122ed5781810151838201526020016122d5565b83811115610f735750506000910152565b600181811c9082168061231257607f821691505b6020821081141561233357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561234d5761234d612368565b5060010190565b6000826123635761236361237e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b1957600080fdfea2646970667358221220a1be227678f5cf5aa5da56e4d38b9bff69a80503eefe9929733f3b04e24a6b1664736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572",
"opcodes": "PUSH1 0xC0 PUSH1 0x40 MSTORE PUSH1 0x5 PUSH1 0x80 DUP2 SWAP1 MSTORE PUSH5 0x173539B7B7 PUSH1 0xD9 SHL PUSH1 0xA0 SWAP1 DUP2 MSTORE PUSH3 0x28 SWAP2 PUSH1 0xC SWAP2 SWAP1 PUSH3 0x1FF JUMP JUMPDEST POP PUSH7 0x38D7EA4C68000 PUSH1 0xD SSTORE PUSH2 0x12C PUSH1 0xE SSTORE PUSH1 0x1 PUSH1 0xF SSTORE PUSH1 0x10 DUP1 SLOAD PUSH2 0xFFFF NOT AND SWAP1 SSTORE CALLVALUE DUP1 ISZERO PUSH3 0x57 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x28BA CODESIZE SUB DUP1 PUSH3 0x28BA DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x7A SWAP2 PUSH3 0x35C JUMP JUMPDEST DUP4 MLOAD DUP5 SWAP1 DUP5 SWAP1 PUSH3 0x93 SWAP1 PUSH1 0x0 SWAP1 PUSH1 0x20 DUP6 ADD SWAP1 PUSH3 0x1FF JUMP JUMPDEST POP DUP1 MLOAD PUSH3 0xA9 SWAP1 PUSH1 0x1 SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH3 0x1FF JUMP JUMPDEST POP POP POP PUSH3 0xC6 PUSH3 0xC0 PUSH3 0xE6 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0xEA JUMP JUMPDEST PUSH3 0xD1 DUP3 PUSH3 0x13C JUMP JUMPDEST PUSH3 0xDC DUP2 PUSH3 0x1A4 JUMP JUMPDEST POP POP POP POP PUSH3 0x468 JUMP JUMPDEST CALLER SWAP1 JUMP JUMPDEST PUSH1 0xA DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR SWAP1 SWAP4 SSTORE PUSH1 0x40 MLOAD SWAP2 AND SWAP2 SWAP1 DUP3 SWAP1 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP1 PUSH1 0x0 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH3 0x18B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0x289A DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 MLOAD PUSH3 0x1A0 SWAP1 PUSH1 0xB SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH3 0x1FF JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH3 0x1EF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0x289A DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH3 0x182 JUMP JUMPDEST DUP1 MLOAD PUSH3 0x1A0 SWAP1 PUSH1 0x11 SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x20D SWAP1 PUSH3 0x415 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x231 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x27C JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x24C JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x27C JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x27C JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x27C JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x25F JUMP JUMPDEST POP PUSH3 0x28A SWAP3 SWAP2 POP PUSH3 0x28E JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x28A JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0x28F JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x2B7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x2D4 JUMPI PUSH3 0x2D4 PUSH3 0x452 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP4 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP3 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH3 0x2FF JUMPI PUSH3 0x2FF PUSH3 0x452 JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE PUSH1 0x20 SWAP3 POP DUP7 DUP4 DUP6 DUP9 ADD ADD GT ISZERO PUSH3 0x31C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP2 POP JUMPDEST DUP4 DUP3 LT ISZERO PUSH3 0x340 JUMPI DUP6 DUP3 ADD DUP4 ADD MLOAD DUP2 DUP4 ADD DUP5 ADD MSTORE SWAP1 DUP3 ADD SWAP1 PUSH3 0x321 JUMP JUMPDEST DUP4 DUP3 GT ISZERO PUSH3 0x352 JUMPI PUSH1 0x0 DUP4 DUP6 DUP4 ADD ADD MSTORE JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH3 0x373 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x38B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x399 DUP9 DUP4 DUP10 ADD PUSH3 0x2A5 JUMP JUMPDEST SWAP6 POP PUSH1 0x20 DUP8 ADD MLOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH3 0x3B0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x3BE DUP9 DUP4 DUP10 ADD PUSH3 0x2A5 JUMP JUMPDEST SWAP5 POP PUSH1 0x40 DUP8 ADD MLOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH3 0x3D5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x3E3 DUP9 DUP4 DUP10 ADD PUSH3 0x2A5 JUMP JUMPDEST SWAP4 POP PUSH1 0x60 DUP8 ADD MLOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH3 0x3FA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH3 0x409 DUP8 DUP3 DUP9 ADD PUSH3 0x2A5 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH3 0x42A JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x44C JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x2422 DUP1 PUSH3 0x478 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x20F JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x5C975ABB GT PUSH2 0x118 JUMPI DUP1 PUSH4 0xA475B5DD GT PUSH2 0xA0 JUMPI DUP1 PUSH4 0xD5ABEB01 GT PUSH2 0x6F JUMPI DUP1 PUSH4 0xD5ABEB01 EQ PUSH2 0x5BC JUMPI DUP1 PUSH4 0xDA3EF23F EQ PUSH2 0x5D2 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x5F2 JUMPI DUP1 PUSH4 0xF2C4CE1E EQ PUSH2 0x63B JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x65B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xA475B5DD EQ PUSH2 0x552 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x567 JUMPI DUP1 PUSH4 0xC6682862 EQ PUSH2 0x587 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x59C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x7F00C7A6 GT PUSH2 0xE7 JUMPI DUP1 PUSH4 0x7F00C7A6 EQ PUSH2 0x4CC JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x4EC JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x50A JUMPI DUP1 PUSH4 0xA0712D68 EQ PUSH2 0x51F JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x532 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x45D JUMPI DUP1 PUSH4 0x6352211E EQ PUSH2 0x477 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x497 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x4B7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x23B872DD GT PUSH2 0x19B JUMPI DUP1 PUSH4 0x438B6300 GT PUSH2 0x16A JUMPI DUP1 PUSH4 0x438B6300 EQ PUSH2 0x3B1 JUMPI DUP1 PUSH4 0x44A0D68A EQ PUSH2 0x3DE JUMPI DUP1 PUSH4 0x4F6CCCE7 EQ PUSH2 0x3FE JUMPI DUP1 PUSH4 0x51830227 EQ PUSH2 0x41E JUMPI DUP1 PUSH4 0x55F804B3 EQ PUSH2 0x43D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x23B872DD EQ PUSH2 0x349 JUMPI DUP1 PUSH4 0x2F745C59 EQ PUSH2 0x369 JUMPI DUP1 PUSH4 0x3CCFD60B EQ PUSH2 0x389 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x391 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x81C8C44 GT PUSH2 0x1E2 JUMPI DUP1 PUSH4 0x81C8C44 EQ PUSH2 0x2C5 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x2DA JUMPI DUP1 PUSH4 0x13FAEDE6 EQ PUSH2 0x2FA JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x31E JUMPI DUP1 PUSH4 0x239C70AE EQ PUSH2 0x333 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x214 JUMPI DUP1 PUSH4 0x2329A29 EQ PUSH2 0x249 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x26B JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x28D JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x220 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x234 PUSH2 0x22F CALLDATASIZE PUSH1 0x4 PUSH2 0x1F78 JUMP JUMPDEST PUSH2 0x67B JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x255 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x269 PUSH2 0x264 CALLDATASIZE PUSH1 0x4 PUSH2 0x1F5D JUMP JUMPDEST PUSH2 0x6A6 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x277 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x280 PUSH2 0x6EC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x240 SWAP2 SWAP1 PUSH2 0x2185 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x299 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2AD PUSH2 0x2A8 CALLDATASIZE PUSH1 0x4 PUSH2 0x1FFB JUMP JUMPDEST PUSH2 0x77E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x240 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2D1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x280 PUSH2 0x813 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2E6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x269 PUSH2 0x2F5 CALLDATASIZE PUSH1 0x4 PUSH2 0x1F33 JUMP JUMPDEST PUSH2 0x8A1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x306 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x310 PUSH1 0xD SLOAD DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x240 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x32A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x8 SLOAD PUSH2 0x310 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x33F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x310 PUSH1 0xF SLOAD DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x355 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x269 PUSH2 0x364 CALLDATASIZE PUSH1 0x4 PUSH2 0x1E51 JUMP JUMPDEST PUSH2 0x9B7 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x375 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x310 PUSH2 0x384 CALLDATASIZE PUSH1 0x4 PUSH2 0x1F33 JUMP JUMPDEST PUSH2 0x9E8 JUMP JUMPDEST PUSH2 0x269 PUSH2 0xA7E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x39D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x269 PUSH2 0x3AC CALLDATASIZE PUSH1 0x4 PUSH2 0x1E51 JUMP JUMPDEST PUSH2 0xB1C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3BD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3D1 PUSH2 0x3CC CALLDATASIZE PUSH1 0x4 PUSH2 0x1E03 JUMP JUMPDEST PUSH2 0xB37 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x240 SWAP2 SWAP1 PUSH2 0x2141 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3EA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x269 PUSH2 0x3F9 CALLDATASIZE PUSH1 0x4 PUSH2 0x1FFB JUMP JUMPDEST PUSH2 0xBD9 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x40A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x310 PUSH2 0x419 CALLDATASIZE PUSH1 0x4 PUSH2 0x1FFB JUMP JUMPDEST PUSH2 0xC08 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x42A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x10 SLOAD PUSH2 0x234 SWAP1 PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x449 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x269 PUSH2 0x458 CALLDATASIZE PUSH1 0x4 PUSH2 0x1FB2 JUMP JUMPDEST PUSH2 0xC9B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x469 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x10 SLOAD PUSH2 0x234 SWAP1 PUSH1 0xFF AND DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x483 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2AD PUSH2 0x492 CALLDATASIZE PUSH1 0x4 PUSH2 0x1FFB JUMP JUMPDEST PUSH2 0xCDC JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4A3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x310 PUSH2 0x4B2 CALLDATASIZE PUSH1 0x4 PUSH2 0x1E03 JUMP JUMPDEST PUSH2 0xD53 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4C3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x269 PUSH2 0xDDA JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4D8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x269 PUSH2 0x4E7 CALLDATASIZE PUSH1 0x4 PUSH2 0x1FFB JUMP JUMPDEST PUSH2 0xE10 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4F8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2AD JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x516 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x280 PUSH2 0xE3F JUMP JUMPDEST PUSH2 0x269 PUSH2 0x52D CALLDATASIZE PUSH1 0x4 PUSH2 0x1FFB JUMP JUMPDEST PUSH2 0xE4E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x53E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x269 PUSH2 0x54D CALLDATASIZE PUSH1 0x4 PUSH2 0x1F09 JUMP JUMPDEST PUSH2 0xEFB JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x55E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x269 PUSH2 0xF06 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x573 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x269 PUSH2 0x582 CALLDATASIZE PUSH1 0x4 PUSH2 0x1E8D JUMP JUMPDEST PUSH2 0xF41 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x593 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x280 PUSH2 0xF79 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5A8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x280 PUSH2 0x5B7 CALLDATASIZE PUSH1 0x4 PUSH2 0x1FFB JUMP JUMPDEST PUSH2 0xF86 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5C8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x310 PUSH1 0xE SLOAD DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5DE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x269 PUSH2 0x5ED CALLDATASIZE PUSH1 0x4 PUSH2 0x1FB2 JUMP JUMPDEST PUSH2 0x1105 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5FE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x234 PUSH2 0x60D CALLDATASIZE PUSH1 0x4 PUSH2 0x1E1E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x647 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x269 PUSH2 0x656 CALLDATASIZE PUSH1 0x4 PUSH2 0x1FB2 JUMP JUMPDEST PUSH2 0x1142 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x667 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x269 PUSH2 0x676 CALLDATASIZE PUSH1 0x4 PUSH2 0x1E03 JUMP JUMPDEST PUSH2 0x117F JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x780E9D63 PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x6A0 JUMPI POP PUSH2 0x6A0 DUP3 PUSH2 0x1217 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x6D9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D0 SWAP1 PUSH2 0x21EA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x10 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP2 ISZERO ISZERO SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x6FB SWAP1 PUSH2 0x22FE 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 0x727 SWAP1 PUSH2 0x22FE JUMP JUMPDEST DUP1 ISZERO PUSH2 0x774 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x749 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x774 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 0x757 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x7F7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76656420717565727920666F72206E6F6E6578 PUSH1 0x44 DUP3 ADD MSTORE PUSH12 0x34B9BA32B73A103A37B5B2B7 PUSH1 0xA1 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x6D0 JUMP JUMPDEST POP PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x11 DUP1 SLOAD PUSH2 0x820 SWAP1 PUSH2 0x22FE 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 0x84C SWAP1 PUSH2 0x22FE JUMP JUMPDEST DUP1 ISZERO PUSH2 0x899 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x86E JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x899 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 0x87C JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8AC DUP3 PUSH2 0xCDC JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x91A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x39 PUSH1 0xF9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x6D0 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND EQ DUP1 PUSH2 0x936 JUMPI POP PUSH2 0x936 DUP2 CALLER PUSH2 0x60D JUMP JUMPDEST PUSH2 0x9A8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x38 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F74206F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6E6572206E6F7220617070726F76656420666F7220616C6C0000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x6D0 JUMP JUMPDEST PUSH2 0x9B2 DUP4 DUP4 PUSH2 0x1267 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x9C1 CALLER DUP3 PUSH2 0x12D5 JUMP JUMPDEST PUSH2 0x9DD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D0 SWAP1 PUSH2 0x221F JUMP JUMPDEST PUSH2 0x9B2 DUP4 DUP4 DUP4 PUSH2 0x13CC JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9F3 DUP4 PUSH2 0xD53 JUMP JUMPDEST DUP3 LT PUSH2 0xA55 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243373231456E756D657261626C653A206F776E657220696E646578206F75 PUSH1 0x44 DUP3 ADD MSTORE PUSH11 0x74206F6620626F756E6473 PUSH1 0xA8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x6D0 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xAA8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D0 SWAP1 PUSH2 0x21EA JUMP JUMPDEST PUSH1 0x0 PUSH2 0xABC PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SELFBALANCE PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0xB06 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 0xB0B JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0xB19 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x9B2 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0xF41 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0xB44 DUP4 PUSH2 0xD53 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xB61 JUMPI PUSH2 0xB61 PUSH2 0x23C0 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xB8A JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0xBD1 JUMPI PUSH2 0xBA2 DUP6 DUP3 PUSH2 0x9E8 JUMP JUMPDEST DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xBB4 JUMPI PUSH2 0xBB4 PUSH2 0x23AA JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0xBC9 DUP2 PUSH2 0x2339 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xB90 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xC03 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D0 SWAP1 PUSH2 0x21EA JUMP JUMPDEST PUSH1 0xD SSTORE JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC13 PUSH1 0x8 SLOAD SWAP1 JUMP JUMPDEST DUP3 LT PUSH2 0xC76 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243373231456E756D657261626C653A20676C6F62616C20696E646578206F PUSH1 0x44 DUP3 ADD MSTORE PUSH12 0x7574206F6620626F756E6473 PUSH1 0xA0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x6D0 JUMP JUMPDEST PUSH1 0x8 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0xC89 JUMPI PUSH2 0xC89 PUSH2 0x23AA JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xCC5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D0 SWAP1 PUSH2 0x21EA JUMP JUMPDEST DUP1 MLOAD PUSH2 0xCD8 SWAP1 PUSH1 0xB SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH2 0x1CC8 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP1 PUSH2 0x6A0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A206F776E657220717565727920666F72206E6F6E6578697374 PUSH1 0x44 DUP3 ADD MSTORE PUSH9 0x32B73A103A37B5B2B7 PUSH1 0xB9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x6D0 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xDBE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A2062616C616E636520717565727920666F7220746865207A65 PUSH1 0x44 DUP3 ADD MSTORE PUSH10 0x726F2061646472657373 PUSH1 0xB0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x6D0 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xE04 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D0 SWAP1 PUSH2 0x21EA JUMP JUMPDEST PUSH2 0xE0E PUSH1 0x0 PUSH2 0x1577 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xE3A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D0 SWAP1 PUSH2 0x21EA JUMP JUMPDEST PUSH1 0xF SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x6FB SWAP1 PUSH2 0x22FE JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE59 PUSH1 0x8 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x10 SLOAD SWAP1 SWAP2 POP PUSH1 0xFF AND ISZERO PUSH2 0xE6C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP3 GT PUSH2 0xE79 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0xF SLOAD DUP3 GT ISZERO PUSH2 0xE88 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0xE SLOAD PUSH2 0xE95 DUP4 DUP4 PUSH2 0x2270 JUMP JUMPDEST GT ISZERO PUSH2 0xEA0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xECC JUMPI DUP2 PUSH1 0xD SLOAD PUSH2 0xEC0 SWAP2 SWAP1 PUSH2 0x229C JUMP JUMPDEST CALLVALUE LT ISZERO PUSH2 0xECC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x1 JUMPDEST DUP3 DUP2 GT PUSH2 0x9B2 JUMPI PUSH2 0xEE9 CALLER PUSH2 0xEE4 DUP4 DUP6 PUSH2 0x2270 JUMP JUMPDEST PUSH2 0x15C9 JUMP JUMPDEST DUP1 PUSH2 0xEF3 DUP2 PUSH2 0x2339 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xECF JUMP JUMPDEST PUSH2 0xCD8 CALLER DUP4 DUP4 PUSH2 0x15E3 JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xF30 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D0 SWAP1 PUSH2 0x21EA JUMP JUMPDEST PUSH1 0x10 DUP1 SLOAD PUSH2 0xFF00 NOT AND PUSH2 0x100 OR SWAP1 SSTORE JUMP JUMPDEST PUSH2 0xF4B CALLER DUP4 PUSH2 0x12D5 JUMP JUMPDEST PUSH2 0xF67 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D0 SWAP1 PUSH2 0x221F JUMP JUMPDEST PUSH2 0xF73 DUP5 DUP5 DUP5 DUP5 PUSH2 0x16B2 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0xC DUP1 SLOAD PUSH2 0x820 SWAP1 PUSH2 0x22FE JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x60 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1005 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732314D657461646174613A2055524920717565727920666F72206E6F PUSH1 0x44 DUP3 ADD MSTORE PUSH15 0x3732BC34B9BA32B73A103A37B5B2B7 PUSH1 0x89 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x6D0 JUMP JUMPDEST PUSH1 0x10 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND PUSH2 0x10A6 JUMPI PUSH1 0x11 DUP1 SLOAD PUSH2 0x1021 SWAP1 PUSH2 0x22FE 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 0x104D SWAP1 PUSH2 0x22FE JUMP JUMPDEST DUP1 ISZERO PUSH2 0x109A JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x106F JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x109A 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 0x107D JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x10B0 PUSH2 0x16E5 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x10D0 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x10FE JUMP JUMPDEST DUP1 PUSH2 0x10DA DUP5 PUSH2 0x16F4 JUMP JUMPDEST PUSH1 0xC PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x10EE SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x2040 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x112F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D0 SWAP1 PUSH2 0x21EA JUMP JUMPDEST DUP1 MLOAD PUSH2 0xCD8 SWAP1 PUSH1 0xC SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH2 0x1CC8 JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x116C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D0 SWAP1 PUSH2 0x21EA JUMP JUMPDEST DUP1 MLOAD PUSH2 0xCD8 SWAP1 PUSH1 0x11 SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH2 0x1CC8 JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x11A9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D0 SWAP1 PUSH2 0x21EA JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x120E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x44 DUP3 ADD MSTORE PUSH6 0x646472657373 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x6D0 JUMP JUMPDEST PUSH2 0xB19 DUP2 PUSH2 0x1577 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x80AC58CD PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x1248 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x5B5E139F PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x6A0 JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ PUSH2 0x6A0 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE DUP2 SWAP1 PUSH2 0x129C DUP3 PUSH2 0xCDC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x134E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A206F70657261746F7220717565727920666F72206E6F6E6578 PUSH1 0x44 DUP3 ADD MSTORE PUSH12 0x34B9BA32B73A103A37B5B2B7 PUSH1 0xA1 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x6D0 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1359 DUP4 PUSH2 0xCDC JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x1394 JUMPI POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1389 DUP5 PUSH2 0x77E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST DUP1 PUSH2 0x13C4 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP9 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x13DF DUP3 PUSH2 0xCDC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1447 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E73666572206F6620746F6B656E20746861742069 PUSH1 0x44 DUP3 ADD MSTORE PUSH9 0x39903737BA1037BBB7 PUSH1 0xB9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x6D0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x14A9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E7366657220746F20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH4 0x72657373 PUSH1 0xE0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x6D0 JUMP JUMPDEST PUSH2 0x14B4 DUP4 DUP4 DUP4 PUSH2 0x17F2 JUMP JUMPDEST PUSH2 0x14BF PUSH1 0x0 DUP3 PUSH2 0x1267 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0x14E8 SWAP1 DUP5 SWAP1 PUSH2 0x22BB JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0x1516 SWAP1 DUP5 SWAP1 PUSH2 0x2270 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE SWAP2 MLOAD DUP5 SWAP4 SWAP2 DUP8 AND SWAP2 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 LOG4 POP POP POP JUMP JUMPDEST PUSH1 0xA DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR SWAP1 SWAP4 SSTORE PUSH1 0x40 MLOAD SWAP2 AND SWAP2 SWAP1 DUP3 SWAP1 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP1 PUSH1 0x0 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0xCD8 DUP3 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x18AA JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x1645 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x19 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x6D0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND DUP7 ISZERO ISZERO SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP2 MLOAD SWAP2 DUP3 MSTORE PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x16BD DUP5 DUP5 DUP5 PUSH2 0x13CC JUMP JUMPDEST PUSH2 0x16C9 DUP5 DUP5 DUP5 DUP5 PUSH2 0x18DD JUMP JUMPDEST PUSH2 0xF73 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D0 SWAP1 PUSH2 0x2198 JUMP JUMPDEST PUSH1 0x60 PUSH1 0xB DUP1 SLOAD PUSH2 0x6FB SWAP1 PUSH2 0x22FE JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH2 0x1718 JUMPI POP POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x1 DUP2 MSTORE PUSH1 0x3 PUSH1 0xFC SHL PUSH1 0x20 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x0 JUMPDEST DUP2 ISZERO PUSH2 0x1742 JUMPI DUP1 PUSH2 0x172C DUP2 PUSH2 0x2339 JUMP JUMPDEST SWAP2 POP PUSH2 0x173B SWAP1 POP PUSH1 0xA DUP4 PUSH2 0x2288 JUMP JUMPDEST SWAP2 POP PUSH2 0x171C JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x175D JUMPI PUSH2 0x175D PUSH2 0x23C0 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1787 JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP JUMPDEST DUP5 ISZERO PUSH2 0x13C4 JUMPI PUSH2 0x179C PUSH1 0x1 DUP4 PUSH2 0x22BB JUMP JUMPDEST SWAP2 POP PUSH2 0x17A9 PUSH1 0xA DUP7 PUSH2 0x2354 JUMP JUMPDEST PUSH2 0x17B4 SWAP1 PUSH1 0x30 PUSH2 0x2270 JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x17C9 JUMPI PUSH2 0x17C9 PUSH2 0x23AA JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH2 0x17EB PUSH1 0xA DUP7 PUSH2 0x2288 JUMP JUMPDEST SWAP5 POP PUSH2 0x178B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x184D JUMPI PUSH2 0x1848 DUP2 PUSH1 0x8 DUP1 SLOAD PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP3 SWAP1 SSTORE PUSH1 0x1 DUP3 ADD DUP4 SSTORE SWAP2 SWAP1 SWAP2 MSTORE PUSH32 0xF3F7A9FE364FAAB93B216DA50A3214154F22A0A2B415B23A84C8169E8B636EE3 ADD SSTORE JUMP JUMPDEST PUSH2 0x1870 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1870 JUMPI PUSH2 0x1870 DUP4 DUP3 PUSH2 0x19EA JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1887 JUMPI PUSH2 0x9B2 DUP2 PUSH2 0x1A87 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x9B2 JUMPI PUSH2 0x9B2 DUP3 DUP3 PUSH2 0x1B36 JUMP JUMPDEST PUSH2 0x18B4 DUP4 DUP4 PUSH2 0x1B7A JUMP JUMPDEST PUSH2 0x18C1 PUSH1 0x0 DUP5 DUP5 DUP5 PUSH2 0x18DD JUMP JUMPDEST PUSH2 0x9B2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D0 SWAP1 PUSH2 0x2198 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO PUSH2 0x19DF JUMPI PUSH1 0x40 MLOAD PUSH4 0xA85BD01 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0x150B7A02 SWAP1 PUSH2 0x1921 SWAP1 CALLER SWAP1 DUP10 SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH2 0x2104 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x193B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x196B JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x1968 SWAP2 DUP2 ADD SWAP1 PUSH2 0x1F95 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x19C5 JUMPI RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0x1999 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 0x199E JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP DUP1 MLOAD PUSH2 0x19BD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D0 SWAP1 PUSH2 0x2198 JUMP JUMPDEST DUP1 MLOAD DUP2 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND PUSH4 0xA85BD01 PUSH1 0xE1 SHL EQ SWAP1 POP PUSH2 0x13C4 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH2 0x19F7 DUP5 PUSH2 0xD53 JUMP JUMPDEST PUSH2 0x1A01 SWAP2 SWAP1 PUSH2 0x22BB JUMP JUMPDEST PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 SWAP2 POP DUP1 DUP3 EQ PUSH2 0x1A54 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP6 DUP5 MSTORE DUP3 MSTORE DUP1 DUP4 KECCAK256 SLOAD DUP5 DUP5 MSTORE DUP2 DUP5 KECCAK256 DUP2 SWAP1 SSTORE DUP4 MSTORE PUSH1 0x7 SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP2 SWAP1 SSTORE JUMPDEST POP PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x7 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 DUP5 SWAP1 SSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP5 AND DUP4 MSTORE PUSH1 0x6 DUP2 MSTORE DUP4 DUP4 KECCAK256 SWAP2 DUP4 MSTORE MSTORE SWAP1 DUP2 KECCAK256 SSTORE JUMP JUMPDEST PUSH1 0x8 SLOAD PUSH1 0x0 SWAP1 PUSH2 0x1A99 SWAP1 PUSH1 0x1 SWAP1 PUSH2 0x22BB JUMP JUMPDEST PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x8 DUP1 SLOAD SWAP4 SWAP5 POP SWAP1 SWAP3 DUP5 SWAP1 DUP2 LT PUSH2 0x1AC1 JUMPI PUSH2 0x1AC1 PUSH2 0x23AA JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP DUP1 PUSH1 0x8 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x1AE2 JUMPI PUSH2 0x1AE2 PUSH2 0x23AA JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 KECCAK256 SWAP1 SWAP2 ADD SWAP3 SWAP1 SWAP3 SSTORE DUP3 DUP2 MSTORE PUSH1 0x9 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP5 SWAP1 SSTORE DUP6 DUP3 MSTORE DUP2 KECCAK256 SSTORE PUSH1 0x8 DUP1 SLOAD DUP1 PUSH2 0x1B1A JUMPI PUSH2 0x1B1A PUSH2 0x2394 JUMP JUMPDEST PUSH1 0x1 SWAP1 SUB DUP2 DUP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SSTORE SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1B41 DUP4 PUSH2 0xD53 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP7 DUP5 MSTORE DUP3 MSTORE DUP1 DUP4 KECCAK256 DUP6 SWAP1 SSTORE SWAP4 DUP3 MSTORE PUSH1 0x7 SWAP1 MSTORE SWAP2 SWAP1 SWAP2 KECCAK256 SWAP2 SWAP1 SWAP2 SSTORE POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1BD0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A206D696E7420746F20746865207A65726F2061646472657373 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x6D0 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO PUSH2 0x1C35 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20746F6B656E20616C7265616479206D696E74656400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x6D0 JUMP JUMPDEST PUSH2 0x1C41 PUSH1 0x0 DUP4 DUP4 PUSH2 0x17F2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0x1C6A SWAP1 DUP5 SWAP1 PUSH2 0x2270 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP1 MLOAD DUP4 SWAP3 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 DUP3 SWAP1 LOG4 POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x1CD4 SWAP1 PUSH2 0x22FE JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x1CF6 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x1D3C JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x1D0F JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x1D3C JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x1D3C JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x1D3C JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x1D21 JUMP JUMPDEST POP PUSH2 0x1D48 SWAP3 SWAP2 POP PUSH2 0x1D4C JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x1D48 JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x1D4D JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP5 GT ISZERO PUSH2 0x1D7C JUMPI PUSH2 0x1D7C PUSH2 0x23C0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP6 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP3 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH2 0x1DA4 JUMPI PUSH2 0x1DA4 PUSH2 0x23C0 JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP1 SWAP4 POP DUP6 DUP2 MSTORE DUP7 DUP7 DUP7 ADD GT ISZERO PUSH2 0x1DBD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 DUP6 PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH1 0x0 PUSH1 0x20 DUP8 DUP4 ADD ADD MSTORE POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1DEE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x1DEE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1E15 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x10FE DUP3 PUSH2 0x1DD7 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1E31 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1E3A DUP4 PUSH2 0x1DD7 JUMP JUMPDEST SWAP2 POP PUSH2 0x1E48 PUSH1 0x20 DUP5 ADD PUSH2 0x1DD7 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1E66 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1E6F DUP5 PUSH2 0x1DD7 JUMP JUMPDEST SWAP3 POP PUSH2 0x1E7D PUSH1 0x20 DUP6 ADD PUSH2 0x1DD7 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1EA3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1EAC DUP6 PUSH2 0x1DD7 JUMP JUMPDEST SWAP4 POP PUSH2 0x1EBA PUSH1 0x20 DUP7 ADD PUSH2 0x1DD7 JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1EDD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 ADD PUSH1 0x1F DUP2 ADD DUP8 SGT PUSH2 0x1EEE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1EFD DUP8 DUP3 CALLDATALOAD PUSH1 0x20 DUP5 ADD PUSH2 0x1D61 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 0x1F1C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1F25 DUP4 PUSH2 0x1DD7 JUMP JUMPDEST SWAP2 POP PUSH2 0x1E48 PUSH1 0x20 DUP5 ADD PUSH2 0x1DF3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1F46 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1F4F DUP4 PUSH2 0x1DD7 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1F6F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x10FE DUP3 PUSH2 0x1DF3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1F8A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x10FE DUP2 PUSH2 0x23D6 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1FA7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x10FE DUP2 PUSH2 0x23D6 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1FC4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1FDB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 ADD PUSH1 0x1F DUP2 ADD DUP5 SGT PUSH2 0x1FEC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x13C4 DUP5 DUP3 CALLDATALOAD PUSH1 0x20 DUP5 ADD PUSH2 0x1D61 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x200D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x202C DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x22D2 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP5 MLOAD PUSH1 0x20 PUSH2 0x2053 DUP3 DUP6 DUP4 DUP11 ADD PUSH2 0x22D2 JUMP JUMPDEST DUP6 MLOAD SWAP2 DUP5 ADD SWAP2 PUSH2 0x2066 DUP2 DUP5 DUP5 DUP11 ADD PUSH2 0x22D2 JUMP JUMPDEST DUP6 SLOAD SWAP3 ADD SWAP2 PUSH1 0x0 SWAP1 PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP1 DUP4 AND DUP1 PUSH2 0x2083 JUMPI PUSH1 0x7F DUP4 AND SWAP3 POP JUMPDEST DUP6 DUP4 LT DUP2 EQ ISZERO PUSH2 0x20A1 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL DUP6 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 DUP6 REVERT JUMPDEST DUP1 DUP1 ISZERO PUSH2 0x20B5 JUMPI PUSH1 0x1 DUP2 EQ PUSH2 0x20C6 JUMPI PUSH2 0x20F3 JUMP JUMPDEST PUSH1 0xFF NOT DUP6 AND DUP9 MSTORE DUP4 DUP9 ADD SWAP6 POP PUSH2 0x20F3 JUMP JUMPDEST PUSH1 0x0 DUP12 DUP2 MSTORE PUSH1 0x20 SWAP1 KECCAK256 PUSH1 0x0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x20EB JUMPI DUP2 SLOAD DUP11 DUP3 ADD MSTORE SWAP1 DUP5 ADD SWAP1 DUP9 ADD PUSH2 0x20D2 JUMP JUMPDEST POP POP DUP4 DUP9 ADD SWAP6 POP JUMPDEST POP SWAP4 SWAP12 SWAP11 POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND DUP3 MSTORE DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x80 PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH2 0x2137 SWAP1 DUP4 ADD DUP5 PUSH2 0x2014 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 DUP5 DUP3 ADD SWAP1 PUSH1 0x40 DUP6 ADD SWAP1 DUP5 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x2179 JUMPI DUP4 MLOAD DUP4 MSTORE SWAP3 DUP5 ADD SWAP3 SWAP2 DUP5 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x215D JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x10FE PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x2014 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x32 SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x40 DUP3 ADD MSTORE PUSH18 0x31B2B4BB32B91034B6B83632B6B2B73A32B9 PUSH1 0x71 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP2 DUP2 ADD MSTORE PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x31 SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E736665722063616C6C6572206973206E6F74206F PUSH1 0x40 DUP3 ADD MSTORE PUSH17 0x1DDB995C881B9BDC88185C1C1C9BDD9959 PUSH1 0x7A SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x2283 JUMPI PUSH2 0x2283 PUSH2 0x2368 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x2297 JUMPI PUSH2 0x2297 PUSH2 0x237E JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 NOT DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x22B6 JUMPI PUSH2 0x22B6 PUSH2 0x2368 JUMP JUMPDEST POP MUL SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x22CD JUMPI PUSH2 0x22CD PUSH2 0x2368 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x22ED JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x22D5 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0xF73 JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x2312 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x2333 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x234D JUMPI PUSH2 0x234D PUSH2 0x2368 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x2363 JUMPI PUSH2 0x2363 PUSH2 0x237E JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x31 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0xB19 JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 LOG1 0xBE 0x22 PUSH23 0x78F5CF5AA5DA56E4D38B9BFF69A80503EEFE9929733F3B DIV 0xE2 0x4A PUSH12 0x1664736F6C63430008070033 0x4F PUSH24 0x6E61626C653A2063616C6C6572206973206E6F7420746865 KECCAK256 PUSH16 0x776E6572000000000000000000000000 ",
"sourceMap": "310:37:12:-:0;206:2874;310:37;;206:2874;310:37;;;-1:-1:-1;;;310:37:12;;;;;;;;;;:::i;:::-;-1:-1:-1;374:11:12;352:33;;417:3;390:30;;456:1;425:32;;462:26;;;-1:-1:-1;;493:28:12;;;561:249;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1441:13:1;;712:5:12;;719:7;;1441:13:1;;:5;;:13;;;;;:::i;:::-;-1:-1:-1;1464:17:1;;;;:7;;:17;;;;;:::i;:::-;;1375:113;;921:32:0;940:12;:10;;;:12;;:::i;:::-;921:18;:32::i;:::-;735:24:12::1;746:12:::0;735:10:::1;:24::i;:::-;766:38;784:19:::0;766:17:::1;:38::i;:::-;561:249:::0;;;;206:2874;;640:96:8;719:10;;640:96::o;2270:187:0:-;2362:6;;;-1:-1:-1;;;;;2378:17:0;;;-1:-1:-1;;;;;;2378:17:0;;;;;;;2410:40;;2362:6;;;2378:17;2362:6;;2410:40;;2343:16;;2410:40;2333:124;2270:187;:::o;2621:98:12:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;2082:2:13;1240:68:0;;;2064:21:13;;;2101:18;;;2094:30;-1:-1:-1;;;;;;;;;;;2140:18:13;;;2133:62;2212:18;;1240:68:0;;;;;;;;;2692:21:12;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;2621:98:::0;:::o;2495:120::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;2082:2:13;1240:68:0;;;2064:21:13;;;2101:18;;;2094:30;-1:-1:-1;;;;;;;;;;;2140:18:13;;;2133:62;2212:18;;1240:68:0;1880:356:13;1240:68:0;2577:32:12;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;206:2874;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;206:2874:12;;;-1:-1:-1;206:2874:12;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:885:13;68:5;121:3;114:4;106:6;102:17;98:27;88:55;;139:1;136;129:12;88:55;162:13;;-1:-1:-1;;;;;224:10:13;;;221:36;;;237:18;;:::i;:::-;312:2;306:9;280:2;366:13;;-1:-1:-1;;362:22:13;;;386:2;358:31;354:40;342:53;;;410:18;;;430:22;;;407:46;404:72;;;456:18;;:::i;:::-;496:10;492:2;485:22;531:2;523:6;516:18;553:4;543:14;;598:3;593:2;588;580:6;576:15;572:24;569:33;566:53;;;615:1;612;605:12;566:53;637:1;628:10;;647:133;661:2;658:1;655:9;647:133;;;749:14;;;745:23;;739:30;718:14;;;714:23;;707:63;672:10;;;;647:133;;;798:2;795:1;792:9;789:80;;;857:1;852:2;847;839:6;835:15;831:24;824:35;789:80;887:6;14:885;-1:-1:-1;;;;;;14:885:13:o;904:971::-;1041:6;1049;1057;1065;1118:3;1106:9;1097:7;1093:23;1089:33;1086:53;;;1135:1;1132;1125:12;1086:53;1162:16;;-1:-1:-1;;;;;1227:14:13;;;1224:34;;;1254:1;1251;1244:12;1224:34;1277:61;1330:7;1321:6;1310:9;1306:22;1277:61;:::i;:::-;1267:71;;1384:2;1373:9;1369:18;1363:25;1347:41;;1413:2;1403:8;1400:16;1397:36;;;1429:1;1426;1419:12;1397:36;1452:63;1507:7;1496:8;1485:9;1481:24;1452:63;:::i;:::-;1442:73;;1561:2;1550:9;1546:18;1540:25;1524:41;;1590:2;1580:8;1577:16;1574:36;;;1606:1;1603;1596:12;1574:36;1629:63;1684:7;1673:8;1662:9;1658:24;1629:63;:::i;:::-;1619:73;;1738:2;1727:9;1723:18;1717:25;1701:41;;1767:2;1757:8;1754:16;1751:36;;;1783:1;1780;1773:12;1751:36;;1806:63;1861:7;1850:8;1839:9;1835:24;1806:63;:::i;:::-;1796:73;;;904:971;;;;;;;:::o;2241:380::-;2320:1;2316:12;;;;2363;;;2384:61;;2438:4;2430:6;2426:17;2416:27;;2384:61;2491:2;2483:6;2480:14;2460:18;2457:38;2454:161;;;2537:10;2532:3;2528:20;2525:1;2518:31;2572:4;2569:1;2562:15;2600:4;2597:1;2590:15;2454:161;;2241:380;;;:::o;2626:127::-;2687:10;2682:3;2678:20;2675:1;2668:31;2718:4;2715:1;2708:15;2742:4;2739:1;2732:15;2626:127;206:2874:12;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_addTokenToAllTokensEnumeration_1295": {
"entryPoint": null,
"id": 1295,
"parameterSlots": 1,
"returnSlots": 0
},
"@_addTokenToOwnerEnumeration_1275": {
"entryPoint": 6966,
"id": 1275,
"parameterSlots": 2,
"returnSlots": 0
},
"@_approve_829": {
"entryPoint": 4711,
"id": 829,
"parameterSlots": 2,
"returnSlots": 0
},
"@_baseURI_2089": {
"entryPoint": 5861,
"id": 2089,
"parameterSlots": 0,
"returnSlots": 1
},
"@_beforeTokenTransfer_1245": {
"entryPoint": 6130,
"id": 1245,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_934": {
"entryPoint": null,
"id": 934,
"parameterSlots": 3,
"returnSlots": 0
},
"@_checkOnERC721Received_923": {
"entryPoint": 6365,
"id": 923,
"parameterSlots": 4,
"returnSlots": 1
},
"@_exists_543": {
"entryPoint": null,
"id": 543,
"parameterSlots": 1,
"returnSlots": 1
},
"@_isApprovedOrOwner_584": {
"entryPoint": 4821,
"id": 584,
"parameterSlots": 2,
"returnSlots": 1
},
"@_mint_685": {
"entryPoint": 7034,
"id": 685,
"parameterSlots": 2,
"returnSlots": 0
},
"@_msgSender_1774": {
"entryPoint": null,
"id": 1774,
"parameterSlots": 0,
"returnSlots": 1
},
"@_removeTokenFromAllTokensEnumeration_1406": {
"entryPoint": 6791,
"id": 1406,
"parameterSlots": 1,
"returnSlots": 0
},
"@_removeTokenFromOwnerEnumeration_1358": {
"entryPoint": 6634,
"id": 1358,
"parameterSlots": 2,
"returnSlots": 0
},
"@_safeMint_599": {
"entryPoint": 5577,
"id": 599,
"parameterSlots": 2,
"returnSlots": 0
},
"@_safeMint_628": {
"entryPoint": 6314,
"id": 628,
"parameterSlots": 3,
"returnSlots": 0
},
"@_safeTransfer_525": {
"entryPoint": 5810,
"id": 525,
"parameterSlots": 4,
"returnSlots": 0
},
"@_setApprovalForAll_861": {
"entryPoint": 5603,
"id": 861,
"parameterSlots": 3,
"returnSlots": 0
},
"@_transferOwnership_103": {
"entryPoint": 5495,
"id": 103,
"parameterSlots": 1,
"returnSlots": 0
},
"@_transfer_805": {
"entryPoint": 5068,
"id": 805,
"parameterSlots": 3,
"returnSlots": 0
},
"@approve_364": {
"entryPoint": 2209,
"id": 364,
"parameterSlots": 2,
"returnSlots": 0
},
"@balanceOf_222": {
"entryPoint": 3411,
"id": 222,
"parameterSlots": 1,
"returnSlots": 1
},
"@baseExtension_2039": {
"entryPoint": 3961,
"id": 2039,
"parameterSlots": 0,
"returnSlots": 0
},
"@cost_2042": {
"entryPoint": null,
"id": 2042,
"parameterSlots": 0,
"returnSlots": 0
},
"@getApproved_385": {
"entryPoint": 1918,
"id": 385,
"parameterSlots": 1,
"returnSlots": 1
},
"@isApprovedForAll_420": {
"entryPoint": null,
"id": 420,
"parameterSlots": 2,
"returnSlots": 1
},
"@isContract_1485": {
"entryPoint": null,
"id": 1485,
"parameterSlots": 1,
"returnSlots": 1
},
"@maxMintAmount_2048": {
"entryPoint": null,
"id": 2048,
"parameterSlots": 0,
"returnSlots": 0
},
"@maxSupply_2045": {
"entryPoint": null,
"id": 2045,
"parameterSlots": 0,
"returnSlots": 0
},
"@mint_2161": {
"entryPoint": 3662,
"id": 2161,
"parameterSlots": 1,
"returnSlots": 0
},
"@name_260": {
"entryPoint": 1772,
"id": 260,
"parameterSlots": 0,
"returnSlots": 1
},
"@notRevealedUri_2056": {
"entryPoint": 2067,
"id": 2056,
"parameterSlots": 0,
"returnSlots": 0
},
"@ownerOf_250": {
"entryPoint": 3292,
"id": 250,
"parameterSlots": 1,
"returnSlots": 1
},
"@owner_32": {
"entryPoint": null,
"id": 32,
"parameterSlots": 0,
"returnSlots": 1
},
"@pause_2340": {
"entryPoint": 1702,
"id": 2340,
"parameterSlots": 1,
"returnSlots": 0
},
"@paused_2051": {
"entryPoint": null,
"id": 2051,
"parameterSlots": 0,
"returnSlots": 0
},
"@renounceOwnership_60": {
"entryPoint": 3546,
"id": 60,
"parameterSlots": 0,
"returnSlots": 0
},
"@reveal_2268": {
"entryPoint": 3846,
"id": 2268,
"parameterSlots": 0,
"returnSlots": 0
},
"@revealed_2054": {
"entryPoint": null,
"id": 2054,
"parameterSlots": 0,
"returnSlots": 0
},
"@safeTransferFrom_466": {
"entryPoint": 2844,
"id": 466,
"parameterSlots": 3,
"returnSlots": 0
},
"@safeTransferFrom_496": {
"entryPoint": 3905,
"id": 496,
"parameterSlots": 4,
"returnSlots": 0
},
"@setApprovalForAll_402": {
"entryPoint": 3835,
"id": 402,
"parameterSlots": 2,
"returnSlots": 0
},
"@setBaseExtension_2328": {
"entryPoint": 4357,
"id": 2328,
"parameterSlots": 1,
"returnSlots": 0
},
"@setBaseURI_2316": {
"entryPoint": 3227,
"id": 2316,
"parameterSlots": 1,
"returnSlots": 0
},
"@setCost_2280": {
"entryPoint": 3033,
"id": 2280,
"parameterSlots": 1,
"returnSlots": 0
},
"@setNotRevealedURI_2304": {
"entryPoint": 4418,
"id": 2304,
"parameterSlots": 1,
"returnSlots": 0
},
"@setmaxMintAmount_2292": {
"entryPoint": 3600,
"id": 2292,
"parameterSlots": 1,
"returnSlots": 0
},
"@supportsInterface_1119": {
"entryPoint": 1659,
"id": 1119,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_198": {
"entryPoint": 4631,
"id": 198,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_2010": {
"entryPoint": null,
"id": 2010,
"parameterSlots": 1,
"returnSlots": 1
},
"@symbol_270": {
"entryPoint": 3647,
"id": 270,
"parameterSlots": 0,
"returnSlots": 1
},
"@toString_1869": {
"entryPoint": 5876,
"id": 1869,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenByIndex_1181": {
"entryPoint": 3080,
"id": 1181,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenOfOwnerByIndex_1147": {
"entryPoint": 2536,
"id": 1147,
"parameterSlots": 2,
"returnSlots": 1
},
"@tokenURI_2258": {
"entryPoint": 3974,
"id": 2258,
"parameterSlots": 1,
"returnSlots": 1
},
"@totalSupply_1158": {
"entryPoint": null,
"id": 1158,
"parameterSlots": 0,
"returnSlots": 1
},
"@transferFrom_447": {
"entryPoint": 2487,
"id": 447,
"parameterSlots": 3,
"returnSlots": 0
},
"@transferOwnership_83": {
"entryPoint": 4479,
"id": 83,
"parameterSlots": 1,
"returnSlots": 0
},
"@walletOfOwner_2209": {
"entryPoint": 2871,
"id": 2209,
"parameterSlots": 1,
"returnSlots": 1
},
"@withdraw_2367": {
"entryPoint": 2686,
"id": 2367,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_decode_address": {
"entryPoint": 7639,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_decode_available_length_bytes": {
"entryPoint": 7521,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_bool": {
"entryPoint": 7667,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 7683,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 7710,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 7761,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr": {
"entryPoint": 7821,
"id": null,
"parameterSlots": 2,
"returnSlots": 4
},
"abi_decode_tuple_t_addresst_bool": {
"entryPoint": 7945,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 7987,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_bool": {
"entryPoint": 8029,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes4": {
"entryPoint": 8056,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes4_fromMemory": {
"entryPoint": 8085,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptr": {
"entryPoint": 8114,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 8187,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_bytes": {
"entryPoint": 8212,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr_t_string_storage__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 8256,
"id": null,
"parameterSlots": 4,
"returnSlots": 1
},
"abi_encode_tuple_packed_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed": {
"entryPoint": 8452,
"id": null,
"parameterSlots": 5,
"returnSlots": 1
},
"abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed": {
"entryPoint": 8513,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8581,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8600,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8682,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8735,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_dataslot_string_storage": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 8816,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_div_t_uint256": {
"entryPoint": 8840,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_mul_t_uint256": {
"entryPoint": 8860,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 8891,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"copy_memory_to_memory": {
"entryPoint": 8914,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 8958,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"increment_t_uint256": {
"entryPoint": 9017,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mod_t_uint256": {
"entryPoint": 9044,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 9064,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x12": {
"entryPoint": 9086,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x31": {
"entryPoint": 9108,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 9130,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 9152,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"validator_revert_bytes4": {
"entryPoint": 9174,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:17832:13",
"statements": [
{
"nodeType": "YulBlock",
"src": "6:3:13",
"statements": []
},
{
"body": {
"nodeType": "YulBlock",
"src": "88:557:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "98:28:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "108:18:13",
"type": "",
"value": "0xffffffffffffffff"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "102:2:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "153:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "155:16:13"
},
"nodeType": "YulFunctionCall",
"src": "155:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "155:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "141:6:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "149:2:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "138:2:13"
},
"nodeType": "YulFunctionCall",
"src": "138:14:13"
},
"nodeType": "YulIf",
"src": "135:40:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "184:17:13",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "198:2:13",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "194:3:13"
},
"nodeType": "YulFunctionCall",
"src": "194:7:13"
},
"variables": [
{
"name": "_2",
"nodeType": "YulTypedName",
"src": "188:2:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "210:23:13",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "230:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "224:5:13"
},
"nodeType": "YulFunctionCall",
"src": "224:9:13"
},
"variables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "214:6:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "242:73:13",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "264:6:13"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "288:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "296:2:13",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "284:3:13"
},
"nodeType": "YulFunctionCall",
"src": "284:15:13"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "301:2:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "280:3:13"
},
"nodeType": "YulFunctionCall",
"src": "280:24:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "306:2:13",
"type": "",
"value": "63"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "276:3:13"
},
"nodeType": "YulFunctionCall",
"src": "276:33:13"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "311:2:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "272:3:13"
},
"nodeType": "YulFunctionCall",
"src": "272:42:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "260:3:13"
},
"nodeType": "YulFunctionCall",
"src": "260:55:13"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "246:10:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "374:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "376:16:13"
},
"nodeType": "YulFunctionCall",
"src": "376:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "376:18:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "333:10:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "345:2:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "330:2:13"
},
"nodeType": "YulFunctionCall",
"src": "330:18:13"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "353:10:13"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "365:6:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "350:2:13"
},
"nodeType": "YulFunctionCall",
"src": "350:22:13"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "327:2:13"
},
"nodeType": "YulFunctionCall",
"src": "327:46:13"
},
"nodeType": "YulIf",
"src": "324:72:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "412:2:13",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "416:10:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "405:6:13"
},
"nodeType": "YulFunctionCall",
"src": "405:22:13"
},
"nodeType": "YulExpressionStatement",
"src": "405:22:13"
},
{
"nodeType": "YulAssignment",
"src": "436:15:13",
"value": {
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "445:6:13"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "436:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "467:6:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "475:6:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "460:6:13"
},
"nodeType": "YulFunctionCall",
"src": "460:22:13"
},
"nodeType": "YulExpressionStatement",
"src": "460:22:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "520:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "529:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "532:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "522:6:13"
},
"nodeType": "YulFunctionCall",
"src": "522:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "522:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "501:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "506:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "497:3:13"
},
"nodeType": "YulFunctionCall",
"src": "497:16:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "515:3:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "494:2:13"
},
"nodeType": "YulFunctionCall",
"src": "494:25:13"
},
"nodeType": "YulIf",
"src": "491:45:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "562:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "570:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "558:3:13"
},
"nodeType": "YulFunctionCall",
"src": "558:17:13"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "577:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "582:6:13"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "545:12:13"
},
"nodeType": "YulFunctionCall",
"src": "545:44:13"
},
"nodeType": "YulExpressionStatement",
"src": "545:44:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "613:6:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "621:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "609:3:13"
},
"nodeType": "YulFunctionCall",
"src": "609:19:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "630:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "605:3:13"
},
"nodeType": "YulFunctionCall",
"src": "605:30:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "637:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "598:6:13"
},
"nodeType": "YulFunctionCall",
"src": "598:41:13"
},
"nodeType": "YulExpressionStatement",
"src": "598:41:13"
}
]
},
"name": "abi_decode_available_length_bytes",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "57:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "62:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "70:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "78:5:13",
"type": ""
}
],
"src": "14:631:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "699:124:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "709:29:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "731:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "718:12:13"
},
"nodeType": "YulFunctionCall",
"src": "718:20:13"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "709:5:13"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "801:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "810:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "813:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "803:6:13"
},
"nodeType": "YulFunctionCall",
"src": "803:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "803:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "760:5:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "771:5:13"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "786:3:13",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "791:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "782:3:13"
},
"nodeType": "YulFunctionCall",
"src": "782:11:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "795:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "778:3:13"
},
"nodeType": "YulFunctionCall",
"src": "778:19:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "767:3:13"
},
"nodeType": "YulFunctionCall",
"src": "767:31:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "757:2:13"
},
"nodeType": "YulFunctionCall",
"src": "757:42:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "750:6:13"
},
"nodeType": "YulFunctionCall",
"src": "750:50:13"
},
"nodeType": "YulIf",
"src": "747:70:13"
}
]
},
"name": "abi_decode_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "678:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "689:5:13",
"type": ""
}
],
"src": "650:173:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "874:114:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "884:29:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "906:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "893:12:13"
},
"nodeType": "YulFunctionCall",
"src": "893:20:13"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "884:5:13"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "966:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "975:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "978:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "968:6:13"
},
"nodeType": "YulFunctionCall",
"src": "968:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "968:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "935:5:13"
},
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "956:5:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "949:6:13"
},
"nodeType": "YulFunctionCall",
"src": "949:13:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "942:6:13"
},
"nodeType": "YulFunctionCall",
"src": "942:21:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "932:2:13"
},
"nodeType": "YulFunctionCall",
"src": "932:32:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "925:6:13"
},
"nodeType": "YulFunctionCall",
"src": "925:40:13"
},
"nodeType": "YulIf",
"src": "922:60:13"
}
]
},
"name": "abi_decode_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "853:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "864:5:13",
"type": ""
}
],
"src": "828:160:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1063:116:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1109:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1118:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1121:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1111:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1111:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "1111:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1084:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1093:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1080:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1080:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1105:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1076:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1076:32:13"
},
"nodeType": "YulIf",
"src": "1073:52:13"
},
{
"nodeType": "YulAssignment",
"src": "1134:39:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1163:9:13"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "1144:18:13"
},
"nodeType": "YulFunctionCall",
"src": "1144:29:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1134:6:13"
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1029:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1040:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1052:6:13",
"type": ""
}
],
"src": "993:186:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1271:173:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1317:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1326:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1329:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1319:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1319:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "1319:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1292:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1301:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1288:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1288:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1313:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1284:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1284:32:13"
},
"nodeType": "YulIf",
"src": "1281:52:13"
},
{
"nodeType": "YulAssignment",
"src": "1342:39:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1371:9:13"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "1352:18:13"
},
"nodeType": "YulFunctionCall",
"src": "1352:29:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1342:6:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1390:48:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1423:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1434:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1419:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1419:18:13"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "1400:18:13"
},
"nodeType": "YulFunctionCall",
"src": "1400:38:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1390:6:13"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1229:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1240:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1252:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1260:6:13",
"type": ""
}
],
"src": "1184:260:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1553:224:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1599:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1608:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1611:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1601:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1601:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "1601:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1574:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1583:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1570:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1570:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1595:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1566:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1566:32:13"
},
"nodeType": "YulIf",
"src": "1563:52:13"
},
{
"nodeType": "YulAssignment",
"src": "1624:39:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1653:9:13"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "1634:18:13"
},
"nodeType": "YulFunctionCall",
"src": "1634:29:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1624:6:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1672:48:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1705:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1716:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1701:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1701:18:13"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "1682:18:13"
},
"nodeType": "YulFunctionCall",
"src": "1682:38:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1672:6:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1729:42:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1756:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1767:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1752:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1752:18:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1739:12:13"
},
"nodeType": "YulFunctionCall",
"src": "1739:32:13"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1729:6:13"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1503:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1514:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1526:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1534:6:13",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1542:6:13",
"type": ""
}
],
"src": "1449:328:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1912:536:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1959:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1968:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1971:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1961:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1961:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "1961:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1933:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1942:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1929:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1929:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1954:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1925:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1925:33:13"
},
"nodeType": "YulIf",
"src": "1922:53:13"
},
{
"nodeType": "YulAssignment",
"src": "1984:39:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2013:9:13"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "1994:18:13"
},
"nodeType": "YulFunctionCall",
"src": "1994:29:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1984:6:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2032:48:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2065:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2076:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2061:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2061:18:13"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "2042:18:13"
},
"nodeType": "YulFunctionCall",
"src": "2042:38:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2032:6:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2089:42:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2116:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2127:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2112:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2112:18:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2099:12:13"
},
"nodeType": "YulFunctionCall",
"src": "2099:32:13"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "2089:6:13"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2140:46:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2171:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2182:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2167:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2167:18:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2154:12:13"
},
"nodeType": "YulFunctionCall",
"src": "2154:32:13"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2144:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2229:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2238:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2241:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2231:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2231:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "2231:12:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2201:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2209:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2198:2:13"
},
"nodeType": "YulFunctionCall",
"src": "2198:30:13"
},
"nodeType": "YulIf",
"src": "2195:50:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2254:32:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2268:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2279:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2264:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2264:22:13"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "2258:2:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2334:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2343:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2346:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2336:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2336:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "2336:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "2313:2:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2317:4:13",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2309:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2309:13:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2324:7:13"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2305:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2305:27:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2298:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2298:35:13"
},
"nodeType": "YulIf",
"src": "2295:55:13"
},
{
"nodeType": "YulAssignment",
"src": "2359:83:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "2407:2:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2411:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2403:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2403:11:13"
},
{
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "2429:2:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2416:12:13"
},
"nodeType": "YulFunctionCall",
"src": "2416:16:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2434:7:13"
}
],
"functionName": {
"name": "abi_decode_available_length_bytes",
"nodeType": "YulIdentifier",
"src": "2369:33:13"
},
"nodeType": "YulFunctionCall",
"src": "2369:73:13"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "2359:6:13"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1854:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1865:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1877:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1885:6:13",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1893:6:13",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "1901:6:13",
"type": ""
}
],
"src": "1782:666:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2537:170:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2583:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2592:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2595:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2585:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2585:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "2585:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2558:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2567:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2554:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2554:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2579:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2550:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2550:32:13"
},
"nodeType": "YulIf",
"src": "2547:52:13"
},
{
"nodeType": "YulAssignment",
"src": "2608:39:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2637:9:13"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "2618:18:13"
},
"nodeType": "YulFunctionCall",
"src": "2618:29:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2608:6:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2656:45:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2686:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2697:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2682:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2682:18:13"
}
],
"functionName": {
"name": "abi_decode_bool",
"nodeType": "YulIdentifier",
"src": "2666:15:13"
},
"nodeType": "YulFunctionCall",
"src": "2666:35:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2656:6:13"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2495:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2506:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2518:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2526:6:13",
"type": ""
}
],
"src": "2453:254:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2799:167:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2845:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2854:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2857:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2847:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2847:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "2847:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2820:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2829:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2816:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2816:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2841:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2812:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2812:32:13"
},
"nodeType": "YulIf",
"src": "2809:52:13"
},
{
"nodeType": "YulAssignment",
"src": "2870:39:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2899:9:13"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "2880:18:13"
},
"nodeType": "YulFunctionCall",
"src": "2880:29:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2870:6:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2918:42:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2945:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2956:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2941:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2941:18:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2928:12:13"
},
"nodeType": "YulFunctionCall",
"src": "2928:32:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2918:6:13"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2757:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2768:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2780:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2788:6:13",
"type": ""
}
],
"src": "2712:254:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3038:113:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3084:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3093:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3096:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3086:6:13"
},
"nodeType": "YulFunctionCall",
"src": "3086:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "3086:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3059:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3068:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3055:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3055:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3080:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3051:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3051:32:13"
},
"nodeType": "YulIf",
"src": "3048:52:13"
},
{
"nodeType": "YulAssignment",
"src": "3109:36:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3135:9:13"
}
],
"functionName": {
"name": "abi_decode_bool",
"nodeType": "YulIdentifier",
"src": "3119:15:13"
},
"nodeType": "YulFunctionCall",
"src": "3119:26:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3109:6:13"
}
]
}
]
},
"name": "abi_decode_tuple_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3004:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3015:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3027:6:13",
"type": ""
}
],
"src": "2971:180:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3225:176:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3271:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3280:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3283:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3273:6:13"
},
"nodeType": "YulFunctionCall",
"src": "3273:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "3273:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3246:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3255:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3242:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3242:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3267:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3238:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3238:32:13"
},
"nodeType": "YulIf",
"src": "3235:52:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3296:36:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3322:9:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3309:12:13"
},
"nodeType": "YulFunctionCall",
"src": "3309:23:13"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3300:5:13",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3365:5:13"
}
],
"functionName": {
"name": "validator_revert_bytes4",
"nodeType": "YulIdentifier",
"src": "3341:23:13"
},
"nodeType": "YulFunctionCall",
"src": "3341:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "3341:30:13"
},
{
"nodeType": "YulAssignment",
"src": "3380:15:13",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "3390:5:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3380:6:13"
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3191:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3202:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3214:6:13",
"type": ""
}
],
"src": "3156:245:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3486:169:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3532:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3541:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3544:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3534:6:13"
},
"nodeType": "YulFunctionCall",
"src": "3534:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "3534:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3507:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3516:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3503:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3503:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3528:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3499:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3499:32:13"
},
"nodeType": "YulIf",
"src": "3496:52:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3557:29:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3576:9:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3570:5:13"
},
"nodeType": "YulFunctionCall",
"src": "3570:16:13"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3561:5:13",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3619:5:13"
}
],
"functionName": {
"name": "validator_revert_bytes4",
"nodeType": "YulIdentifier",
"src": "3595:23:13"
},
"nodeType": "YulFunctionCall",
"src": "3595:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "3595:30:13"
},
{
"nodeType": "YulAssignment",
"src": "3634:15:13",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "3644:5:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3634:6:13"
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3452:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3463:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3475:6:13",
"type": ""
}
],
"src": "3406:249:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3740:370:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3786:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3795:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3798:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3788:6:13"
},
"nodeType": "YulFunctionCall",
"src": "3788:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "3788:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3761:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3770:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3757:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3757:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3782:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3753:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3753:32:13"
},
"nodeType": "YulIf",
"src": "3750:52:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3811:37:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3838:9:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3825:12:13"
},
"nodeType": "YulFunctionCall",
"src": "3825:23:13"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3815:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3891:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3900:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3903:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3893:6:13"
},
"nodeType": "YulFunctionCall",
"src": "3893:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "3893:12:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3863:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3871:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3860:2:13"
},
"nodeType": "YulFunctionCall",
"src": "3860:30:13"
},
"nodeType": "YulIf",
"src": "3857:50:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3916:32:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3930:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3941:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3926:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3926:22:13"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "3920:2:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3996:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4005:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4008:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3998:6:13"
},
"nodeType": "YulFunctionCall",
"src": "3998:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "3998:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "3975:2:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3979:4:13",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3971:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3971:13:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3986:7:13"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3967:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3967:27:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3960:6:13"
},
"nodeType": "YulFunctionCall",
"src": "3960:35:13"
},
"nodeType": "YulIf",
"src": "3957:55:13"
},
{
"nodeType": "YulAssignment",
"src": "4021:83:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "4069:2:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4073:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4065:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4065:11:13"
},
{
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "4091:2:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "4078:12:13"
},
"nodeType": "YulFunctionCall",
"src": "4078:16:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4096:7:13"
}
],
"functionName": {
"name": "abi_decode_available_length_bytes",
"nodeType": "YulIdentifier",
"src": "4031:33:13"
},
"nodeType": "YulFunctionCall",
"src": "4031:73:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4021:6:13"
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3706:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3717:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3729:6:13",
"type": ""
}
],
"src": "3660:450:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4185:110:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4231:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4240:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4243:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4233:6:13"
},
"nodeType": "YulFunctionCall",
"src": "4233:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "4233:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4206:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4215:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4202:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4202:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4227:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4198:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4198:32:13"
},
"nodeType": "YulIf",
"src": "4195:52:13"
},
{
"nodeType": "YulAssignment",
"src": "4256:33:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4279:9:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "4266:12:13"
},
"nodeType": "YulFunctionCall",
"src": "4266:23:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4256:6:13"
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4151:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4162:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4174:6:13",
"type": ""
}
],
"src": "4115:180:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4349:208:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4359:26:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4379:5:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4373:5:13"
},
"nodeType": "YulFunctionCall",
"src": "4373:12:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4363:6:13",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4401:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4406:6:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4394:6:13"
},
"nodeType": "YulFunctionCall",
"src": "4394:19:13"
},
"nodeType": "YulExpressionStatement",
"src": "4394:19:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4448:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4455:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4444:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4444:16:13"
},
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4466:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4471:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4462:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4462:14:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4478:6:13"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "4422:21:13"
},
"nodeType": "YulFunctionCall",
"src": "4422:63:13"
},
"nodeType": "YulExpressionStatement",
"src": "4422:63:13"
},
{
"nodeType": "YulAssignment",
"src": "4494:57:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4509:3:13"
},
{
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4522:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4530:2:13",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4518:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4518:15:13"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4539:2:13",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "4535:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4535:7:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4514:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4514:29:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4505:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4505:39:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4546:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4501:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4501:50:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4494:3:13"
}
]
}
]
},
"name": "abi_encode_bytes",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4326:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4333:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4341:3:13",
"type": ""
}
],
"src": "4300:257:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4794:1295:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4804:27:13",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4824:6:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4818:5:13"
},
"nodeType": "YulFunctionCall",
"src": "4818:13:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4808:6:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4840:14:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4850:4:13",
"type": "",
"value": "0x20"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "4844:2:13",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4889:6:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "4897:2:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4885:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4885:15:13"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4902:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4907:6:13"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "4863:21:13"
},
"nodeType": "YulFunctionCall",
"src": "4863:51:13"
},
"nodeType": "YulExpressionStatement",
"src": "4863:51:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "4923:29:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4940:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4945:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4936:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4936:16:13"
},
"variables": [
{
"name": "end_1",
"nodeType": "YulTypedName",
"src": "4927:5:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4961:29:13",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4983:6:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4977:5:13"
},
"nodeType": "YulFunctionCall",
"src": "4977:13:13"
},
"variables": [
{
"name": "length_1",
"nodeType": "YulTypedName",
"src": "4965:8:13",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5025:6:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "5033:2:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5021:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5021:15:13"
},
{
"name": "end_1",
"nodeType": "YulIdentifier",
"src": "5038:5:13"
},
{
"name": "length_1",
"nodeType": "YulIdentifier",
"src": "5045:8:13"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "4999:21:13"
},
"nodeType": "YulFunctionCall",
"src": "4999:55:13"
},
"nodeType": "YulExpressionStatement",
"src": "4999:55:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "5063:33:13",
"value": {
"arguments": [
{
"name": "end_1",
"nodeType": "YulIdentifier",
"src": "5080:5:13"
},
{
"name": "length_1",
"nodeType": "YulIdentifier",
"src": "5087:8:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5076:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5076:20:13"
},
"variables": [
{
"name": "end_2",
"nodeType": "YulTypedName",
"src": "5067:5:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5105:12:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5116:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "5109:3:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5126:30:13",
"value": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "5149:6:13"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "5143:5:13"
},
"nodeType": "YulFunctionCall",
"src": "5143:13:13"
},
"variables": [
{
"name": "slotValue",
"nodeType": "YulTypedName",
"src": "5130:9:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5165:19:13",
"value": {
"name": "ret",
"nodeType": "YulIdentifier",
"src": "5181:3:13"
},
"variables": [
{
"name": "length_2",
"nodeType": "YulTypedName",
"src": "5169:8:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5193:11:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5203:1:13",
"type": "",
"value": "1"
},
"variables": [
{
"name": "_2",
"nodeType": "YulTypedName",
"src": "5197:2:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5213:30:13",
"value": {
"arguments": [
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "5229:2:13"
},
{
"name": "slotValue",
"nodeType": "YulIdentifier",
"src": "5233:9:13"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "5225:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5225:18:13"
},
"variableNames": [
{
"name": "length_2",
"nodeType": "YulIdentifier",
"src": "5213:8:13"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5252:44:13",
"value": {
"arguments": [
{
"name": "slotValue",
"nodeType": "YulIdentifier",
"src": "5282:9:13"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "5293:2:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5278:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5278:18:13"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "5256:18:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5343:55:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5357:31:13",
"value": {
"arguments": [
{
"name": "length_2",
"nodeType": "YulIdentifier",
"src": "5373:8:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5383:4:13",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5369:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5369:19:13"
},
"variableNames": [
{
"name": "length_2",
"nodeType": "YulIdentifier",
"src": "5357:8:13"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5315:18:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5308:6:13"
},
"nodeType": "YulFunctionCall",
"src": "5308:26:13"
},
"nodeType": "YulIf",
"src": "5305:93:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5459:115:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "5480:3:13"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5489:3:13",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5494:10:13",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "5485:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5485:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5473:6:13"
},
"nodeType": "YulFunctionCall",
"src": "5473:33:13"
},
"nodeType": "YulExpressionStatement",
"src": "5473:33:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5526:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5529:4:13",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5519:6:13"
},
"nodeType": "YulFunctionCall",
"src": "5519:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "5519:15:13"
},
{
"expression": {
"arguments": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "5554:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5559:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5547:6:13"
},
"nodeType": "YulFunctionCall",
"src": "5547:17:13"
},
"nodeType": "YulExpressionStatement",
"src": "5547:17:13"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5413:18:13"
},
{
"arguments": [
{
"name": "length_2",
"nodeType": "YulIdentifier",
"src": "5436:8:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "5446:2:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5433:2:13"
},
"nodeType": "YulFunctionCall",
"src": "5433:16:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "5410:2:13"
},
"nodeType": "YulFunctionCall",
"src": "5410:40:13"
},
"nodeType": "YulIf",
"src": "5407:167:13"
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "5624:103:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "end_2",
"nodeType": "YulIdentifier",
"src": "5645:5:13"
},
{
"arguments": [
{
"name": "slotValue",
"nodeType": "YulIdentifier",
"src": "5656:9:13"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5671:3:13",
"type": "",
"value": "255"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "5667:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5667:8:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5652:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5652:24:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5638:6:13"
},
"nodeType": "YulFunctionCall",
"src": "5638:39:13"
},
"nodeType": "YulExpressionStatement",
"src": "5638:39:13"
},
{
"nodeType": "YulAssignment",
"src": "5690:27:13",
"value": {
"arguments": [
{
"name": "end_2",
"nodeType": "YulIdentifier",
"src": "5701:5:13"
},
{
"name": "length_2",
"nodeType": "YulIdentifier",
"src": "5708:8:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5697:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5697:20:13"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "5690:3:13"
}
]
}
]
},
"nodeType": "YulCase",
"src": "5617:110:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5622:1:13",
"type": "",
"value": "0"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "5743:321:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5757:52:13",
"value": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "5802:6:13"
}
],
"functionName": {
"name": "array_dataslot_string_storage",
"nodeType": "YulIdentifier",
"src": "5772:29:13"
},
"nodeType": "YulFunctionCall",
"src": "5772:37:13"
},
"variables": [
{
"name": "dataPos",
"nodeType": "YulTypedName",
"src": "5761:7:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5822:10:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5831:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "5826:1:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5901:113:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "end_2",
"nodeType": "YulIdentifier",
"src": "5930:5:13"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5937:1:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5926:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5926:13:13"
},
{
"arguments": [
{
"name": "dataPos",
"nodeType": "YulIdentifier",
"src": "5947:7:13"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "5941:5:13"
},
"nodeType": "YulFunctionCall",
"src": "5941:14:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5919:6:13"
},
"nodeType": "YulFunctionCall",
"src": "5919:37:13"
},
"nodeType": "YulExpressionStatement",
"src": "5919:37:13"
},
{
"nodeType": "YulAssignment",
"src": "5973:27:13",
"value": {
"arguments": [
{
"name": "dataPos",
"nodeType": "YulIdentifier",
"src": "5988:7:13"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "5997:2:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5984:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5984:16:13"
},
"variableNames": [
{
"name": "dataPos",
"nodeType": "YulIdentifier",
"src": "5973:7:13"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5856:1:13"
},
{
"name": "length_2",
"nodeType": "YulIdentifier",
"src": "5859:8:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5853:2:13"
},
"nodeType": "YulFunctionCall",
"src": "5853:15:13"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "5869:19:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5871:15:13",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5880:1:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "5883:2:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5876:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5876:10:13"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5871:1:13"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "5849:3:13",
"statements": []
},
"src": "5845:169:13"
},
{
"nodeType": "YulAssignment",
"src": "6027:27:13",
"value": {
"arguments": [
{
"name": "end_2",
"nodeType": "YulIdentifier",
"src": "6038:5:13"
},
{
"name": "length_2",
"nodeType": "YulIdentifier",
"src": "6045:8:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6034:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6034:20:13"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "6027:3:13"
}
]
}
]
},
"nodeType": "YulCase",
"src": "5736:328:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5741:1:13",
"type": "",
"value": "1"
}
}
],
"expression": {
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5590:18:13"
},
"nodeType": "YulSwitch",
"src": "5583:481:13"
},
{
"nodeType": "YulAssignment",
"src": "6073:10:13",
"value": {
"name": "ret",
"nodeType": "YulIdentifier",
"src": "6080:3:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6073:3:13"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr_t_string_storage__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4754:3:13",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "4759:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4767:6:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4775:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4786:3:13",
"type": ""
}
],
"src": "4562:1527:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6285:14:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6287:10:13",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6294:3:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6287:3:13"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6269:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6277:3:13",
"type": ""
}
],
"src": "6094:205:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6405:102:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6415:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6427:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6438:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6423:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6423:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6415:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6457:9:13"
},
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6472:6:13"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6488:3:13",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6493:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "6484:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6484:11:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6497:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6480:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6480:19:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6468:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6468:32:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6450:6:13"
},
"nodeType": "YulFunctionCall",
"src": "6450:51:13"
},
"nodeType": "YulExpressionStatement",
"src": "6450:51:13"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6374:9:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6385:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6396:4:13",
"type": ""
}
],
"src": "6304:203:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6715:285:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6725:29:13",
"value": {
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6743:3:13",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6748:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "6739:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6739:11:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6752:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6735:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6735:19:13"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "6729:2:13",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6770:9:13"
},
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6785:6:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "6793:2:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6781:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6781:15:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6763:6:13"
},
"nodeType": "YulFunctionCall",
"src": "6763:34:13"
},
"nodeType": "YulExpressionStatement",
"src": "6763:34:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6817:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6828:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6813:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6813:18:13"
},
{
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "6837:6:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "6845:2:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6833:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6833:15:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6806:6:13"
},
"nodeType": "YulFunctionCall",
"src": "6806:43:13"
},
"nodeType": "YulExpressionStatement",
"src": "6806:43:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6869:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6880:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6865:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6865:18:13"
},
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "6885:6:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6858:6:13"
},
"nodeType": "YulFunctionCall",
"src": "6858:34:13"
},
"nodeType": "YulExpressionStatement",
"src": "6858:34:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6912:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6923:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6908:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6908:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6928:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6901:6:13"
},
"nodeType": "YulFunctionCall",
"src": "6901:31:13"
},
"nodeType": "YulExpressionStatement",
"src": "6901:31:13"
},
{
"nodeType": "YulAssignment",
"src": "6941:53:13",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "6966:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6978:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6989:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6974:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6974:19:13"
}
],
"functionName": {
"name": "abi_encode_bytes",
"nodeType": "YulIdentifier",
"src": "6949:16:13"
},
"nodeType": "YulFunctionCall",
"src": "6949:45:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6941:4:13"
}
]
}
]
},
"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": "6660:9:13",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "6671:6:13",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "6679:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "6687:6:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6695:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6706:4:13",
"type": ""
}
],
"src": "6512:488:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7156:481:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7166:12:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7176:2:13",
"type": "",
"value": "32"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "7170:2:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "7187:32:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7205:9:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "7216:2:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7201:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7201:18:13"
},
"variables": [
{
"name": "tail_1",
"nodeType": "YulTypedName",
"src": "7191:6:13",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7235:9:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "7246:2:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7228:6:13"
},
"nodeType": "YulFunctionCall",
"src": "7228:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "7228:21:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "7258:17:13",
"value": {
"name": "tail_1",
"nodeType": "YulIdentifier",
"src": "7269:6:13"
},
"variables": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7262:3:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "7284:27:13",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7304:6:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "7298:5:13"
},
"nodeType": "YulFunctionCall",
"src": "7298:13:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "7288:6:13",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "tail_1",
"nodeType": "YulIdentifier",
"src": "7327:6:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7335:6:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7320:6:13"
},
"nodeType": "YulFunctionCall",
"src": "7320:22:13"
},
"nodeType": "YulExpressionStatement",
"src": "7320:22:13"
},
{
"nodeType": "YulAssignment",
"src": "7351:25:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7362:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7373:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7358:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7358:18:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7351:3:13"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "7385:29:13",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7403:6:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "7411:2:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7399:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7399:15:13"
},
"variables": [
{
"name": "srcPtr",
"nodeType": "YulTypedName",
"src": "7389:6:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "7423:10:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7432:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "7427:1:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7491:120:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7512:3:13"
},
{
"arguments": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "7523:6:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "7517:5:13"
},
"nodeType": "YulFunctionCall",
"src": "7517:13:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7505:6:13"
},
"nodeType": "YulFunctionCall",
"src": "7505:26:13"
},
"nodeType": "YulExpressionStatement",
"src": "7505:26:13"
},
{
"nodeType": "YulAssignment",
"src": "7544:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7555:3:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "7560:2:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7551:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7551:12:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7544:3:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "7576:25:13",
"value": {
"arguments": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "7590:6:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "7598:2:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7586:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7586:15:13"
},
"variableNames": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "7576:6:13"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "7453:1:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7456:6:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "7450:2:13"
},
"nodeType": "YulFunctionCall",
"src": "7450:13:13"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "7464:18:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7466:14:13",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "7475:1:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7478:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7471:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7471:9:13"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "7466:1:13"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "7446:3:13",
"statements": []
},
"src": "7442:169:13"
},
{
"nodeType": "YulAssignment",
"src": "7620:11:13",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7628:3:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7620:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7125:9:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7136:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7147:4:13",
"type": ""
}
],
"src": "7005:632:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7737:92:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7747:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7759:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7770:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7755:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7755:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7747:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7789:9:13"
},
{
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7814:6:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "7807:6:13"
},
"nodeType": "YulFunctionCall",
"src": "7807:14:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "7800:6:13"
},
"nodeType": "YulFunctionCall",
"src": "7800:22:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7782:6:13"
},
"nodeType": "YulFunctionCall",
"src": "7782:41:13"
},
"nodeType": "YulExpressionStatement",
"src": "7782:41:13"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7706:9:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7717:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7728:4:13",
"type": ""
}
],
"src": "7642:187:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7955:98:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7972:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7983:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7965:6:13"
},
"nodeType": "YulFunctionCall",
"src": "7965:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "7965:21:13"
},
{
"nodeType": "YulAssignment",
"src": "7995:52:13",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8020:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8032:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8043:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8028:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8028:18:13"
}
],
"functionName": {
"name": "abi_encode_bytes",
"nodeType": "YulIdentifier",
"src": "8003:16:13"
},
"nodeType": "YulFunctionCall",
"src": "8003:44:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7995:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7924:9:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7935:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7946:4:13",
"type": ""
}
],
"src": "7834:219:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8232:233:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8249:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8260:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8242:6:13"
},
"nodeType": "YulFunctionCall",
"src": "8242:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "8242:21:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8283:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8294:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8279:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8279:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8299:2:13",
"type": "",
"value": "43"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8272:6:13"
},
"nodeType": "YulFunctionCall",
"src": "8272:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "8272:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8322:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8333:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8318:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8318:18:13"
},
{
"hexValue": "455243373231456e756d657261626c653a206f776e657220696e646578206f75",
"kind": "string",
"nodeType": "YulLiteral",
"src": "8338:34:13",
"type": "",
"value": "ERC721Enumerable: owner index ou"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8311:6:13"
},
"nodeType": "YulFunctionCall",
"src": "8311:62:13"
},
"nodeType": "YulExpressionStatement",
"src": "8311:62:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8393:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8404:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8389:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8389:18:13"
},
{
"hexValue": "74206f6620626f756e6473",
"kind": "string",
"nodeType": "YulLiteral",
"src": "8409:13:13",
"type": "",
"value": "t of bounds"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8382:6:13"
},
"nodeType": "YulFunctionCall",
"src": "8382:41:13"
},
"nodeType": "YulExpressionStatement",
"src": "8382:41:13"
},
{
"nodeType": "YulAssignment",
"src": "8432:27:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8444:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8455:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8440:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8440:19:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8432:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8209:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8223:4:13",
"type": ""
}
],
"src": "8058:407:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8644:240:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8661:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8672:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8654:6:13"
},
"nodeType": "YulFunctionCall",
"src": "8654:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "8654:21:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8695:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8706:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8691:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8691:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8711:2:13",
"type": "",
"value": "50"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8684:6:13"
},
"nodeType": "YulFunctionCall",
"src": "8684:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "8684:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8734:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8745:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8730:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8730:18:13"
},
{
"hexValue": "4552433732313a207472616e7366657220746f206e6f6e204552433732315265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "8750:34:13",
"type": "",
"value": "ERC721: transfer to non ERC721Re"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8723:6:13"
},
"nodeType": "YulFunctionCall",
"src": "8723:62:13"
},
"nodeType": "YulExpressionStatement",
"src": "8723:62:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8805:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8816:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8801:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8801:18:13"
},
{
"hexValue": "63656976657220696d706c656d656e746572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "8821:20:13",
"type": "",
"value": "ceiver implementer"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8794:6:13"
},
"nodeType": "YulFunctionCall",
"src": "8794:48:13"
},
"nodeType": "YulExpressionStatement",
"src": "8794:48:13"
},
{
"nodeType": "YulAssignment",
"src": "8851:27:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8863:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8874:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8859:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8859:19:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8851:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8621:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8635:4:13",
"type": ""
}
],
"src": "8470:414:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9063:228:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9080:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9091:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9073:6:13"
},
"nodeType": "YulFunctionCall",
"src": "9073:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "9073:21:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9114:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9125:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9110:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9110:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9130:2:13",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9103:6:13"
},
"nodeType": "YulFunctionCall",
"src": "9103:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "9103:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9153:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9164:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9149:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9149:18:13"
},
{
"hexValue": "4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9169:34:13",
"type": "",
"value": "Ownable: new owner is the zero a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9142:6:13"
},
"nodeType": "YulFunctionCall",
"src": "9142:62:13"
},
"nodeType": "YulExpressionStatement",
"src": "9142:62:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9224:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9235:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9220:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9220:18:13"
},
{
"hexValue": "646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9240:8:13",
"type": "",
"value": "ddress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9213:6:13"
},
"nodeType": "YulFunctionCall",
"src": "9213:36:13"
},
"nodeType": "YulExpressionStatement",
"src": "9213:36:13"
},
{
"nodeType": "YulAssignment",
"src": "9258:27:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9270:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9281:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9266:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9266:19:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9258:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9040:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9054:4:13",
"type": ""
}
],
"src": "8889:402:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9470:178:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9487:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9498:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9480:6:13"
},
"nodeType": "YulFunctionCall",
"src": "9480:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "9480:21:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9521:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9532:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9517:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9517:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9537:2:13",
"type": "",
"value": "28"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9510:6:13"
},
"nodeType": "YulFunctionCall",
"src": "9510:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "9510:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9560:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9571:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9556:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9556:18:13"
},
{
"hexValue": "4552433732313a20746f6b656e20616c7265616479206d696e746564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9576:30:13",
"type": "",
"value": "ERC721: token already minted"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9549:6:13"
},
"nodeType": "YulFunctionCall",
"src": "9549:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "9549:58:13"
},
{
"nodeType": "YulAssignment",
"src": "9616:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9628:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9639:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9624:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9624:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9616:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9447:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9461:4:13",
"type": ""
}
],
"src": "9296:352:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9827:226:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9844:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9855:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9837:6:13"
},
"nodeType": "YulFunctionCall",
"src": "9837:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "9837:21:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9878:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9889:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9874:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9874:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9894:2:13",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9867:6:13"
},
"nodeType": "YulFunctionCall",
"src": "9867:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "9867:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9917:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9928:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9913:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9913:18:13"
},
{
"hexValue": "4552433732313a207472616e7366657220746f20746865207a65726f20616464",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9933:34:13",
"type": "",
"value": "ERC721: transfer to the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9906:6:13"
},
"nodeType": "YulFunctionCall",
"src": "9906:62:13"
},
"nodeType": "YulExpressionStatement",
"src": "9906:62:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9988:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9999:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9984:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9984:18:13"
},
{
"hexValue": "72657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "10004:6:13",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9977:6:13"
},
"nodeType": "YulFunctionCall",
"src": "9977:34:13"
},
"nodeType": "YulExpressionStatement",
"src": "9977:34:13"
},
{
"nodeType": "YulAssignment",
"src": "10020:27:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10032:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10043:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10028:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10028:19:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10020:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9804:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9818:4:13",
"type": ""
}
],
"src": "9653:400:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10232:175:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10249:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10260:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10242:6:13"
},
"nodeType": "YulFunctionCall",
"src": "10242:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "10242:21:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10283:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10294:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10279:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10279:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10299:2:13",
"type": "",
"value": "25"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10272:6:13"
},
"nodeType": "YulFunctionCall",
"src": "10272:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "10272:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10322:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10333:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10318:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10318:18:13"
},
{
"hexValue": "4552433732313a20617070726f766520746f2063616c6c6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "10338:27:13",
"type": "",
"value": "ERC721: approve to caller"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10311:6:13"
},
"nodeType": "YulFunctionCall",
"src": "10311:55:13"
},
"nodeType": "YulExpressionStatement",
"src": "10311:55:13"
},
{
"nodeType": "YulAssignment",
"src": "10375:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10387:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10398:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10383:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10383:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10375:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10209:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10223:4:13",
"type": ""
}
],
"src": "10058:349:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10586:234:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10603:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10614:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10596:6:13"
},
"nodeType": "YulFunctionCall",
"src": "10596:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "10596:21:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10637:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10648:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10633:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10633:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10653:2:13",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10626:6:13"
},
"nodeType": "YulFunctionCall",
"src": "10626:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "10626:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10676:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10687:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10672:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10672:18:13"
},
{
"hexValue": "4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578",
"kind": "string",
"nodeType": "YulLiteral",
"src": "10692:34:13",
"type": "",
"value": "ERC721: operator query for nonex"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10665:6:13"
},
"nodeType": "YulFunctionCall",
"src": "10665:62:13"
},
"nodeType": "YulExpressionStatement",
"src": "10665:62:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10747:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10758:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10743:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10743:18:13"
},
{
"hexValue": "697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "10763:14:13",
"type": "",
"value": "istent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10736:6:13"
},
"nodeType": "YulFunctionCall",
"src": "10736:42:13"
},
"nodeType": "YulExpressionStatement",
"src": "10736:42:13"
},
{
"nodeType": "YulAssignment",
"src": "10787:27:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10799:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10810:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10795:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10795:19:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10787:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10563:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10577:4:13",
"type": ""
}
],
"src": "10412:408:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10999:246:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11016:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11027:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11009:6:13"
},
"nodeType": "YulFunctionCall",
"src": "11009:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "11009:21:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11050:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11061:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11046:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11046:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11066:2:13",
"type": "",
"value": "56"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11039:6:13"
},
"nodeType": "YulFunctionCall",
"src": "11039:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "11039:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11089:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11100:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11085:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11085:18:13"
},
{
"hexValue": "4552433732313a20617070726f76652063616c6c6572206973206e6f74206f77",
"kind": "string",
"nodeType": "YulLiteral",
"src": "11105:34:13",
"type": "",
"value": "ERC721: approve caller is not ow"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11078:6:13"
},
"nodeType": "YulFunctionCall",
"src": "11078:62:13"
},
"nodeType": "YulExpressionStatement",
"src": "11078:62:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11160:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11171:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11156:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11156:18:13"
},
{
"hexValue": "6e6572206e6f7220617070726f76656420666f7220616c6c",
"kind": "string",
"nodeType": "YulLiteral",
"src": "11176:26:13",
"type": "",
"value": "ner nor approved for all"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11149:6:13"
},
"nodeType": "YulFunctionCall",
"src": "11149:54:13"
},
"nodeType": "YulExpressionStatement",
"src": "11149:54:13"
},
{
"nodeType": "YulAssignment",
"src": "11212:27:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11224:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11235:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11220:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11220:19:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11212:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10976:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10990:4:13",
"type": ""
}
],
"src": "10825:420:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11424:232:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11441:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11452:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11434:6:13"
},
"nodeType": "YulFunctionCall",
"src": "11434:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "11434:21:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11475:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11486:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11471:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11471:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11491:2:13",
"type": "",
"value": "42"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11464:6:13"
},
"nodeType": "YulFunctionCall",
"src": "11464:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "11464:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11514:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11525:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11510:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11510:18:13"
},
{
"hexValue": "4552433732313a2062616c616e636520717565727920666f7220746865207a65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "11530:34:13",
"type": "",
"value": "ERC721: balance query for the ze"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11503:6:13"
},
"nodeType": "YulFunctionCall",
"src": "11503:62:13"
},
"nodeType": "YulExpressionStatement",
"src": "11503:62:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11585:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11596:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11581:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11581:18:13"
},
{
"hexValue": "726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "11601:12:13",
"type": "",
"value": "ro address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11574:6:13"
},
"nodeType": "YulFunctionCall",
"src": "11574:40:13"
},
"nodeType": "YulExpressionStatement",
"src": "11574:40:13"
},
{
"nodeType": "YulAssignment",
"src": "11623:27:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11635:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11646:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11631:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11631:19:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11623:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11401:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11415:4:13",
"type": ""
}
],
"src": "11250:406:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11835:231:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11852:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11863:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11845:6:13"
},
"nodeType": "YulFunctionCall",
"src": "11845:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "11845:21:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11886:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11897:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11882:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11882:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11902:2:13",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11875:6:13"
},
"nodeType": "YulFunctionCall",
"src": "11875:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "11875:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11925:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11936:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11921:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11921:18:13"
},
{
"hexValue": "4552433732313a206f776e657220717565727920666f72206e6f6e6578697374",
"kind": "string",
"nodeType": "YulLiteral",
"src": "11941:34:13",
"type": "",
"value": "ERC721: owner query for nonexist"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11914:6:13"
},
"nodeType": "YulFunctionCall",
"src": "11914:62:13"
},
"nodeType": "YulExpressionStatement",
"src": "11914:62:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11996:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12007:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11992:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11992:18:13"
},
{
"hexValue": "656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12012:11:13",
"type": "",
"value": "ent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11985:6:13"
},
"nodeType": "YulFunctionCall",
"src": "11985:39:13"
},
"nodeType": "YulExpressionStatement",
"src": "11985:39:13"
},
{
"nodeType": "YulAssignment",
"src": "12033:27:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12045:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12056:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12041:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12041:19:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12033:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11812:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11826:4:13",
"type": ""
}
],
"src": "11661:405:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12245:182:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12262:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12273:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12255:6:13"
},
"nodeType": "YulFunctionCall",
"src": "12255:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "12255:21:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12296:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12307:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12292:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12292:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12312:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12285:6:13"
},
"nodeType": "YulFunctionCall",
"src": "12285:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "12285:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12335:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12346:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12331:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12331:18:13"
},
{
"hexValue": "4552433732313a206d696e7420746f20746865207a65726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12351:34:13",
"type": "",
"value": "ERC721: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12324:6:13"
},
"nodeType": "YulFunctionCall",
"src": "12324:62:13"
},
"nodeType": "YulExpressionStatement",
"src": "12324:62:13"
},
{
"nodeType": "YulAssignment",
"src": "12395:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12407:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12418:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12403:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12403:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12395:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12222:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12236:4:13",
"type": ""
}
],
"src": "12071:356:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12606:234:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12623:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12634:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12616:6:13"
},
"nodeType": "YulFunctionCall",
"src": "12616:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "12616:21:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12657:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12668:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12653:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12653:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12673:2:13",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12646:6:13"
},
"nodeType": "YulFunctionCall",
"src": "12646:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "12646:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12696:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12707:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12692:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12692:18:13"
},
{
"hexValue": "4552433732313a20617070726f76656420717565727920666f72206e6f6e6578",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12712:34:13",
"type": "",
"value": "ERC721: approved query for nonex"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12685:6:13"
},
"nodeType": "YulFunctionCall",
"src": "12685:62:13"
},
"nodeType": "YulExpressionStatement",
"src": "12685:62:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12767:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12778:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12763:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12763:18:13"
},
{
"hexValue": "697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12783:14:13",
"type": "",
"value": "istent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12756:6:13"
},
"nodeType": "YulFunctionCall",
"src": "12756:42:13"
},
"nodeType": "YulExpressionStatement",
"src": "12756:42:13"
},
{
"nodeType": "YulAssignment",
"src": "12807:27:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12819:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12830:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12815:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12815:19:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12807:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12583:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12597:4:13",
"type": ""
}
],
"src": "12432:408:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13019:182:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13036:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13047:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13029:6:13"
},
"nodeType": "YulFunctionCall",
"src": "13029:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "13029:21:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13070:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13081:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13066:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13066:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13086:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13059:6:13"
},
"nodeType": "YulFunctionCall",
"src": "13059:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "13059:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13109:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13120:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13105:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13105:18:13"
},
{
"hexValue": "4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13125:34:13",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13098:6:13"
},
"nodeType": "YulFunctionCall",
"src": "13098:62:13"
},
"nodeType": "YulExpressionStatement",
"src": "13098:62:13"
},
{
"nodeType": "YulAssignment",
"src": "13169:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13181:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13192:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13177:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13177:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13169:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12996:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13010:4:13",
"type": ""
}
],
"src": "12845:356:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13380:231:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13397:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13408:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13390:6:13"
},
"nodeType": "YulFunctionCall",
"src": "13390:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "13390:21:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13431:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13442:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13427:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13427:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13447:2:13",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13420:6:13"
},
"nodeType": "YulFunctionCall",
"src": "13420:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "13420:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13470:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13481:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13466:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13466:18:13"
},
{
"hexValue": "4552433732313a207472616e73666572206f6620746f6b656e20746861742069",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13486:34:13",
"type": "",
"value": "ERC721: transfer of token that i"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13459:6:13"
},
"nodeType": "YulFunctionCall",
"src": "13459:62:13"
},
"nodeType": "YulExpressionStatement",
"src": "13459:62:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13541:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13552:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13537:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13537:18:13"
},
{
"hexValue": "73206e6f74206f776e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13557:11:13",
"type": "",
"value": "s not own"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13530:6:13"
},
"nodeType": "YulFunctionCall",
"src": "13530:39:13"
},
"nodeType": "YulExpressionStatement",
"src": "13530:39:13"
},
{
"nodeType": "YulAssignment",
"src": "13578:27:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13590:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13601:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13586:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13586:19:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13578:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13357:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13371:4:13",
"type": ""
}
],
"src": "13206:405:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13790:237:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13807:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13818:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13800:6:13"
},
"nodeType": "YulFunctionCall",
"src": "13800:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "13800:21:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13841:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13852:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13837:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13837:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13857:2:13",
"type": "",
"value": "47"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13830:6:13"
},
"nodeType": "YulFunctionCall",
"src": "13830:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "13830:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13880:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13891:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13876:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13876:18:13"
},
{
"hexValue": "4552433732314d657461646174613a2055524920717565727920666f72206e6f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13896:34:13",
"type": "",
"value": "ERC721Metadata: URI query for no"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13869:6:13"
},
"nodeType": "YulFunctionCall",
"src": "13869:62:13"
},
"nodeType": "YulExpressionStatement",
"src": "13869:62:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13951:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13962:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13947:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13947:18:13"
},
{
"hexValue": "6e6578697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13967:17:13",
"type": "",
"value": "nexistent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13940:6:13"
},
"nodeType": "YulFunctionCall",
"src": "13940:45:13"
},
"nodeType": "YulExpressionStatement",
"src": "13940:45:13"
},
{
"nodeType": "YulAssignment",
"src": "13994:27:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14006:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14017:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14002:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14002:19:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13994:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13767:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13781:4:13",
"type": ""
}
],
"src": "13616:411:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14206:223:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14223:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14234:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14216:6:13"
},
"nodeType": "YulFunctionCall",
"src": "14216:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "14216:21:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14257:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14268:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14253:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14253:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14273:2:13",
"type": "",
"value": "33"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14246:6:13"
},
"nodeType": "YulFunctionCall",
"src": "14246:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "14246:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14296:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14307:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14292:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14292:18:13"
},
{
"hexValue": "4552433732313a20617070726f76616c20746f2063757272656e74206f776e65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14312:34:13",
"type": "",
"value": "ERC721: approval to current owne"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14285:6:13"
},
"nodeType": "YulFunctionCall",
"src": "14285:62:13"
},
"nodeType": "YulExpressionStatement",
"src": "14285:62:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14367:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14378:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14363:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14363:18:13"
},
{
"hexValue": "72",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14383:3:13",
"type": "",
"value": "r"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14356:6:13"
},
"nodeType": "YulFunctionCall",
"src": "14356:31:13"
},
"nodeType": "YulExpressionStatement",
"src": "14356:31:13"
},
{
"nodeType": "YulAssignment",
"src": "14396:27:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14408:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14419:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14404:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14404:19:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14396:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14183:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14197:4:13",
"type": ""
}
],
"src": "14032:397:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14608:239:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14625:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14636:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14618:6:13"
},
"nodeType": "YulFunctionCall",
"src": "14618:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "14618:21:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14659:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14670:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14655:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14655:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14675:2:13",
"type": "",
"value": "49"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14648:6:13"
},
"nodeType": "YulFunctionCall",
"src": "14648:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "14648:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14698:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14709:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14694:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14694:18:13"
},
{
"hexValue": "4552433732313a207472616e736665722063616c6c6572206973206e6f74206f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14714:34:13",
"type": "",
"value": "ERC721: transfer caller is not o"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14687:6:13"
},
"nodeType": "YulFunctionCall",
"src": "14687:62:13"
},
"nodeType": "YulExpressionStatement",
"src": "14687:62:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14769:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14780:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14765:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14765:18:13"
},
{
"hexValue": "776e6572206e6f7220617070726f766564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14785:19:13",
"type": "",
"value": "wner nor approved"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14758:6:13"
},
"nodeType": "YulFunctionCall",
"src": "14758:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "14758:47:13"
},
{
"nodeType": "YulAssignment",
"src": "14814:27:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14826:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14837:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14822:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14822:19:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14814:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14585:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14599:4:13",
"type": ""
}
],
"src": "14434:413:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15026:234:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15043:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15054:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15036:6:13"
},
"nodeType": "YulFunctionCall",
"src": "15036:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "15036:21:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15077:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15088:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15073:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15073:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15093:2:13",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15066:6:13"
},
"nodeType": "YulFunctionCall",
"src": "15066:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "15066:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15116:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15127:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15112:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15112:18:13"
},
{
"hexValue": "455243373231456e756d657261626c653a20676c6f62616c20696e646578206f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15132:34:13",
"type": "",
"value": "ERC721Enumerable: global index o"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15105:6:13"
},
"nodeType": "YulFunctionCall",
"src": "15105:62:13"
},
"nodeType": "YulExpressionStatement",
"src": "15105:62:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15187:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15198:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15183:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15183:18:13"
},
{
"hexValue": "7574206f6620626f756e6473",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15203:14:13",
"type": "",
"value": "ut of bounds"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15176:6:13"
},
"nodeType": "YulFunctionCall",
"src": "15176:42:13"
},
"nodeType": "YulExpressionStatement",
"src": "15176:42:13"
},
{
"nodeType": "YulAssignment",
"src": "15227:27:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15239:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15250:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15235:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15235:19:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15227:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15003:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15017:4:13",
"type": ""
}
],
"src": "14852:408:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15366:76:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15376:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15388:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15399:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15384:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15384:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15376:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15418:9:13"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "15429:6:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15411:6:13"
},
"nodeType": "YulFunctionCall",
"src": "15411:25:13"
},
"nodeType": "YulExpressionStatement",
"src": "15411:25:13"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15335:9:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "15346:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15357:4:13",
"type": ""
}
],
"src": "15265:177:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15503:65:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15520:1:13",
"type": "",
"value": "0"
},
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "15523:3:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15513:6:13"
},
"nodeType": "YulFunctionCall",
"src": "15513:14:13"
},
"nodeType": "YulExpressionStatement",
"src": "15513:14:13"
},
{
"nodeType": "YulAssignment",
"src": "15536:26:13",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15554:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15557:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nodeType": "YulIdentifier",
"src": "15544:9:13"
},
"nodeType": "YulFunctionCall",
"src": "15544:18:13"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "15536:4:13"
}
]
}
]
},
"name": "array_dataslot_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "15486:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "15494:4:13",
"type": ""
}
],
"src": "15447:121:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15621:80:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "15648:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "15650:16:13"
},
"nodeType": "YulFunctionCall",
"src": "15650:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "15650:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "15637:1:13"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "15644:1:13"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "15640:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15640:6:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "15634:2:13"
},
"nodeType": "YulFunctionCall",
"src": "15634:13:13"
},
"nodeType": "YulIf",
"src": "15631:39:13"
},
{
"nodeType": "YulAssignment",
"src": "15679:16:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "15690:1:13"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "15693:1:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15686:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15686:9:13"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "15679:3:13"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "15604:1:13",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "15607:1:13",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "15613:3:13",
"type": ""
}
],
"src": "15573:128:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15752:74:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "15775:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "15777:16:13"
},
"nodeType": "YulFunctionCall",
"src": "15777:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "15777:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "15772:1:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "15765:6:13"
},
"nodeType": "YulFunctionCall",
"src": "15765:9:13"
},
"nodeType": "YulIf",
"src": "15762:35:13"
},
{
"nodeType": "YulAssignment",
"src": "15806:14:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "15815:1:13"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "15818:1:13"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "15811:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15811:9:13"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "15806:1:13"
}
]
}
]
},
"name": "checked_div_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "15737:1:13",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "15740:1:13",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "15746:1:13",
"type": ""
}
],
"src": "15706:120:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15883:116:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "15942:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "15944:16:13"
},
"nodeType": "YulFunctionCall",
"src": "15944:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "15944:18:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "15914:1:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "15907:6:13"
},
"nodeType": "YulFunctionCall",
"src": "15907:9:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "15900:6:13"
},
"nodeType": "YulFunctionCall",
"src": "15900:17:13"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "15922:1:13"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15933:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "15929:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15929:6:13"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "15937:1:13"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "15925:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15925:14:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "15919:2:13"
},
"nodeType": "YulFunctionCall",
"src": "15919:21:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "15896:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15896:45:13"
},
"nodeType": "YulIf",
"src": "15893:71:13"
},
{
"nodeType": "YulAssignment",
"src": "15973:20:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "15988:1:13"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "15991:1:13"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "15984:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15984:9:13"
},
"variableNames": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "15973:7:13"
}
]
}
]
},
"name": "checked_mul_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "15862:1:13",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "15865:1:13",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nodeType": "YulTypedName",
"src": "15871:7:13",
"type": ""
}
],
"src": "15831:168:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16053:76:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "16075:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "16077:16:13"
},
"nodeType": "YulFunctionCall",
"src": "16077:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "16077:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "16069:1:13"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "16072:1:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "16066:2:13"
},
"nodeType": "YulFunctionCall",
"src": "16066:8:13"
},
"nodeType": "YulIf",
"src": "16063:34:13"
},
{
"nodeType": "YulAssignment",
"src": "16106:17:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "16118:1:13"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "16121:1:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16114:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16114:9:13"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "16106:4:13"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "16035:1:13",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "16038:1:13",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "16044:4:13",
"type": ""
}
],
"src": "16004:125:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16187:205:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "16197:10:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "16206:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "16201:1:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "16266:63:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "16291:3:13"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "16296:1:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16287:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16287:11:13"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "16310:3:13"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "16315:1:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16306:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16306:11:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "16300:5:13"
},
"nodeType": "YulFunctionCall",
"src": "16300:18:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16280:6:13"
},
"nodeType": "YulFunctionCall",
"src": "16280:39:13"
},
"nodeType": "YulExpressionStatement",
"src": "16280:39:13"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "16227:1:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "16230:6:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "16224:2:13"
},
"nodeType": "YulFunctionCall",
"src": "16224:13:13"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "16238:19:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16240:15:13",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "16249:1:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16252:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16245:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16245:10:13"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "16240:1:13"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "16220:3:13",
"statements": []
},
"src": "16216:113:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16355:31:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "16368:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "16373:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16364:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16364:16:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16382:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16357:6:13"
},
"nodeType": "YulFunctionCall",
"src": "16357:27:13"
},
"nodeType": "YulExpressionStatement",
"src": "16357:27:13"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "16344:1:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "16347:6:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "16341:2:13"
},
"nodeType": "YulFunctionCall",
"src": "16341:13:13"
},
"nodeType": "YulIf",
"src": "16338:48:13"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "16165:3:13",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "16170:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "16175:6:13",
"type": ""
}
],
"src": "16134:258:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16452:325:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16462:22:13",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16476:1:13",
"type": "",
"value": "1"
},
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "16479:4:13"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "16472:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16472:12:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "16462:6:13"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "16493:38:13",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "16523:4:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16529:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "16519:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16519:12:13"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "16497:18:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "16570:31:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16572:27:13",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "16586:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16594:4:13",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "16582:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16582:17:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "16572:6:13"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "16550:18:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "16543:6:13"
},
"nodeType": "YulFunctionCall",
"src": "16543:26:13"
},
"nodeType": "YulIf",
"src": "16540:61:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16660:111:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16681:1:13",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16688:3:13",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16693:10:13",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "16684:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16684:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16674:6:13"
},
"nodeType": "YulFunctionCall",
"src": "16674:31:13"
},
"nodeType": "YulExpressionStatement",
"src": "16674:31:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16725:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16728:4:13",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16718:6:13"
},
"nodeType": "YulFunctionCall",
"src": "16718:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "16718:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16753:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16756:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "16746:6:13"
},
"nodeType": "YulFunctionCall",
"src": "16746:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "16746:15:13"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "16616:18:13"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "16639:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16647:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "16636:2:13"
},
"nodeType": "YulFunctionCall",
"src": "16636:14:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "16613:2:13"
},
"nodeType": "YulFunctionCall",
"src": "16613:38:13"
},
"nodeType": "YulIf",
"src": "16610:161:13"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "16432:4:13",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "16441:6:13",
"type": ""
}
],
"src": "16397:380:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16829:88:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "16860:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "16862:16:13"
},
"nodeType": "YulFunctionCall",
"src": "16862:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "16862:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "16845:5:13"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16856:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "16852:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16852:6:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "16842:2:13"
},
"nodeType": "YulFunctionCall",
"src": "16842:17:13"
},
"nodeType": "YulIf",
"src": "16839:43:13"
},
{
"nodeType": "YulAssignment",
"src": "16891:20:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "16902:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16909:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16898:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16898:13:13"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "16891:3:13"
}
]
}
]
},
"name": "increment_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "16811:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "16821:3:13",
"type": ""
}
],
"src": "16782:135:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16960:74:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "16983:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "16985:16:13"
},
"nodeType": "YulFunctionCall",
"src": "16985:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "16985:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "16980:1:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "16973:6:13"
},
"nodeType": "YulFunctionCall",
"src": "16973:9:13"
},
"nodeType": "YulIf",
"src": "16970:35:13"
},
{
"nodeType": "YulAssignment",
"src": "17014:14:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "17023:1:13"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "17026:1:13"
}
],
"functionName": {
"name": "mod",
"nodeType": "YulIdentifier",
"src": "17019:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17019:9:13"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "17014:1:13"
}
]
}
]
},
"name": "mod_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "16945:1:13",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "16948:1:13",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "16954:1:13",
"type": ""
}
],
"src": "16922:112:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17071:95:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17088:1:13",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17095:3:13",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17100:10:13",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "17091:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17091:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17081:6:13"
},
"nodeType": "YulFunctionCall",
"src": "17081:31:13"
},
"nodeType": "YulExpressionStatement",
"src": "17081:31:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17128:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17131:4:13",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17121:6:13"
},
"nodeType": "YulFunctionCall",
"src": "17121:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "17121:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17152:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17155:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "17145:6:13"
},
"nodeType": "YulFunctionCall",
"src": "17145:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "17145:15:13"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "17039:127:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17203:95:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17220:1:13",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17227:3:13",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17232:10:13",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "17223:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17223:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17213:6:13"
},
"nodeType": "YulFunctionCall",
"src": "17213:31:13"
},
"nodeType": "YulExpressionStatement",
"src": "17213:31:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17260:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17263:4:13",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17253:6:13"
},
"nodeType": "YulFunctionCall",
"src": "17253:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "17253:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17284:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17287:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "17277:6:13"
},
"nodeType": "YulFunctionCall",
"src": "17277:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "17277:15:13"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "17171:127:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17335:95:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17352:1:13",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17359:3:13",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17364:10:13",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "17355:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17355:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17345:6:13"
},
"nodeType": "YulFunctionCall",
"src": "17345:31:13"
},
"nodeType": "YulExpressionStatement",
"src": "17345:31:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17392:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17395:4:13",
"type": "",
"value": "0x31"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17385:6:13"
},
"nodeType": "YulFunctionCall",
"src": "17385:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "17385:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17416:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17419:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "17409:6:13"
},
"nodeType": "YulFunctionCall",
"src": "17409:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "17409:15:13"
}
]
},
"name": "panic_error_0x31",
"nodeType": "YulFunctionDefinition",
"src": "17303:127:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17467:95:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17484:1:13",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17491:3:13",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17496:10:13",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "17487:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17487:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17477:6:13"
},
"nodeType": "YulFunctionCall",
"src": "17477:31:13"
},
"nodeType": "YulExpressionStatement",
"src": "17477:31:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17524:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17527:4:13",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17517:6:13"
},
"nodeType": "YulFunctionCall",
"src": "17517:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "17517:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17548:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17551:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "17541:6:13"
},
"nodeType": "YulFunctionCall",
"src": "17541:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "17541:15:13"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "17435:127:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17599:95:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17616:1:13",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17623:3:13",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17628:10:13",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "17619:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17619:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17609:6:13"
},
"nodeType": "YulFunctionCall",
"src": "17609:31:13"
},
"nodeType": "YulExpressionStatement",
"src": "17609:31:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17656:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17659:4:13",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17649:6:13"
},
"nodeType": "YulFunctionCall",
"src": "17649:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "17649:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17680:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17683:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "17673:6:13"
},
"nodeType": "YulFunctionCall",
"src": "17673:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "17673:15:13"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "17567:127:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17743:87:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "17808:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17817:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17820:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "17810:6:13"
},
"nodeType": "YulFunctionCall",
"src": "17810:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "17810:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "17766:5:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "17777:5:13"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17788:3:13",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17793:10:13",
"type": "",
"value": "0xffffffff"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "17784:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17784:20:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "17773:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17773:32:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "17763:2:13"
},
"nodeType": "YulFunctionCall",
"src": "17763:43:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "17756:6:13"
},
"nodeType": "YulFunctionCall",
"src": "17756:51:13"
},
"nodeType": "YulIf",
"src": "17753:71:13"
}
]
},
"name": "validator_revert_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "17732:5:13",
"type": ""
}
],
"src": "17699:131:13"
}
]
},
"contents": "{\n { }\n function abi_decode_available_length_bytes(src, length, end) -> array\n {\n let _1 := 0xffffffffffffffff\n if gt(length, _1) { panic_error_0x41() }\n let _2 := not(31)\n let memPtr := mload(64)\n let newFreePtr := add(memPtr, and(add(and(add(length, 31), _2), 63), _2))\n if or(gt(newFreePtr, _1), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n array := memPtr\n mstore(memPtr, length)\n if gt(add(src, length), end) { revert(0, 0) }\n calldatacopy(add(memPtr, 0x20), src, length)\n mstore(add(add(memPtr, length), 0x20), 0)\n }\n function abi_decode_address(offset) -> value\n {\n value := calldataload(offset)\n if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n }\n function abi_decode_bool(offset) -> value\n {\n value := calldataload(offset)\n if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n }\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n }\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n value1 := abi_decode_address(add(headStart, 32))\n }\n function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n {\n if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n value1 := abi_decode_address(add(headStart, 32))\n value2 := calldataload(add(headStart, 64))\n }\n function abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3\n {\n if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n value1 := abi_decode_address(add(headStart, 32))\n value2 := calldataload(add(headStart, 64))\n let offset := calldataload(add(headStart, 96))\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n let _1 := add(headStart, offset)\n if iszero(slt(add(_1, 0x1f), dataEnd)) { revert(0, 0) }\n value3 := abi_decode_available_length_bytes(add(_1, 32), calldataload(_1), dataEnd)\n }\n function abi_decode_tuple_t_addresst_bool(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n value1 := abi_decode_bool(add(headStart, 32))\n }\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n value1 := calldataload(add(headStart, 32))\n }\n function abi_decode_tuple_t_bool(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n value0 := abi_decode_bool(headStart)\n }\n function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n let value := calldataload(headStart)\n validator_revert_bytes4(value)\n value0 := value\n }\n function abi_decode_tuple_t_bytes4_fromMemory(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n let value := mload(headStart)\n validator_revert_bytes4(value)\n value0 := value\n }\n function abi_decode_tuple_t_string_memory_ptr(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n let offset := calldataload(headStart)\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n let _1 := add(headStart, offset)\n if iszero(slt(add(_1, 0x1f), dataEnd)) { revert(0, 0) }\n value0 := abi_decode_available_length_bytes(add(_1, 32), calldataload(_1), dataEnd)\n }\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n value0 := calldataload(headStart)\n }\n function abi_encode_bytes(value, pos) -> end\n {\n let length := mload(value)\n mstore(pos, length)\n copy_memory_to_memory(add(value, 0x20), add(pos, 0x20), length)\n end := add(add(pos, and(add(length, 31), not(31))), 0x20)\n }\n function abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr_t_string_storage__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value2, value1, value0) -> end\n {\n let length := mload(value0)\n let _1 := 0x20\n copy_memory_to_memory(add(value0, _1), pos, length)\n let end_1 := add(pos, length)\n let length_1 := mload(value1)\n copy_memory_to_memory(add(value1, _1), end_1, length_1)\n let end_2 := add(end_1, length_1)\n let ret := 0\n let slotValue := sload(value2)\n let length_2 := ret\n let _2 := 1\n length_2 := shr(_2, slotValue)\n let outOfPlaceEncoding := and(slotValue, _2)\n if iszero(outOfPlaceEncoding)\n {\n length_2 := and(length_2, 0x7f)\n }\n if eq(outOfPlaceEncoding, lt(length_2, _1))\n {\n mstore(ret, shl(224, 0x4e487b71))\n mstore(4, 0x22)\n revert(ret, 0x24)\n }\n switch outOfPlaceEncoding\n case 0 {\n mstore(end_2, and(slotValue, not(255)))\n ret := add(end_2, length_2)\n }\n case 1 {\n let dataPos := array_dataslot_string_storage(value2)\n let i := 0\n for { } lt(i, length_2) { i := add(i, _1) }\n {\n mstore(add(end_2, i), sload(dataPos))\n dataPos := add(dataPos, _2)\n }\n ret := add(end_2, length_2)\n }\n end := ret\n }\n function abi_encode_tuple_packed_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos) -> end\n { end := pos }\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n }\n function abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n {\n let _1 := sub(shl(160, 1), 1)\n mstore(headStart, and(value0, _1))\n mstore(add(headStart, 32), and(value1, _1))\n mstore(add(headStart, 64), value2)\n mstore(add(headStart, 96), 128)\n tail := abi_encode_bytes(value3, add(headStart, 128))\n }\n function abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n {\n let _1 := 32\n let tail_1 := add(headStart, _1)\n mstore(headStart, _1)\n let pos := tail_1\n let length := mload(value0)\n mstore(tail_1, length)\n pos := add(headStart, 64)\n let srcPtr := add(value0, _1)\n let i := 0\n for { } lt(i, length) { i := add(i, 1) }\n {\n mstore(pos, mload(srcPtr))\n pos := add(pos, _1)\n srcPtr := add(srcPtr, _1)\n }\n tail := pos\n }\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, iszero(iszero(value0)))\n }\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n {\n mstore(headStart, 32)\n tail := abi_encode_bytes(value0, add(headStart, 32))\n }\n function abi_encode_tuple_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 43)\n mstore(add(headStart, 64), \"ERC721Enumerable: owner index ou\")\n mstore(add(headStart, 96), \"t of bounds\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 50)\n mstore(add(headStart, 64), \"ERC721: transfer to non ERC721Re\")\n mstore(add(headStart, 96), \"ceiver implementer\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 38)\n mstore(add(headStart, 64), \"Ownable: new owner is the zero a\")\n mstore(add(headStart, 96), \"ddress\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 28)\n mstore(add(headStart, 64), \"ERC721: token already minted\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 36)\n mstore(add(headStart, 64), \"ERC721: transfer to the zero add\")\n mstore(add(headStart, 96), \"ress\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 25)\n mstore(add(headStart, 64), \"ERC721: approve to caller\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 44)\n mstore(add(headStart, 64), \"ERC721: operator query for nonex\")\n mstore(add(headStart, 96), \"istent token\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 56)\n mstore(add(headStart, 64), \"ERC721: approve caller is not ow\")\n mstore(add(headStart, 96), \"ner nor approved for all\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 42)\n mstore(add(headStart, 64), \"ERC721: balance query for the ze\")\n mstore(add(headStart, 96), \"ro address\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 41)\n mstore(add(headStart, 64), \"ERC721: owner query for nonexist\")\n mstore(add(headStart, 96), \"ent token\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 32)\n mstore(add(headStart, 64), \"ERC721: mint to the zero address\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 44)\n mstore(add(headStart, 64), \"ERC721: approved query for nonex\")\n mstore(add(headStart, 96), \"istent token\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 32)\n mstore(add(headStart, 64), \"Ownable: caller is not the owner\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 41)\n mstore(add(headStart, 64), \"ERC721: transfer of token that i\")\n mstore(add(headStart, 96), \"s not own\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 47)\n mstore(add(headStart, 64), \"ERC721Metadata: URI query for no\")\n mstore(add(headStart, 96), \"nexistent token\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 33)\n mstore(add(headStart, 64), \"ERC721: approval to current owne\")\n mstore(add(headStart, 96), \"r\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 49)\n mstore(add(headStart, 64), \"ERC721: transfer caller is not o\")\n mstore(add(headStart, 96), \"wner nor approved\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 44)\n mstore(add(headStart, 64), \"ERC721Enumerable: global index o\")\n mstore(add(headStart, 96), \"ut of bounds\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, value0)\n }\n function array_dataslot_string_storage(ptr) -> data\n {\n mstore(0, ptr)\n data := keccak256(0, 0x20)\n }\n function checked_add_t_uint256(x, y) -> sum\n {\n if gt(x, not(y)) { panic_error_0x11() }\n sum := add(x, y)\n }\n function checked_div_t_uint256(x, y) -> r\n {\n if iszero(y) { panic_error_0x12() }\n r := div(x, y)\n }\n function checked_mul_t_uint256(x, y) -> product\n {\n if and(iszero(iszero(x)), gt(y, div(not(0), x))) { panic_error_0x11() }\n product := mul(x, y)\n }\n function checked_sub_t_uint256(x, y) -> diff\n {\n if lt(x, y) { panic_error_0x11() }\n diff := sub(x, y)\n }\n function copy_memory_to_memory(src, dst, length)\n {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length) { mstore(add(dst, length), 0) }\n }\n function extract_byte_array_length(data) -> length\n {\n length := shr(1, data)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n if eq(outOfPlaceEncoding, lt(length, 32))\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n }\n function increment_t_uint256(value) -> ret\n {\n if eq(value, not(0)) { panic_error_0x11() }\n ret := add(value, 1)\n }\n function mod_t_uint256(x, y) -> r\n {\n if iszero(y) { panic_error_0x12() }\n r := mod(x, y)\n }\n function panic_error_0x11()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n function panic_error_0x12()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x12)\n revert(0, 0x24)\n }\n function panic_error_0x31()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x31)\n revert(0, 0x24)\n }\n function panic_error_0x32()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x32)\n revert(0, 0x24)\n }\n function panic_error_0x41()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n function validator_revert_bytes4(value)\n {\n if iszero(eq(value, and(value, shl(224, 0xffffffff)))) { revert(0, 0) }\n }\n}",
"id": 13,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "60806040526004361061020f5760003560e01c80635c975abb11610118578063a475b5dd116100a0578063d5abeb011161006f578063d5abeb01146105bc578063da3ef23f146105d2578063e985e9c5146105f2578063f2c4ce1e1461063b578063f2fde38b1461065b57600080fd5b8063a475b5dd14610552578063b88d4fde14610567578063c668286214610587578063c87b56dd1461059c57600080fd5b80637f00c7a6116100e75780637f00c7a6146104cc5780638da5cb5b146104ec57806395d89b411461050a578063a0712d681461051f578063a22cb4651461053257600080fd5b80635c975abb1461045d5780636352211e1461047757806370a0823114610497578063715018a6146104b757600080fd5b806323b872dd1161019b578063438b63001161016a578063438b6300146103b157806344a0d68a146103de5780634f6ccce7146103fe578063518302271461041e57806355f804b31461043d57600080fd5b806323b872dd146103495780632f745c59146103695780633ccfd60b1461038957806342842e0e1461039157600080fd5b8063081c8c44116101e2578063081c8c44146102c5578063095ea7b3146102da57806313faede6146102fa57806318160ddd1461031e578063239c70ae1461033357600080fd5b806301ffc9a71461021457806302329a291461024957806306fdde031461026b578063081812fc1461028d575b600080fd5b34801561022057600080fd5b5061023461022f366004611f78565b61067b565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b50610269610264366004611f5d565b6106a6565b005b34801561027757600080fd5b506102806106ec565b6040516102409190612185565b34801561029957600080fd5b506102ad6102a8366004611ffb565b61077e565b6040516001600160a01b039091168152602001610240565b3480156102d157600080fd5b50610280610813565b3480156102e657600080fd5b506102696102f5366004611f33565b6108a1565b34801561030657600080fd5b50610310600d5481565b604051908152602001610240565b34801561032a57600080fd5b50600854610310565b34801561033f57600080fd5b50610310600f5481565b34801561035557600080fd5b50610269610364366004611e51565b6109b7565b34801561037557600080fd5b50610310610384366004611f33565b6109e8565b610269610a7e565b34801561039d57600080fd5b506102696103ac366004611e51565b610b1c565b3480156103bd57600080fd5b506103d16103cc366004611e03565b610b37565b6040516102409190612141565b3480156103ea57600080fd5b506102696103f9366004611ffb565b610bd9565b34801561040a57600080fd5b50610310610419366004611ffb565b610c08565b34801561042a57600080fd5b5060105461023490610100900460ff1681565b34801561044957600080fd5b50610269610458366004611fb2565b610c9b565b34801561046957600080fd5b506010546102349060ff1681565b34801561048357600080fd5b506102ad610492366004611ffb565b610cdc565b3480156104a357600080fd5b506103106104b2366004611e03565b610d53565b3480156104c357600080fd5b50610269610dda565b3480156104d857600080fd5b506102696104e7366004611ffb565b610e10565b3480156104f857600080fd5b50600a546001600160a01b03166102ad565b34801561051657600080fd5b50610280610e3f565b61026961052d366004611ffb565b610e4e565b34801561053e57600080fd5b5061026961054d366004611f09565b610efb565b34801561055e57600080fd5b50610269610f06565b34801561057357600080fd5b50610269610582366004611e8d565b610f41565b34801561059357600080fd5b50610280610f79565b3480156105a857600080fd5b506102806105b7366004611ffb565b610f86565b3480156105c857600080fd5b50610310600e5481565b3480156105de57600080fd5b506102696105ed366004611fb2565b611105565b3480156105fe57600080fd5b5061023461060d366004611e1e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561064757600080fd5b50610269610656366004611fb2565b611142565b34801561066757600080fd5b50610269610676366004611e03565b61117f565b60006001600160e01b0319821663780e9d6360e01b14806106a057506106a082611217565b92915050565b600a546001600160a01b031633146106d95760405162461bcd60e51b81526004016106d0906121ea565b60405180910390fd5b6010805460ff1916911515919091179055565b6060600080546106fb906122fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610727906122fe565b80156107745780601f1061074957610100808354040283529160200191610774565b820191906000526020600020905b81548152906001019060200180831161075757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107f75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106d0565b506000908152600460205260409020546001600160a01b031690565b60118054610820906122fe565b80601f016020809104026020016040519081016040528092919081815260200182805461084c906122fe565b80156108995780601f1061086e57610100808354040283529160200191610899565b820191906000526020600020905b81548152906001019060200180831161087c57829003601f168201915b505050505081565b60006108ac82610cdc565b9050806001600160a01b0316836001600160a01b0316141561091a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106d0565b336001600160a01b03821614806109365750610936813361060d565b6109a85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106d0565b6109b28383611267565b505050565b6109c133826112d5565b6109dd5760405162461bcd60e51b81526004016106d09061221f565b6109b28383836113cc565b60006109f383610d53565b8210610a555760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106d0565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610aa85760405162461bcd60e51b81526004016106d0906121ea565b6000610abc600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b06576040519150601f19603f3d011682016040523d82523d6000602084013e610b0b565b606091505b5050905080610b1957600080fd5b50565b6109b283838360405180602001604052806000815250610f41565b60606000610b4483610d53565b905060008167ffffffffffffffff811115610b6157610b616123c0565b604051908082528060200260200182016040528015610b8a578160200160208202803683370190505b50905060005b82811015610bd157610ba285826109e8565b828281518110610bb457610bb46123aa565b602090810291909101015280610bc981612339565b915050610b90565b509392505050565b600a546001600160a01b03163314610c035760405162461bcd60e51b81526004016106d0906121ea565b600d55565b6000610c1360085490565b8210610c765760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106d0565b60088281548110610c8957610c896123aa565b90600052602060002001549050919050565b600a546001600160a01b03163314610cc55760405162461bcd60e51b81526004016106d0906121ea565b8051610cd890600b906020840190611cc8565b5050565b6000818152600260205260408120546001600160a01b0316806106a05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106d0565b60006001600160a01b038216610dbe5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106d0565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610e045760405162461bcd60e51b81526004016106d0906121ea565b610e0e6000611577565b565b600a546001600160a01b03163314610e3a5760405162461bcd60e51b81526004016106d0906121ea565b600f55565b6060600180546106fb906122fe565b6000610e5960085490565b60105490915060ff1615610e6c57600080fd5b60008211610e7957600080fd5b600f54821115610e8857600080fd5b600e54610e958383612270565b1115610ea057600080fd5b600a546001600160a01b03163314610ecc5781600d54610ec0919061229c565b341015610ecc57600080fd5b60015b8281116109b257610ee933610ee48385612270565b6115c9565b80610ef381612339565b915050610ecf565b610cd83383836115e3565b600a546001600160a01b03163314610f305760405162461bcd60e51b81526004016106d0906121ea565b6010805461ff001916610100179055565b610f4b33836112d5565b610f675760405162461bcd60e51b81526004016106d09061221f565b610f73848484846116b2565b50505050565b600c8054610820906122fe565b6000818152600260205260409020546060906001600160a01b03166110055760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106d0565b601054610100900460ff166110a65760118054611021906122fe565b80601f016020809104026020016040519081016040528092919081815260200182805461104d906122fe565b801561109a5780601f1061106f5761010080835404028352916020019161109a565b820191906000526020600020905b81548152906001019060200180831161107d57829003601f168201915b50505050509050919050565b60006110b06116e5565b905060008151116110d057604051806020016040528060008152506110fe565b806110da846116f4565b600c6040516020016110ee93929190612040565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461112f5760405162461bcd60e51b81526004016106d0906121ea565b8051610cd890600c906020840190611cc8565b600a546001600160a01b0316331461116c5760405162461bcd60e51b81526004016106d0906121ea565b8051610cd8906011906020840190611cc8565b600a546001600160a01b031633146111a95760405162461bcd60e51b81526004016106d0906121ea565b6001600160a01b03811661120e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106d0565b610b1981611577565b60006001600160e01b031982166380ac58cd60e01b148061124857506001600160e01b03198216635b5e139f60e01b145b806106a057506301ffc9a760e01b6001600160e01b03198316146106a0565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061129c82610cdc565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661134e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106d0565b600061135983610cdc565b9050806001600160a01b0316846001600160a01b031614806113945750836001600160a01b03166113898461077e565b6001600160a01b0316145b806113c457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166113df82610cdc565b6001600160a01b0316146114475760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106d0565b6001600160a01b0382166114a95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106d0565b6114b48383836117f2565b6114bf600082611267565b6001600160a01b03831660009081526003602052604081208054600192906114e89084906122bb565b90915550506001600160a01b0382166000908152600360205260408120805460019290611516908490612270565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610cd88282604051806020016040528060008152506118aa565b816001600160a01b0316836001600160a01b031614156116455760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106d0565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6116bd8484846113cc565b6116c9848484846118dd565b610f735760405162461bcd60e51b81526004016106d090612198565b6060600b80546106fb906122fe565b6060816117185750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611742578061172c81612339565b915061173b9050600a83612288565b915061171c565b60008167ffffffffffffffff81111561175d5761175d6123c0565b6040519080825280601f01601f191660200182016040528015611787576020820181803683370190505b5090505b84156113c45761179c6001836122bb565b91506117a9600a86612354565b6117b4906030612270565b60f81b8183815181106117c9576117c96123aa565b60200101906001600160f81b031916908160001a9053506117eb600a86612288565b945061178b565b6001600160a01b03831661184d5761184881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611870565b816001600160a01b0316836001600160a01b0316146118705761187083826119ea565b6001600160a01b038216611887576109b281611a87565b826001600160a01b0316826001600160a01b0316146109b2576109b28282611b36565b6118b48383611b7a565b6118c160008484846118dd565b6109b25760405162461bcd60e51b81526004016106d090612198565b60006001600160a01b0384163b156119df57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611921903390899088908890600401612104565b602060405180830381600087803b15801561193b57600080fd5b505af192505050801561196b575060408051601f3d908101601f1916820190925261196891810190611f95565b60015b6119c5573d808015611999576040519150601f19603f3d011682016040523d82523d6000602084013e61199e565b606091505b5080516119bd5760405162461bcd60e51b81526004016106d090612198565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113c4565b506001949350505050565b600060016119f784610d53565b611a0191906122bb565b600083815260076020526040902054909150808214611a54576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a99906001906122bb565b60008381526009602052604081205460088054939450909284908110611ac157611ac16123aa565b906000526020600020015490508060088381548110611ae257611ae26123aa565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b1a57611b1a612394565b6001900381819060005260206000200160009055905550505050565b6000611b4183610d53565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611bd05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106d0565b6000818152600260205260409020546001600160a01b031615611c355760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106d0565b611c41600083836117f2565b6001600160a01b0382166000908152600360205260408120805460019290611c6a908490612270565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611cd4906122fe565b90600052602060002090601f016020900481019282611cf65760008555611d3c565b82601f10611d0f57805160ff1916838001178555611d3c565b82800160010185558215611d3c579182015b82811115611d3c578251825591602001919060010190611d21565b50611d48929150611d4c565b5090565b5b80821115611d485760008155600101611d4d565b600067ffffffffffffffff80841115611d7c57611d7c6123c0565b604051601f8501601f19908116603f01168101908282118183101715611da457611da46123c0565b81604052809350858152868686011115611dbd57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611dee57600080fd5b919050565b80358015158114611dee57600080fd5b600060208284031215611e1557600080fd5b6110fe82611dd7565b60008060408385031215611e3157600080fd5b611e3a83611dd7565b9150611e4860208401611dd7565b90509250929050565b600080600060608486031215611e6657600080fd5b611e6f84611dd7565b9250611e7d60208501611dd7565b9150604084013590509250925092565b60008060008060808587031215611ea357600080fd5b611eac85611dd7565b9350611eba60208601611dd7565b925060408501359150606085013567ffffffffffffffff811115611edd57600080fd5b8501601f81018713611eee57600080fd5b611efd87823560208401611d61565b91505092959194509250565b60008060408385031215611f1c57600080fd5b611f2583611dd7565b9150611e4860208401611df3565b60008060408385031215611f4657600080fd5b611f4f83611dd7565b946020939093013593505050565b600060208284031215611f6f57600080fd5b6110fe82611df3565b600060208284031215611f8a57600080fd5b81356110fe816123d6565b600060208284031215611fa757600080fd5b81516110fe816123d6565b600060208284031215611fc457600080fd5b813567ffffffffffffffff811115611fdb57600080fd5b8201601f81018413611fec57600080fd5b6113c484823560208401611d61565b60006020828403121561200d57600080fd5b5035919050565b6000815180845261202c8160208601602086016122d2565b601f01601f19169290920160200192915050565b6000845160206120538285838a016122d2565b8551918401916120668184848a016122d2565b8554920191600090600181811c908083168061208357607f831692505b8583108114156120a157634e487b7160e01b85526022600452602485fd5b8080156120b557600181146120c6576120f3565b60ff198516885283880195506120f3565b60008b81526020902060005b858110156120eb5781548a8201529084019088016120d2565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061213790830184612014565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156121795783518352928401929184019160010161215d565b50909695505050505050565b6020815260006110fe6020830184612014565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561228357612283612368565b500190565b6000826122975761229761237e565b500490565b60008160001904831182151516156122b6576122b6612368565b500290565b6000828210156122cd576122cd612368565b500390565b60005b838110156122ed5781810151838201526020016122d5565b83811115610f735750506000910152565b600181811c9082168061231257607f821691505b6020821081141561233357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561234d5761234d612368565b5060010190565b6000826123635761236361237e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b1957600080fdfea2646970667358221220a1be227678f5cf5aa5da56e4d38b9bff69a80503eefe9929733f3b04e24a6b1664736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x20F JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x5C975ABB GT PUSH2 0x118 JUMPI DUP1 PUSH4 0xA475B5DD GT PUSH2 0xA0 JUMPI DUP1 PUSH4 0xD5ABEB01 GT PUSH2 0x6F JUMPI DUP1 PUSH4 0xD5ABEB01 EQ PUSH2 0x5BC JUMPI DUP1 PUSH4 0xDA3EF23F EQ PUSH2 0x5D2 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x5F2 JUMPI DUP1 PUSH4 0xF2C4CE1E EQ PUSH2 0x63B JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x65B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xA475B5DD EQ PUSH2 0x552 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x567 JUMPI DUP1 PUSH4 0xC6682862 EQ PUSH2 0x587 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x59C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x7F00C7A6 GT PUSH2 0xE7 JUMPI DUP1 PUSH4 0x7F00C7A6 EQ PUSH2 0x4CC JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x4EC JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x50A JUMPI DUP1 PUSH4 0xA0712D68 EQ PUSH2 0x51F JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x532 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x45D JUMPI DUP1 PUSH4 0x6352211E EQ PUSH2 0x477 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x497 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x4B7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x23B872DD GT PUSH2 0x19B JUMPI DUP1 PUSH4 0x438B6300 GT PUSH2 0x16A JUMPI DUP1 PUSH4 0x438B6300 EQ PUSH2 0x3B1 JUMPI DUP1 PUSH4 0x44A0D68A EQ PUSH2 0x3DE JUMPI DUP1 PUSH4 0x4F6CCCE7 EQ PUSH2 0x3FE JUMPI DUP1 PUSH4 0x51830227 EQ PUSH2 0x41E JUMPI DUP1 PUSH4 0x55F804B3 EQ PUSH2 0x43D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x23B872DD EQ PUSH2 0x349 JUMPI DUP1 PUSH4 0x2F745C59 EQ PUSH2 0x369 JUMPI DUP1 PUSH4 0x3CCFD60B EQ PUSH2 0x389 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x391 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x81C8C44 GT PUSH2 0x1E2 JUMPI DUP1 PUSH4 0x81C8C44 EQ PUSH2 0x2C5 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x2DA JUMPI DUP1 PUSH4 0x13FAEDE6 EQ PUSH2 0x2FA JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x31E JUMPI DUP1 PUSH4 0x239C70AE EQ PUSH2 0x333 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x214 JUMPI DUP1 PUSH4 0x2329A29 EQ PUSH2 0x249 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x26B JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x28D JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x220 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x234 PUSH2 0x22F CALLDATASIZE PUSH1 0x4 PUSH2 0x1F78 JUMP JUMPDEST PUSH2 0x67B JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x255 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x269 PUSH2 0x264 CALLDATASIZE PUSH1 0x4 PUSH2 0x1F5D JUMP JUMPDEST PUSH2 0x6A6 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x277 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x280 PUSH2 0x6EC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x240 SWAP2 SWAP1 PUSH2 0x2185 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x299 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2AD PUSH2 0x2A8 CALLDATASIZE PUSH1 0x4 PUSH2 0x1FFB JUMP JUMPDEST PUSH2 0x77E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x240 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2D1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x280 PUSH2 0x813 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2E6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x269 PUSH2 0x2F5 CALLDATASIZE PUSH1 0x4 PUSH2 0x1F33 JUMP JUMPDEST PUSH2 0x8A1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x306 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x310 PUSH1 0xD SLOAD DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x240 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x32A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x8 SLOAD PUSH2 0x310 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x33F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x310 PUSH1 0xF SLOAD DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x355 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x269 PUSH2 0x364 CALLDATASIZE PUSH1 0x4 PUSH2 0x1E51 JUMP JUMPDEST PUSH2 0x9B7 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x375 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x310 PUSH2 0x384 CALLDATASIZE PUSH1 0x4 PUSH2 0x1F33 JUMP JUMPDEST PUSH2 0x9E8 JUMP JUMPDEST PUSH2 0x269 PUSH2 0xA7E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x39D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x269 PUSH2 0x3AC CALLDATASIZE PUSH1 0x4 PUSH2 0x1E51 JUMP JUMPDEST PUSH2 0xB1C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3BD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3D1 PUSH2 0x3CC CALLDATASIZE PUSH1 0x4 PUSH2 0x1E03 JUMP JUMPDEST PUSH2 0xB37 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x240 SWAP2 SWAP1 PUSH2 0x2141 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3EA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x269 PUSH2 0x3F9 CALLDATASIZE PUSH1 0x4 PUSH2 0x1FFB JUMP JUMPDEST PUSH2 0xBD9 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x40A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x310 PUSH2 0x419 CALLDATASIZE PUSH1 0x4 PUSH2 0x1FFB JUMP JUMPDEST PUSH2 0xC08 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x42A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x10 SLOAD PUSH2 0x234 SWAP1 PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x449 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x269 PUSH2 0x458 CALLDATASIZE PUSH1 0x4 PUSH2 0x1FB2 JUMP JUMPDEST PUSH2 0xC9B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x469 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x10 SLOAD PUSH2 0x234 SWAP1 PUSH1 0xFF AND DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x483 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2AD PUSH2 0x492 CALLDATASIZE PUSH1 0x4 PUSH2 0x1FFB JUMP JUMPDEST PUSH2 0xCDC JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4A3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x310 PUSH2 0x4B2 CALLDATASIZE PUSH1 0x4 PUSH2 0x1E03 JUMP JUMPDEST PUSH2 0xD53 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4C3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x269 PUSH2 0xDDA JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4D8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x269 PUSH2 0x4E7 CALLDATASIZE PUSH1 0x4 PUSH2 0x1FFB JUMP JUMPDEST PUSH2 0xE10 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4F8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2AD JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x516 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x280 PUSH2 0xE3F JUMP JUMPDEST PUSH2 0x269 PUSH2 0x52D CALLDATASIZE PUSH1 0x4 PUSH2 0x1FFB JUMP JUMPDEST PUSH2 0xE4E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x53E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x269 PUSH2 0x54D CALLDATASIZE PUSH1 0x4 PUSH2 0x1F09 JUMP JUMPDEST PUSH2 0xEFB JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x55E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x269 PUSH2 0xF06 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x573 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x269 PUSH2 0x582 CALLDATASIZE PUSH1 0x4 PUSH2 0x1E8D JUMP JUMPDEST PUSH2 0xF41 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x593 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x280 PUSH2 0xF79 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5A8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x280 PUSH2 0x5B7 CALLDATASIZE PUSH1 0x4 PUSH2 0x1FFB JUMP JUMPDEST PUSH2 0xF86 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5C8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x310 PUSH1 0xE SLOAD DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5DE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x269 PUSH2 0x5ED CALLDATASIZE PUSH1 0x4 PUSH2 0x1FB2 JUMP JUMPDEST PUSH2 0x1105 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5FE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x234 PUSH2 0x60D CALLDATASIZE PUSH1 0x4 PUSH2 0x1E1E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x647 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x269 PUSH2 0x656 CALLDATASIZE PUSH1 0x4 PUSH2 0x1FB2 JUMP JUMPDEST PUSH2 0x1142 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x667 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x269 PUSH2 0x676 CALLDATASIZE PUSH1 0x4 PUSH2 0x1E03 JUMP JUMPDEST PUSH2 0x117F JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x780E9D63 PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x6A0 JUMPI POP PUSH2 0x6A0 DUP3 PUSH2 0x1217 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x6D9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D0 SWAP1 PUSH2 0x21EA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x10 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP2 ISZERO ISZERO SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x6FB SWAP1 PUSH2 0x22FE 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 0x727 SWAP1 PUSH2 0x22FE JUMP JUMPDEST DUP1 ISZERO PUSH2 0x774 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x749 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x774 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 0x757 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x7F7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76656420717565727920666F72206E6F6E6578 PUSH1 0x44 DUP3 ADD MSTORE PUSH12 0x34B9BA32B73A103A37B5B2B7 PUSH1 0xA1 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x6D0 JUMP JUMPDEST POP PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x11 DUP1 SLOAD PUSH2 0x820 SWAP1 PUSH2 0x22FE 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 0x84C SWAP1 PUSH2 0x22FE JUMP JUMPDEST DUP1 ISZERO PUSH2 0x899 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x86E JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x899 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 0x87C JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8AC DUP3 PUSH2 0xCDC JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x91A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x39 PUSH1 0xF9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x6D0 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND EQ DUP1 PUSH2 0x936 JUMPI POP PUSH2 0x936 DUP2 CALLER PUSH2 0x60D JUMP JUMPDEST PUSH2 0x9A8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x38 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F74206F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6E6572206E6F7220617070726F76656420666F7220616C6C0000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x6D0 JUMP JUMPDEST PUSH2 0x9B2 DUP4 DUP4 PUSH2 0x1267 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x9C1 CALLER DUP3 PUSH2 0x12D5 JUMP JUMPDEST PUSH2 0x9DD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D0 SWAP1 PUSH2 0x221F JUMP JUMPDEST PUSH2 0x9B2 DUP4 DUP4 DUP4 PUSH2 0x13CC JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9F3 DUP4 PUSH2 0xD53 JUMP JUMPDEST DUP3 LT PUSH2 0xA55 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243373231456E756D657261626C653A206F776E657220696E646578206F75 PUSH1 0x44 DUP3 ADD MSTORE PUSH11 0x74206F6620626F756E6473 PUSH1 0xA8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x6D0 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xAA8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D0 SWAP1 PUSH2 0x21EA JUMP JUMPDEST PUSH1 0x0 PUSH2 0xABC PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SELFBALANCE PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0xB06 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 0xB0B JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0xB19 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x9B2 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0xF41 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0xB44 DUP4 PUSH2 0xD53 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xB61 JUMPI PUSH2 0xB61 PUSH2 0x23C0 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xB8A JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0xBD1 JUMPI PUSH2 0xBA2 DUP6 DUP3 PUSH2 0x9E8 JUMP JUMPDEST DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xBB4 JUMPI PUSH2 0xBB4 PUSH2 0x23AA JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0xBC9 DUP2 PUSH2 0x2339 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xB90 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xC03 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D0 SWAP1 PUSH2 0x21EA JUMP JUMPDEST PUSH1 0xD SSTORE JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC13 PUSH1 0x8 SLOAD SWAP1 JUMP JUMPDEST DUP3 LT PUSH2 0xC76 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243373231456E756D657261626C653A20676C6F62616C20696E646578206F PUSH1 0x44 DUP3 ADD MSTORE PUSH12 0x7574206F6620626F756E6473 PUSH1 0xA0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x6D0 JUMP JUMPDEST PUSH1 0x8 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0xC89 JUMPI PUSH2 0xC89 PUSH2 0x23AA JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xCC5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D0 SWAP1 PUSH2 0x21EA JUMP JUMPDEST DUP1 MLOAD PUSH2 0xCD8 SWAP1 PUSH1 0xB SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH2 0x1CC8 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP1 PUSH2 0x6A0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A206F776E657220717565727920666F72206E6F6E6578697374 PUSH1 0x44 DUP3 ADD MSTORE PUSH9 0x32B73A103A37B5B2B7 PUSH1 0xB9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x6D0 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xDBE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A2062616C616E636520717565727920666F7220746865207A65 PUSH1 0x44 DUP3 ADD MSTORE PUSH10 0x726F2061646472657373 PUSH1 0xB0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x6D0 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xE04 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D0 SWAP1 PUSH2 0x21EA JUMP JUMPDEST PUSH2 0xE0E PUSH1 0x0 PUSH2 0x1577 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xE3A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D0 SWAP1 PUSH2 0x21EA JUMP JUMPDEST PUSH1 0xF SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x6FB SWAP1 PUSH2 0x22FE JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE59 PUSH1 0x8 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x10 SLOAD SWAP1 SWAP2 POP PUSH1 0xFF AND ISZERO PUSH2 0xE6C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP3 GT PUSH2 0xE79 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0xF SLOAD DUP3 GT ISZERO PUSH2 0xE88 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0xE SLOAD PUSH2 0xE95 DUP4 DUP4 PUSH2 0x2270 JUMP JUMPDEST GT ISZERO PUSH2 0xEA0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xECC JUMPI DUP2 PUSH1 0xD SLOAD PUSH2 0xEC0 SWAP2 SWAP1 PUSH2 0x229C JUMP JUMPDEST CALLVALUE LT ISZERO PUSH2 0xECC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x1 JUMPDEST DUP3 DUP2 GT PUSH2 0x9B2 JUMPI PUSH2 0xEE9 CALLER PUSH2 0xEE4 DUP4 DUP6 PUSH2 0x2270 JUMP JUMPDEST PUSH2 0x15C9 JUMP JUMPDEST DUP1 PUSH2 0xEF3 DUP2 PUSH2 0x2339 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xECF JUMP JUMPDEST PUSH2 0xCD8 CALLER DUP4 DUP4 PUSH2 0x15E3 JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xF30 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D0 SWAP1 PUSH2 0x21EA JUMP JUMPDEST PUSH1 0x10 DUP1 SLOAD PUSH2 0xFF00 NOT AND PUSH2 0x100 OR SWAP1 SSTORE JUMP JUMPDEST PUSH2 0xF4B CALLER DUP4 PUSH2 0x12D5 JUMP JUMPDEST PUSH2 0xF67 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D0 SWAP1 PUSH2 0x221F JUMP JUMPDEST PUSH2 0xF73 DUP5 DUP5 DUP5 DUP5 PUSH2 0x16B2 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0xC DUP1 SLOAD PUSH2 0x820 SWAP1 PUSH2 0x22FE JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x60 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1005 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732314D657461646174613A2055524920717565727920666F72206E6F PUSH1 0x44 DUP3 ADD MSTORE PUSH15 0x3732BC34B9BA32B73A103A37B5B2B7 PUSH1 0x89 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x6D0 JUMP JUMPDEST PUSH1 0x10 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND PUSH2 0x10A6 JUMPI PUSH1 0x11 DUP1 SLOAD PUSH2 0x1021 SWAP1 PUSH2 0x22FE 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 0x104D SWAP1 PUSH2 0x22FE JUMP JUMPDEST DUP1 ISZERO PUSH2 0x109A JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x106F JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x109A 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 0x107D JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x10B0 PUSH2 0x16E5 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x10D0 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x10FE JUMP JUMPDEST DUP1 PUSH2 0x10DA DUP5 PUSH2 0x16F4 JUMP JUMPDEST PUSH1 0xC PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x10EE SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x2040 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x112F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D0 SWAP1 PUSH2 0x21EA JUMP JUMPDEST DUP1 MLOAD PUSH2 0xCD8 SWAP1 PUSH1 0xC SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH2 0x1CC8 JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x116C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D0 SWAP1 PUSH2 0x21EA JUMP JUMPDEST DUP1 MLOAD PUSH2 0xCD8 SWAP1 PUSH1 0x11 SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH2 0x1CC8 JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x11A9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D0 SWAP1 PUSH2 0x21EA JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x120E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x44 DUP3 ADD MSTORE PUSH6 0x646472657373 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x6D0 JUMP JUMPDEST PUSH2 0xB19 DUP2 PUSH2 0x1577 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x80AC58CD PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x1248 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x5B5E139F PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x6A0 JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ PUSH2 0x6A0 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE DUP2 SWAP1 PUSH2 0x129C DUP3 PUSH2 0xCDC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x134E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A206F70657261746F7220717565727920666F72206E6F6E6578 PUSH1 0x44 DUP3 ADD MSTORE PUSH12 0x34B9BA32B73A103A37B5B2B7 PUSH1 0xA1 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x6D0 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1359 DUP4 PUSH2 0xCDC JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x1394 JUMPI POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1389 DUP5 PUSH2 0x77E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST DUP1 PUSH2 0x13C4 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP9 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x13DF DUP3 PUSH2 0xCDC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1447 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E73666572206F6620746F6B656E20746861742069 PUSH1 0x44 DUP3 ADD MSTORE PUSH9 0x39903737BA1037BBB7 PUSH1 0xB9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x6D0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x14A9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E7366657220746F20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH4 0x72657373 PUSH1 0xE0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x6D0 JUMP JUMPDEST PUSH2 0x14B4 DUP4 DUP4 DUP4 PUSH2 0x17F2 JUMP JUMPDEST PUSH2 0x14BF PUSH1 0x0 DUP3 PUSH2 0x1267 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0x14E8 SWAP1 DUP5 SWAP1 PUSH2 0x22BB JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0x1516 SWAP1 DUP5 SWAP1 PUSH2 0x2270 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE SWAP2 MLOAD DUP5 SWAP4 SWAP2 DUP8 AND SWAP2 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 LOG4 POP POP POP JUMP JUMPDEST PUSH1 0xA DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR SWAP1 SWAP4 SSTORE PUSH1 0x40 MLOAD SWAP2 AND SWAP2 SWAP1 DUP3 SWAP1 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP1 PUSH1 0x0 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0xCD8 DUP3 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x18AA JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x1645 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x19 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x6D0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND DUP7 ISZERO ISZERO SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP2 MLOAD SWAP2 DUP3 MSTORE PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x16BD DUP5 DUP5 DUP5 PUSH2 0x13CC JUMP JUMPDEST PUSH2 0x16C9 DUP5 DUP5 DUP5 DUP5 PUSH2 0x18DD JUMP JUMPDEST PUSH2 0xF73 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D0 SWAP1 PUSH2 0x2198 JUMP JUMPDEST PUSH1 0x60 PUSH1 0xB DUP1 SLOAD PUSH2 0x6FB SWAP1 PUSH2 0x22FE JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH2 0x1718 JUMPI POP POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x1 DUP2 MSTORE PUSH1 0x3 PUSH1 0xFC SHL PUSH1 0x20 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x0 JUMPDEST DUP2 ISZERO PUSH2 0x1742 JUMPI DUP1 PUSH2 0x172C DUP2 PUSH2 0x2339 JUMP JUMPDEST SWAP2 POP PUSH2 0x173B SWAP1 POP PUSH1 0xA DUP4 PUSH2 0x2288 JUMP JUMPDEST SWAP2 POP PUSH2 0x171C JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x175D JUMPI PUSH2 0x175D PUSH2 0x23C0 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1787 JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP JUMPDEST DUP5 ISZERO PUSH2 0x13C4 JUMPI PUSH2 0x179C PUSH1 0x1 DUP4 PUSH2 0x22BB JUMP JUMPDEST SWAP2 POP PUSH2 0x17A9 PUSH1 0xA DUP7 PUSH2 0x2354 JUMP JUMPDEST PUSH2 0x17B4 SWAP1 PUSH1 0x30 PUSH2 0x2270 JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x17C9 JUMPI PUSH2 0x17C9 PUSH2 0x23AA JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH2 0x17EB PUSH1 0xA DUP7 PUSH2 0x2288 JUMP JUMPDEST SWAP5 POP PUSH2 0x178B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x184D JUMPI PUSH2 0x1848 DUP2 PUSH1 0x8 DUP1 SLOAD PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP3 SWAP1 SSTORE PUSH1 0x1 DUP3 ADD DUP4 SSTORE SWAP2 SWAP1 SWAP2 MSTORE PUSH32 0xF3F7A9FE364FAAB93B216DA50A3214154F22A0A2B415B23A84C8169E8B636EE3 ADD SSTORE JUMP JUMPDEST PUSH2 0x1870 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1870 JUMPI PUSH2 0x1870 DUP4 DUP3 PUSH2 0x19EA JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1887 JUMPI PUSH2 0x9B2 DUP2 PUSH2 0x1A87 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x9B2 JUMPI PUSH2 0x9B2 DUP3 DUP3 PUSH2 0x1B36 JUMP JUMPDEST PUSH2 0x18B4 DUP4 DUP4 PUSH2 0x1B7A JUMP JUMPDEST PUSH2 0x18C1 PUSH1 0x0 DUP5 DUP5 DUP5 PUSH2 0x18DD JUMP JUMPDEST PUSH2 0x9B2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D0 SWAP1 PUSH2 0x2198 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO PUSH2 0x19DF JUMPI PUSH1 0x40 MLOAD PUSH4 0xA85BD01 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0x150B7A02 SWAP1 PUSH2 0x1921 SWAP1 CALLER SWAP1 DUP10 SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH2 0x2104 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x193B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x196B JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x1968 SWAP2 DUP2 ADD SWAP1 PUSH2 0x1F95 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x19C5 JUMPI RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0x1999 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 0x199E JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP DUP1 MLOAD PUSH2 0x19BD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D0 SWAP1 PUSH2 0x2198 JUMP JUMPDEST DUP1 MLOAD DUP2 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND PUSH4 0xA85BD01 PUSH1 0xE1 SHL EQ SWAP1 POP PUSH2 0x13C4 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH2 0x19F7 DUP5 PUSH2 0xD53 JUMP JUMPDEST PUSH2 0x1A01 SWAP2 SWAP1 PUSH2 0x22BB JUMP JUMPDEST PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 SWAP2 POP DUP1 DUP3 EQ PUSH2 0x1A54 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP6 DUP5 MSTORE DUP3 MSTORE DUP1 DUP4 KECCAK256 SLOAD DUP5 DUP5 MSTORE DUP2 DUP5 KECCAK256 DUP2 SWAP1 SSTORE DUP4 MSTORE PUSH1 0x7 SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP2 SWAP1 SSTORE JUMPDEST POP PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x7 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 DUP5 SWAP1 SSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP5 AND DUP4 MSTORE PUSH1 0x6 DUP2 MSTORE DUP4 DUP4 KECCAK256 SWAP2 DUP4 MSTORE MSTORE SWAP1 DUP2 KECCAK256 SSTORE JUMP JUMPDEST PUSH1 0x8 SLOAD PUSH1 0x0 SWAP1 PUSH2 0x1A99 SWAP1 PUSH1 0x1 SWAP1 PUSH2 0x22BB JUMP JUMPDEST PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x8 DUP1 SLOAD SWAP4 SWAP5 POP SWAP1 SWAP3 DUP5 SWAP1 DUP2 LT PUSH2 0x1AC1 JUMPI PUSH2 0x1AC1 PUSH2 0x23AA JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP DUP1 PUSH1 0x8 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x1AE2 JUMPI PUSH2 0x1AE2 PUSH2 0x23AA JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 KECCAK256 SWAP1 SWAP2 ADD SWAP3 SWAP1 SWAP3 SSTORE DUP3 DUP2 MSTORE PUSH1 0x9 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP5 SWAP1 SSTORE DUP6 DUP3 MSTORE DUP2 KECCAK256 SSTORE PUSH1 0x8 DUP1 SLOAD DUP1 PUSH2 0x1B1A JUMPI PUSH2 0x1B1A PUSH2 0x2394 JUMP JUMPDEST PUSH1 0x1 SWAP1 SUB DUP2 DUP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SSTORE SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1B41 DUP4 PUSH2 0xD53 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP7 DUP5 MSTORE DUP3 MSTORE DUP1 DUP4 KECCAK256 DUP6 SWAP1 SSTORE SWAP4 DUP3 MSTORE PUSH1 0x7 SWAP1 MSTORE SWAP2 SWAP1 SWAP2 KECCAK256 SWAP2 SWAP1 SWAP2 SSTORE POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1BD0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A206D696E7420746F20746865207A65726F2061646472657373 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x6D0 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO PUSH2 0x1C35 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20746F6B656E20616C7265616479206D696E74656400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x6D0 JUMP JUMPDEST PUSH2 0x1C41 PUSH1 0x0 DUP4 DUP4 PUSH2 0x17F2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0x1C6A SWAP1 DUP5 SWAP1 PUSH2 0x2270 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP1 MLOAD DUP4 SWAP3 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 DUP3 SWAP1 LOG4 POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x1CD4 SWAP1 PUSH2 0x22FE JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x1CF6 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x1D3C JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x1D0F JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x1D3C JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x1D3C JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x1D3C JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x1D21 JUMP JUMPDEST POP PUSH2 0x1D48 SWAP3 SWAP2 POP PUSH2 0x1D4C JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x1D48 JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x1D4D JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP5 GT ISZERO PUSH2 0x1D7C JUMPI PUSH2 0x1D7C PUSH2 0x23C0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP6 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP3 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH2 0x1DA4 JUMPI PUSH2 0x1DA4 PUSH2 0x23C0 JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP1 SWAP4 POP DUP6 DUP2 MSTORE DUP7 DUP7 DUP7 ADD GT ISZERO PUSH2 0x1DBD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 DUP6 PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH1 0x0 PUSH1 0x20 DUP8 DUP4 ADD ADD MSTORE POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1DEE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x1DEE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1E15 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x10FE DUP3 PUSH2 0x1DD7 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1E31 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1E3A DUP4 PUSH2 0x1DD7 JUMP JUMPDEST SWAP2 POP PUSH2 0x1E48 PUSH1 0x20 DUP5 ADD PUSH2 0x1DD7 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1E66 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1E6F DUP5 PUSH2 0x1DD7 JUMP JUMPDEST SWAP3 POP PUSH2 0x1E7D PUSH1 0x20 DUP6 ADD PUSH2 0x1DD7 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1EA3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1EAC DUP6 PUSH2 0x1DD7 JUMP JUMPDEST SWAP4 POP PUSH2 0x1EBA PUSH1 0x20 DUP7 ADD PUSH2 0x1DD7 JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1EDD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 ADD PUSH1 0x1F DUP2 ADD DUP8 SGT PUSH2 0x1EEE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1EFD DUP8 DUP3 CALLDATALOAD PUSH1 0x20 DUP5 ADD PUSH2 0x1D61 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 0x1F1C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1F25 DUP4 PUSH2 0x1DD7 JUMP JUMPDEST SWAP2 POP PUSH2 0x1E48 PUSH1 0x20 DUP5 ADD PUSH2 0x1DF3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1F46 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1F4F DUP4 PUSH2 0x1DD7 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1F6F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x10FE DUP3 PUSH2 0x1DF3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1F8A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x10FE DUP2 PUSH2 0x23D6 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1FA7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x10FE DUP2 PUSH2 0x23D6 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1FC4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1FDB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 ADD PUSH1 0x1F DUP2 ADD DUP5 SGT PUSH2 0x1FEC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x13C4 DUP5 DUP3 CALLDATALOAD PUSH1 0x20 DUP5 ADD PUSH2 0x1D61 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x200D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x202C DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x22D2 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP5 MLOAD PUSH1 0x20 PUSH2 0x2053 DUP3 DUP6 DUP4 DUP11 ADD PUSH2 0x22D2 JUMP JUMPDEST DUP6 MLOAD SWAP2 DUP5 ADD SWAP2 PUSH2 0x2066 DUP2 DUP5 DUP5 DUP11 ADD PUSH2 0x22D2 JUMP JUMPDEST DUP6 SLOAD SWAP3 ADD SWAP2 PUSH1 0x0 SWAP1 PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP1 DUP4 AND DUP1 PUSH2 0x2083 JUMPI PUSH1 0x7F DUP4 AND SWAP3 POP JUMPDEST DUP6 DUP4 LT DUP2 EQ ISZERO PUSH2 0x20A1 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL DUP6 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 DUP6 REVERT JUMPDEST DUP1 DUP1 ISZERO PUSH2 0x20B5 JUMPI PUSH1 0x1 DUP2 EQ PUSH2 0x20C6 JUMPI PUSH2 0x20F3 JUMP JUMPDEST PUSH1 0xFF NOT DUP6 AND DUP9 MSTORE DUP4 DUP9 ADD SWAP6 POP PUSH2 0x20F3 JUMP JUMPDEST PUSH1 0x0 DUP12 DUP2 MSTORE PUSH1 0x20 SWAP1 KECCAK256 PUSH1 0x0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x20EB JUMPI DUP2 SLOAD DUP11 DUP3 ADD MSTORE SWAP1 DUP5 ADD SWAP1 DUP9 ADD PUSH2 0x20D2 JUMP JUMPDEST POP POP DUP4 DUP9 ADD SWAP6 POP JUMPDEST POP SWAP4 SWAP12 SWAP11 POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND DUP3 MSTORE DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x80 PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH2 0x2137 SWAP1 DUP4 ADD DUP5 PUSH2 0x2014 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 DUP5 DUP3 ADD SWAP1 PUSH1 0x40 DUP6 ADD SWAP1 DUP5 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x2179 JUMPI DUP4 MLOAD DUP4 MSTORE SWAP3 DUP5 ADD SWAP3 SWAP2 DUP5 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x215D JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x10FE PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x2014 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x32 SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x40 DUP3 ADD MSTORE PUSH18 0x31B2B4BB32B91034B6B83632B6B2B73A32B9 PUSH1 0x71 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP2 DUP2 ADD MSTORE PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x31 SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E736665722063616C6C6572206973206E6F74206F PUSH1 0x40 DUP3 ADD MSTORE PUSH17 0x1DDB995C881B9BDC88185C1C1C9BDD9959 PUSH1 0x7A SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x2283 JUMPI PUSH2 0x2283 PUSH2 0x2368 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x2297 JUMPI PUSH2 0x2297 PUSH2 0x237E JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 NOT DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x22B6 JUMPI PUSH2 0x22B6 PUSH2 0x2368 JUMP JUMPDEST POP MUL SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x22CD JUMPI PUSH2 0x22CD PUSH2 0x2368 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x22ED JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x22D5 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0xF73 JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x2312 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x2333 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x234D JUMPI PUSH2 0x234D PUSH2 0x2368 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x2363 JUMPI PUSH2 0x2363 PUSH2 0x237E JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x31 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0xB19 JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 LOG1 0xBE 0x22 PUSH23 0x78F5CF5AA5DA56E4D38B9BFF69A80503EEFE9929733F3B DIV 0xE2 0x4A PUSH12 0x1664736F6C63430008070033 ",
"sourceMap": "206:2874:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;990:222:4;;;;;;;;;;-1:-1:-1;990:222:4;;;;;:::i;:::-;;:::i;:::-;;;7807:14:13;;7800:22;7782:41;;7770:2;7755:18;990:222:4;;;;;;;;2853:73:12;;;;;;;;;;-1:-1:-1;2853:73:12;;;;;:::i;:::-;;:::i;:::-;;2473:98:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3984:217::-;;;;;;;;;;-1:-1:-1;3984:217:1;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6468:32:13;;;6450:51;;6438:2;6423:18;3984:217:1;6304:203:13;526:28:12;;;;;;;;;;;;;:::i;3522:401:1:-;;;;;;;;;;-1:-1:-1;3522:401:1;;;;;:::i;:::-;;:::i;352:33:12:-;;;;;;;;;;;;;;;;;;;15411:25:13;;;15399:2;15384:18;352:33:12;15265:177:13;1615:111:4;;;;;;;;;;-1:-1:-1;1702:10:4;:17;1615:111;;425:32:12;;;;;;;;;;;;;;;;4711:330:1;;;;;;;;;;-1:-1:-1;4711:330:1;;;;;:::i;:::-;;:::i;1291:253:4:-;;;;;;;;;;-1:-1:-1;1291:253:4;;;;;:::i;:::-;;:::i;2932:145:12:-;;;:::i;5107:179:1:-;;;;;;;;;;-1:-1:-1;5107:179:1;;;;;:::i;:::-;;:::i;1363:348:12:-;;;;;;;;;;-1:-1:-1;1363:348:12;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2287:80::-;;;;;;;;;;-1:-1:-1;2287:80:12;;;;;:::i;:::-;;:::i;1798:230:4:-;;;;;;;;;;-1:-1:-1;1798:230:4;;;;;:::i;:::-;;:::i;493:28:12:-;;;;;;;;;;-1:-1:-1;493:28:12;;;;;;;;;;;2621:98;;;;;;;;;;-1:-1:-1;2621:98:12;;;;;:::i;:::-;;:::i;462:26::-;;;;;;;;;;-1:-1:-1;462:26:12;;;;;;;;2176:235:1;;;;;;;;;;-1:-1:-1;2176:235:1;;;;;:::i;:::-;;:::i;1914:205::-;;;;;;;;;;-1:-1:-1;1914:205:1;;;;;:::i;:::-;;:::i;1668:101:0:-;;;;;;;;;;;;;:::i;2373:116:12:-;;;;;;;;;;-1:-1:-1;2373:116:12;;;;;:::i;:::-;;:::i;1036:85:0:-;;;;;;;;;;-1:-1:-1;1108:6:0;;-1:-1:-1;;;;;1108:6:0;1036:85;;2635:102:1;;;;;;;;;;;;;:::i;924:433:12:-;;;;;;:::i;:::-;;:::i;4268:153:1:-;;;;;;;;;;-1:-1:-1;4268:153:1;;;;;:::i;:::-;;:::i;2216:65:12:-;;;;;;;;;;;;;:::i;5352:320:1:-;;;;;;;;;;-1:-1:-1;5352:320:1;;;;;:::i;:::-;;:::i;310:37:12:-;;;;;;;;;;;;;:::i;1717:493::-;;;;;;;;;;-1:-1:-1;1717:493:12;;;;;:::i;:::-;;:::i;390:30::-;;;;;;;;;;;;;;;;2725:122;;;;;;;;;;-1:-1:-1;2725:122:12;;;;;:::i;:::-;;:::i;4487:162:1:-;;;;;;;;;;-1:-1:-1;4487:162:1;;;;;:::i;:::-;-1:-1:-1;;;;;4607:25:1;;;4584:4;4607:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4487:162;2495:120:12;;;;;;;;;;-1:-1:-1;2495:120:12;;;;;:::i;:::-;;:::i;1918:198:0:-;;;;;;;;;;-1:-1:-1;1918:198:0;;;;;:::i;:::-;;:::i;990:222:4:-;1092:4;-1:-1:-1;;;;;;1115:50:4;;-1:-1:-1;;;1115:50:4;;:90;;;1169:36;1193:11;1169:23;:36::i;:::-;1108:97;990:222;-1:-1:-1;;990:222:4:o;2853:73:12:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;;;;;;;;;2905:6:12::1;:15:::0;;-1:-1:-1;;2905:15:12::1;::::0;::::1;;::::0;;;::::1;::::0;;2853:73::o;2473:98:1:-;2527:13;2559:5;2552:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2473:98;:::o;3984:217::-;4060:7;7232:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7232:16:1;4079:73;;;;-1:-1:-1;;;4079:73:1;;12634:2:13;4079:73:1;;;12616:21:13;12673:2;12653:18;;;12646:30;12712:34;12692:18;;;12685:62;-1:-1:-1;;;12763:18:13;;;12756:42;12815:19;;4079:73:1;12432:408:13;4079:73:1;-1:-1:-1;4170:24:1;;;;:15;:24;;;;;;-1:-1:-1;;;;;4170:24:1;;3984:217::o;526:28:12:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3522:401:1:-;3602:13;3618:23;3633:7;3618:14;:23::i;:::-;3602:39;;3665:5;-1:-1:-1;;;;;3659:11:1;:2;-1:-1:-1;;;;;3659:11:1;;;3651:57;;;;-1:-1:-1;;;3651:57:1;;14234:2:13;3651:57:1;;;14216:21:13;14273:2;14253:18;;;14246:30;14312:34;14292:18;;;14285:62;-1:-1:-1;;;14363:18:13;;;14356:31;14404:19;;3651:57:1;14032:397:13;3651:57:1;719:10:8;-1:-1:-1;;;;;3740:21:1;;;;:62;;-1:-1:-1;3765:37:1;3782:5;719:10:8;4487:162:1;:::i;3765:37::-;3719:165;;;;-1:-1:-1;;;3719:165:1;;11027:2:13;3719:165:1;;;11009:21:13;11066:2;11046:18;;;11039:30;11105:34;11085:18;;;11078:62;11176:26;11156:18;;;11149:54;11220:19;;3719:165:1;10825:420:13;3719:165:1;3895:21;3904:2;3908:7;3895:8;:21::i;:::-;3592:331;3522:401;;:::o;4711:330::-;4900:41;719:10:8;4933:7:1;4900:18;:41::i;:::-;4892:103;;;;-1:-1:-1;;;4892:103:1;;;;;;;:::i;:::-;5006:28;5016:4;5022:2;5026:7;5006:9;:28::i;1291:253:4:-;1388:7;1423:23;1440:5;1423:16;:23::i;:::-;1415:5;:31;1407:87;;;;-1:-1:-1;;;1407:87:4;;8260:2:13;1407:87:4;;;8242:21:13;8299:2;8279:18;;;8272:30;8338:34;8318:18;;;8311:62;-1:-1:-1;;;8389:18:13;;;8382:41;8440:19;;1407:87:4;8058:407:13;1407:87:4;-1:-1:-1;;;;;;1511:19:4;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1291:253::o;2932:145:12:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;2985:7:12::1;3006;1108:6:0::0;;-1:-1:-1;;;;;1108:6:0;;1036:85;3006:7:12::1;-1:-1:-1::0;;;;;2998:21:12::1;3027;2998:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2984:69;;;3068:2;3060:11;;;::::0;::::1;;2977:100;2932:145::o:0;5107:179:1:-;5240:39;5257:4;5263:2;5267:7;5240:39;;;;;;;;;;;;:16;:39::i;1363:348:12:-;1438:16;1466:23;1492:17;1502:6;1492:9;:17::i;:::-;1466:43;;1516:25;1558:15;1544:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1544:30:12;;1516:58;;1586:9;1581:103;1601:15;1597:1;:19;1581:103;;;1646:30;1666:6;1674:1;1646:19;:30::i;:::-;1632:8;1641:1;1632:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;1618:3;;;;:::i;:::-;;;;1581:103;;;-1:-1:-1;1697:8:12;1363:348;-1:-1:-1;;;1363:348:12:o;2287:80::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;2346:4:12::1;:15:::0;2287:80::o;1798:230:4:-;1873:7;1908:30;1702:10;:17;;1615:111;1908:30;1900:5;:38;1892:95;;;;-1:-1:-1;;;1892:95:4;;15054:2:13;1892:95:4;;;15036:21:13;15093:2;15073:18;;;15066:30;15132:34;15112:18;;;15105:62;-1:-1:-1;;;15183:18:13;;;15176:42;15235:19;;1892:95:4;14852:408:13;1892:95:4;2004:10;2015:5;2004:17;;;;;;;;:::i;:::-;;;;;;;;;1997:24;;1798:230;;;:::o;2621:98:12:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;2692:21:12;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;2621:98:::0;:::o;2176:235:1:-;2248:7;2283:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2283:16:1;2317:19;2309:73;;;;-1:-1:-1;;;2309:73:1;;11863:2:13;2309:73:1;;;11845:21:13;11902:2;11882:18;;;11875:30;11941:34;11921:18;;;11914:62;-1:-1:-1;;;11992:18:13;;;11985:39;12041:19;;2309:73:1;11661:405:13;1914:205:1;1986:7;-1:-1:-1;;;;;2013:19:1;;2005:74;;;;-1:-1:-1;;;2005:74:1;;11452:2:13;2005:74:1;;;11434:21:13;11491:2;11471:18;;;11464:30;11530:34;11510:18;;;11503:62;-1:-1:-1;;;11581:18:13;;;11574:40;11631:19;;2005:74:1;11250:406:13;2005:74:1;-1:-1:-1;;;;;;2096:16:1;;;;;:9;:16;;;;;;;1914:205::o;1668:101:0:-;1108:6;;-1:-1:-1;;;;;1108:6:0;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;2373:116:12:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;2450:13:12::1;:33:::0;2373:116::o;2635:102:1:-;2691:13;2723:7;2716:14;;;;;:::i;924:433:12:-;981:14;998:13;1702:10:4;:17;;1615:111;998:13:12;1027:6;;981:30;;-1:-1:-1;1027:6:12;;1026:7;1018:16;;;;;;1063:1;1049:11;:15;1041:24;;;;;;1095:13;;1080:11;:28;;1072:37;;;;;;1148:9;;1124:20;1133:11;1124:6;:20;:::i;:::-;:33;;1116:42;;;;;;1108:6:0;;-1:-1:-1;;;;;1108:6:0;1171:10:12;:21;1167:84;;1231:11;1224:4;;:18;;;;:::i;:::-;1211:9;:31;;1203:40;;;;;;1276:1;1259:93;1284:11;1279:1;:16;1259:93;;1311:33;1321:10;1333;1342:1;1333:6;:10;:::i;:::-;1311:9;:33::i;:::-;1297:3;;;;:::i;:::-;;;;1259:93;;4268:153:1;4362:52;719:10:8;4395:8:1;4405;4362:18;:52::i;2216:65:12:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;2260:8:12::1;:15:::0;;-1:-1:-1;;2260:15:12::1;;;::::0;;2216:65::o;5352:320:1:-;5521:41;719:10:8;5554:7:1;5521:18;:41::i;:::-;5513:103;;;;-1:-1:-1;;;5513:103:1;;;;;;;:::i;:::-;5626:39;5640:4;5646:2;5650:7;5659:5;5626:13;:39::i;:::-;5352:320;;;;:::o;310:37:12:-;;;;;;;:::i;1717:493::-;7209:4:1;7232:16;;;:7;:16;;;;;;1815:13:12;;-1:-1:-1;;;;;7232:16:1;1840:97:12;;;;-1:-1:-1;;;1840:97:12;;13818:2:13;1840:97:12;;;13800:21:13;13857:2;13837:18;;;13830:30;13896:34;13876:18;;;13869:62;-1:-1:-1;;;13947:18:13;;;13940:45;14002:19;;1840:97:12;13616:411:13;1840:97:12;1949:8;;;;;;;1946:62;;1986:14;1979:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1717:493;;;:::o;1946:62::-;2016:28;2047:10;:8;:10::i;:::-;2016:41;;2102:1;2077:14;2071:28;:32;:133;;;;;;;;;;;;;;;;;2139:14;2155:18;:7;:16;:18::i;:::-;2175:13;2122:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2071:133;2064:140;1717:493;-1:-1:-1;;;1717:493:12:o;2725:122::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;2808:33:12;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;2495:120::-:0;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;2577:32:12;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;1918:198:0:-:0;1108:6;;-1:-1:-1;;;;;1108:6:0;719:10:8;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2006:22:0;::::1;1998:73;;;::::0;-1:-1:-1;;;1998:73:0;;9091:2:13;1998:73:0::1;::::0;::::1;9073:21:13::0;9130:2;9110:18;;;9103:30;9169:34;9149:18;;;9142:62;-1:-1:-1;;;9220:18:13;;;9213:36;9266:19;;1998:73:0::1;8889:402:13::0;1998:73:0::1;2081:28;2100:8;2081:18;:28::i;1555:300:1:-:0;1657:4;-1:-1:-1;;;;;;1692:40:1;;-1:-1:-1;;;1692:40:1;;:104;;-1:-1:-1;;;;;;;1748:48:1;;-1:-1:-1;;;1748:48:1;1692:104;:156;;;-1:-1:-1;;;;;;;;;;937:40:10;;;1812:36:1;829:155:10;10995:171:1;11069:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11069:29:1;-1:-1:-1;;;;;11069:29:1;;;;;;;;:24;;11122:23;11069:24;11122:14;:23::i;:::-;-1:-1:-1;;;;;11113:46:1;;;;;;;;;;;10995:171;;:::o;7427:344::-;7520:4;7232:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7232:16:1;7536:73;;;;-1:-1:-1;;;7536:73:1;;10614:2:13;7536:73:1;;;10596:21:13;10653:2;10633:18;;;10626:30;10692:34;10672:18;;;10665:62;-1:-1:-1;;;10743:18:13;;;10736:42;10795:19;;7536:73:1;10412:408:13;7536:73:1;7619:13;7635:23;7650:7;7635:14;:23::i;:::-;7619:39;;7687:5;-1:-1:-1;;;;;7676:16:1;:7;-1:-1:-1;;;;;7676:16:1;;:51;;;;7720:7;-1:-1:-1;;;;;7696:31:1;:20;7708:7;7696:11;:20::i;:::-;-1:-1:-1;;;;;7696:31:1;;7676:51;:87;;;-1:-1:-1;;;;;;4607:25:1;;;4584:4;4607:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7731:32;7668:96;7427:344;-1:-1:-1;;;;7427:344:1:o;10324:560::-;10478:4;-1:-1:-1;;;;;10451:31:1;:23;10466:7;10451:14;:23::i;:::-;-1:-1:-1;;;;;10451:31:1;;10443:85;;;;-1:-1:-1;;;10443:85:1;;13408:2:13;10443:85:1;;;13390:21:13;13447:2;13427:18;;;13420:30;13486:34;13466:18;;;13459:62;-1:-1:-1;;;13537:18:13;;;13530:39;13586:19;;10443:85:1;13206:405:13;10443:85:1;-1:-1:-1;;;;;10546:16:1;;10538:65;;;;-1:-1:-1;;;10538:65:1;;9855:2:13;10538:65:1;;;9837:21:13;9894:2;9874:18;;;9867:30;9933:34;9913:18;;;9906:62;-1:-1:-1;;;9984:18:13;;;9977:34;10028:19;;10538:65:1;9653:400:13;10538:65:1;10614:39;10635:4;10641:2;10645:7;10614:20;:39::i;:::-;10715:29;10732:1;10736:7;10715:8;:29::i;:::-;-1:-1:-1;;;;;10755:15:1;;;;;;:9;:15;;;;;:20;;10774:1;;10755:15;:20;;10774:1;;10755:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10785:13:1;;;;;;:9;:13;;;;;:18;;10802:1;;10785:13;:18;;10802:1;;10785:18;:::i;:::-;;;;-1:-1:-1;;10813:16:1;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10813:21:1;-1:-1:-1;;;;;10813:21:1;;;;;;;;;10850:27;;10813:16;;10850:27;;;;;;;10324:560;;;:::o;2270:187:0:-;2362:6;;;-1:-1:-1;;;;;2378:17:0;;;-1:-1:-1;;;;;;2378:17:0;;;;;;;2410:40;;2362:6;;;2378:17;2362:6;;2410:40;;2343:16;;2410:40;2333:124;2270:187;:::o;8101:108:1:-;8176:26;8186:2;8190:7;8176:26;;;;;;;;;;;;:9;:26::i;11301:307::-;11451:8;-1:-1:-1;;;;;11442:17:1;:5;-1:-1:-1;;;;;11442:17:1;;;11434:55;;;;-1:-1:-1;;;11434:55:1;;10260:2:13;11434:55:1;;;10242:21:13;10299:2;10279:18;;;10272:30;10338:27;10318:18;;;10311:55;10383:18;;11434:55:1;10058:349:13;11434:55:1;-1:-1:-1;;;;;11499:25:1;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;11499:46:1;;;;;;;;;;11560:41;;7782::13;;;11560::1;;7755:18:13;11560:41:1;;;;;;;11301:307;;;:::o;6534:::-;6685:28;6695:4;6701:2;6705:7;6685:9;:28::i;:::-;6731:48;6754:4;6760:2;6764:7;6773:5;6731:22;:48::i;:::-;6723:111;;;;-1:-1:-1;;;6723:111:1;;;;;;;:::i;816:102:12:-;876:13;905:7;898:14;;;;;:::i;328:703:9:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:9;;;;;;;;;;;;-1:-1:-1;;;627:10:9;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:9;;-1:-1:-1;773:2:9;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:9;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:9;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;902:56:9;;;;;;;;-1:-1:-1;972:11:9;981:2;972:11;;:::i;:::-;;;844:150;;2624:572:4;-1:-1:-1;;;;;2823:18:4;;2819:183;;2857:40;2889:7;4005:10;:17;;3978:24;;;;:15;:24;;;;;:44;;;4032:24;;;;;;;;;;;;3902:161;2857:40;2819:183;;;2926:2;-1:-1:-1;;;;;2918:10:4;:4;-1:-1:-1;;;;;2918:10:4;;2914:88;;2944:47;2977:4;2983:7;2944:32;:47::i;:::-;-1:-1:-1;;;;;3015:16:4;;3011:179;;3047:45;3084:7;3047:36;:45::i;3011:179::-;3119:4;-1:-1:-1;;;;;3113:10:4;:2;-1:-1:-1;;;;;3113:10:4;;3109:81;;3139:40;3167:2;3171:7;3139:27;:40::i;8430:311:1:-;8555:18;8561:2;8565:7;8555:5;:18::i;:::-;8604:54;8635:1;8639:2;8643:7;8652:5;8604:22;:54::i;:::-;8583:151;;;;-1:-1:-1;;;8583:151:1;;;;;;;:::i;12161:778::-;12311:4;-1:-1:-1;;;;;12331:13:1;;1087:20:7;1133:8;12327:606:1;;12366:72;;-1:-1:-1;;;12366:72:1;;-1:-1:-1;;;;;12366:36:1;;;;;:72;;719:10:8;;12417:4:1;;12423:7;;12432:5;;12366:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12366:72:1;;;;;;;;-1:-1:-1;;12366:72:1;;;;;;;;;;;;:::i;:::-;;;12362:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12605:13:1;;12601:266;;12647:60;;-1:-1:-1;;;12647:60:1;;;;;;;:::i;12601:266::-;12819:6;12813:13;12804:6;12800:2;12796:15;12789:38;12362:519;-1:-1:-1;;;;;;12488:51:1;-1:-1:-1;;;12488:51:1;;-1:-1:-1;12481:58:1;;12327:606;-1:-1:-1;12918:4:1;12161:778;;;;;;:::o;4680:970:4:-;4942:22;4992:1;4967:22;4984:4;4967:16;:22::i;:::-;:26;;;;:::i;:::-;5003:18;5024:26;;;:17;:26;;;;;;4942:51;;-1:-1:-1;5154:28:4;;;5150:323;;-1:-1:-1;;;;;5220:18:4;;5198:19;5220:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5269:30;;;;;;:44;;;5385:30;;:17;:30;;;;;:43;;;5150:323;-1:-1:-1;5566:26:4;;;;:17;:26;;;;;;;;5559:33;;;-1:-1:-1;;;;;5609:18:4;;;;;:12;:18;;;;;:34;;;;;;;5602:41;4680:970::o;5938:1061::-;6212:10;:17;6187:22;;6212:21;;6232:1;;6212:21;:::i;:::-;6243:18;6264:24;;;:15;:24;;;;;;6632:10;:26;;6187:46;;-1:-1:-1;6264:24:4;;6187:46;;6632:26;;;;;;:::i;:::-;;;;;;;;;6610:48;;6694:11;6669:10;6680;6669:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6773:28;;;:15;:28;;;;;;;:41;;;6942:24;;;;;6935:31;6976:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6009:990;;;5938:1061;:::o;3490:217::-;3574:14;3591:20;3608:2;3591:16;:20::i;:::-;-1:-1:-1;;;;;3621:16:4;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3665:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3490:217:4:o;9063:372:1:-;-1:-1:-1;;;;;9142:16:1;;9134:61;;;;-1:-1:-1;;;9134:61:1;;12273:2:13;9134:61:1;;;12255:21:13;;;12292:18;;;12285:30;12351:34;12331:18;;;12324:62;12403:18;;9134:61:1;12071:356:13;9134:61:1;7209:4;7232:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7232:16:1;:30;9205:58;;;;-1:-1:-1;;;9205:58:1;;9498:2:13;9205:58:1;;;9480:21:13;9537:2;9517:18;;;9510:30;9576;9556:18;;;9549:58;9624:18;;9205:58:1;9296:352:13;9205:58:1;9274:45;9303:1;9307:2;9311:7;9274:20;:45::i;:::-;-1:-1:-1;;;;;9330:13:1;;;;;;:9;:13;;;;;:18;;9347:1;;9330:13;:18;;9347:1;;9330:18;:::i;:::-;;;;-1:-1:-1;;9358:16:1;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9358:21:1;-1:-1:-1;;;;;9358:21:1;;;;;;;;9395:33;;9358:16;;;9395:33;;9358:16;;9395:33;9063:372;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:13;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:13;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:13;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:13;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:13:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:13;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:13;;4115:180;-1:-1:-1;4115:180:13:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:13;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:13:o;4562:1527::-;4786:3;4824:6;4818:13;4850:4;4863:51;4907:6;4902:3;4897:2;4889:6;4885:15;4863:51;:::i;:::-;4977:13;;4936:16;;;;4999:55;4977:13;4936:16;5021:15;;;4999:55;:::i;:::-;5143:13;;5076:20;;;5116:1;;5203;5225:18;;;;5278;;;;5305:93;;5383:4;5373:8;5369:19;5357:31;;5305:93;5446:2;5436:8;5433:16;5413:18;5410:40;5407:167;;;-1:-1:-1;;;5473:33:13;;5529:4;5526:1;5519:15;5559:4;5480:3;5547:17;5407:167;5590:18;5617:110;;;;5741:1;5736:328;;;;5583:481;;5617:110;-1:-1:-1;;5652:24:13;;5638:39;;5697:20;;;;-1:-1:-1;5617:110:13;;5736:328;15520:1;15513:14;;;15557:4;15544:18;;5831:1;5845:169;5859:8;5856:1;5853:15;5845:169;;;5941:14;;5926:13;;;5919:37;5984:16;;;;5876:10;;5845:169;;;5849:3;;6045:8;6038:5;6034:20;6027:27;;5583:481;-1:-1:-1;6080:3:13;;4562:1527;-1:-1:-1;;;;;;;;;;;4562:1527:13:o;6512:488::-;-1:-1:-1;;;;;6781:15:13;;;6763:34;;6833:15;;6828:2;6813:18;;6806:43;6880:2;6865:18;;6858:34;;;6928:3;6923:2;6908:18;;6901:31;;;6706:4;;6949:45;;6974:19;;6966:6;6949:45;:::i;:::-;6941:53;6512:488;-1:-1:-1;;;;;;6512:488:13:o;7005:632::-;7176:2;7228:21;;;7298:13;;7201:18;;;7320:22;;;7147:4;;7176:2;7399:15;;;;7373:2;7358:18;;;7147:4;7442:169;7456:6;7453:1;7450:13;7442:169;;;7517:13;;7505:26;;7586:15;;;;7551:12;;;;7478:1;7471:9;7442:169;;;-1:-1:-1;7628:3:13;;7005:632;-1:-1:-1;;;;;;7005:632:13:o;7834:219::-;7983:2;7972:9;7965:21;7946:4;8003:44;8043:2;8032:9;8028:18;8020:6;8003:44;:::i;8470:414::-;8672:2;8654:21;;;8711:2;8691:18;;;8684:30;8750:34;8745:2;8730:18;;8723:62;-1:-1:-1;;;8816:2:13;8801:18;;8794:48;8874:3;8859:19;;8470:414::o;12845:356::-;13047:2;13029:21;;;13066:18;;;13059:30;13125:34;13120:2;13105:18;;13098:62;13192:2;13177:18;;12845:356::o;14434:413::-;14636:2;14618:21;;;14675:2;14655:18;;;14648:30;14714:34;14709:2;14694:18;;14687:62;-1:-1:-1;;;14780:2:13;14765:18;;14758:47;14837:3;14822:19;;14434:413::o;15573:128::-;15613:3;15644:1;15640:6;15637:1;15634:13;15631:39;;;15650:18;;:::i;:::-;-1:-1:-1;15686:9:13;;15573:128::o;15706:120::-;15746:1;15772;15762:35;;15777:18;;:::i;:::-;-1:-1:-1;15811:9:13;;15706:120::o;15831:168::-;15871:7;15937:1;15933;15929:6;15925:14;15922:1;15919:21;15914:1;15907:9;15900:17;15896:45;15893:71;;;15944:18;;:::i;:::-;-1:-1:-1;15984:9:13;;15831:168::o;16004:125::-;16044:4;16072:1;16069;16066:8;16063:34;;;16077:18;;:::i;:::-;-1:-1:-1;16114:9:13;;16004:125::o;16134:258::-;16206:1;16216:113;16230:6;16227:1;16224:13;16216:113;;;16306:11;;;16300:18;16287:11;;;16280:39;16252:2;16245:10;16216:113;;;16347:6;16344:1;16341:13;16338:48;;;-1:-1:-1;;16382:1:13;16364:16;;16357:27;16134:258::o;16397:380::-;16476:1;16472:12;;;;16519;;;16540:61;;16594:4;16586:6;16582:17;16572:27;;16540:61;16647:2;16639:6;16636:14;16616:18;16613:38;16610:161;;;16693:10;16688:3;16684:20;16681:1;16674:31;16728:4;16725:1;16718:15;16756:4;16753:1;16746:15;16610:161;;16397:380;;;:::o;16782:135::-;16821:3;-1:-1:-1;;16842:17:13;;16839:43;;;16862:18;;:::i;:::-;-1:-1:-1;16909:1:13;16898:13;;16782:135::o;16922:112::-;16954:1;16980;16970:35;;16985:18;;:::i;:::-;-1:-1:-1;17019:9:13;;16922:112::o;17039:127::-;17100:10;17095:3;17091:20;17088:1;17081:31;17131:4;17128:1;17121:15;17155:4;17152:1;17145:15;17171:127;17232:10;17227:3;17223:20;17220:1;17213:31;17263:4;17260:1;17253:15;17287:4;17284:1;17277:15;17303:127;17364:10;17359:3;17355:20;17352:1;17345:31;17395:4;17392:1;17385:15;17419:4;17416:1;17409:15;17435:127;17496:10;17491:3;17487:20;17484:1;17477:31;17527:4;17524:1;17517:15;17551:4;17548:1;17541:15;17567:127;17628:10;17623:3;17619:20;17616:1;17609:31;17659:4;17656:1;17649:15;17683:4;17680:1;17673:15;17699:131;-1:-1:-1;;;;;;17773:32:13;;17763:43;;17753:71;;17820:1;17817;17810:12"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "1850000",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"approve(address,uint256)": "infinite",
"balanceOf(address)": "2679",
"baseExtension()": "infinite",
"cost()": "2385",
"getApproved(uint256)": "4805",
"isApprovedForAll(address,address)": "infinite",
"maxMintAmount()": "2429",
"maxSupply()": "2339",
"mint(uint256)": "infinite",
"name()": "infinite",
"notRevealedUri()": "infinite",
"owner()": "2398",
"ownerOf(uint256)": "2624",
"pause(bool)": "26738",
"paused()": "2345",
"renounceOwnership()": "28229",
"reveal()": "26553",
"revealed()": "2421",
"safeTransferFrom(address,address,uint256)": "infinite",
"safeTransferFrom(address,address,uint256,bytes)": "infinite",
"setApprovalForAll(address,bool)": "infinite",
"setBaseExtension(string)": "infinite",
"setBaseURI(string)": "infinite",
"setCost(uint256)": "24531",
"setNotRevealedURI(string)": "infinite",
"setmaxMintAmount(uint256)": "24509",
"supportsInterface(bytes4)": "infinite",
"symbol()": "infinite",
"tokenByIndex(uint256)": "6804",
"tokenOfOwnerByIndex(address,uint256)": "4998",
"tokenURI(uint256)": "infinite",
"totalSupply()": "2404",
"transferFrom(address,address,uint256)": "infinite",
"transferOwnership(address)": "28444",
"walletOfOwner(address)": "infinite",
"withdraw()": "infinite"
},
"internal": {
"_baseURI()": "infinite"
}
},
"methodIdentifiers": {
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"baseExtension()": "c6682862",
"cost()": "13faede6",
"getApproved(uint256)": "081812fc",
"isApprovedForAll(address,address)": "e985e9c5",
"maxMintAmount()": "239c70ae",
"maxSupply()": "d5abeb01",
"mint(uint256)": "a0712d68",
"name()": "06fdde03",
"notRevealedUri()": "081c8c44",
"owner()": "8da5cb5b",
"ownerOf(uint256)": "6352211e",
"pause(bool)": "02329a29",
"paused()": "5c975abb",
"renounceOwnership()": "715018a6",
"reveal()": "a475b5dd",
"revealed()": "51830227",
"safeTransferFrom(address,address,uint256)": "42842e0e",
"safeTransferFrom(address,address,uint256,bytes)": "b88d4fde",
"setApprovalForAll(address,bool)": "a22cb465",
"setBaseExtension(string)": "da3ef23f",
"setBaseURI(string)": "55f804b3",
"setCost(uint256)": "44a0d68a",
"setNotRevealedURI(string)": "f2c4ce1e",
"setmaxMintAmount(uint256)": "7f00c7a6",
"supportsInterface(bytes4)": "01ffc9a7",
"symbol()": "95d89b41",
"tokenByIndex(uint256)": "4f6ccce7",
"tokenOfOwnerByIndex(address,uint256)": "2f745c59",
"tokenURI(uint256)": "c87b56dd",
"totalSupply()": "18160ddd",
"transferFrom(address,address,uint256)": "23b872dd",
"transferOwnership(address)": "f2fde38b",
"walletOfOwner(address)": "438b6300",
"withdraw()": "3ccfd60b"
}
},
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "_name",
"type": "string"
},
{
"internalType": "string",
"name": "_symbol",
"type": "string"
},
{
"internalType": "string",
"name": "_initBaseURI",
"type": "string"
},
{
"internalType": "string",
"name": "_initNotRevealedUri",
"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": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"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": [],
"name": "baseExtension",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "cost",
"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": "maxMintAmount",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "maxSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_mintAmount",
"type": "uint256"
}
],
"name": "mint",
"outputs": [],
"stateMutability": "payable",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "notRevealedUri",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"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": "bool",
"name": "_state",
"type": "bool"
}
],
"name": "pause",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "paused",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "reveal",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "revealed",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "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": "string",
"name": "_newBaseExtension",
"type": "string"
}
],
"name": "setBaseExtension",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "_newBaseURI",
"type": "string"
}
],
"name": "setBaseURI",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_newCost",
"type": "uint256"
}
],
"name": "setCost",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "_notRevealedURI",
"type": "string"
}
],
"name": "setNotRevealedURI",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_newmaxMintAmount",
"type": "uint256"
}
],
"name": "setmaxMintAmount",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "index",
"type": "uint256"
}
],
"name": "tokenByIndex",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "uint256",
"name": "index",
"type": "uint256"
}
],
"name": "tokenOfOwnerByIndex",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "tokenURI",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_owner",
"type": "address"
}
],
"name": "walletOfOwner",
"outputs": [
{
"internalType": "uint256[]",
"name": "",
"type": "uint256[]"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "withdraw",
"outputs": [],
"stateMutability": "payable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "_name",
"type": "string"
},
{
"internalType": "string",
"name": "_symbol",
"type": "string"
},
{
"internalType": "string",
"name": "_initBaseURI",
"type": "string"
},
{
"internalType": "string",
"name": "_initNotRevealedUri",
"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": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"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": [],
"name": "baseExtension",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "cost",
"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": "maxMintAmount",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "maxSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_mintAmount",
"type": "uint256"
}
],
"name": "mint",
"outputs": [],
"stateMutability": "payable",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "notRevealedUri",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"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": "bool",
"name": "_state",
"type": "bool"
}
],
"name": "pause",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "paused",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "reveal",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "revealed",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "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": "string",
"name": "_newBaseExtension",
"type": "string"
}
],
"name": "setBaseExtension",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "_newBaseURI",
"type": "string"
}
],
"name": "setBaseURI",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_newCost",
"type": "uint256"
}
],
"name": "setCost",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "_notRevealedURI",
"type": "string"
}
],
"name": "setNotRevealedURI",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_newmaxMintAmount",
"type": "uint256"
}
],
"name": "setmaxMintAmount",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "index",
"type": "uint256"
}
],
"name": "tokenByIndex",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "uint256",
"name": "index",
"type": "uint256"
}
],
"name": "tokenOfOwnerByIndex",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "tokenURI",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_owner",
"type": "address"
}
],
"name": "walletOfOwner",
"outputs": [
{
"internalType": "uint256[]",
"name": "",
"type": "uint256[]"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "withdraw",
"outputs": [],
"stateMutability": "payable",
"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}."
},
"owner()": {
"details": "Returns the address of the current owner."
},
"ownerOf(uint256)": {
"details": "See {IERC721-ownerOf}."
},
"renounceOwnership()": {
"details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner."
},
"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}."
},
"tokenByIndex(uint256)": {
"details": "See {IERC721Enumerable-tokenByIndex}."
},
"tokenOfOwnerByIndex(address,uint256)": {
"details": "See {IERC721Enumerable-tokenOfOwnerByIndex}."
},
"tokenURI(uint256)": {
"details": "See {IERC721Metadata-tokenURI}."
},
"totalSupply()": {
"details": "See {IERC721Enumerable-totalSupply}."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC721-transferFrom}."
},
"transferOwnership(address)": {
"details": "Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/GndxBadge.sol": "GndxBadge"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": []
},
"sources": {
"@openzeppelin/contracts/access/Ownable.sol": {
"keccak256": "0xa1b27b3f44ff825974e5268e8f63ad3b03add5b464880d860fbb8cae043e17f7",
"license": "MIT",
"urls": [
"bzz-raw://ad0fb4425453220f15bdb8c4e009052839804bb725797b6d8c02ee2271bc3c23",
"dweb:/ipfs/QmPtjdMxzEifPUEUa6cKX1yfTWjaZV6QtdwMdN6bEL9FBM"
]
},
"@openzeppelin/contracts/token/ERC721/ERC721.sol": {
"keccak256": "0x1ba5cf152c15dc0c785310feeb61e1f74387fc7bdc2aba5d90733f791606d4bf",
"license": "MIT",
"urls": [
"bzz-raw://38db14c62d6431df042a7ca07fd021ea52ccdbd03f0be2b5c4ab034a56126d38",
"dweb:/ipfs/QmbCHTCLP6bz8omQXrP8VuxFGdK9Hh3jqfrSTr38WNpTk4"
]
},
"@openzeppelin/contracts/token/ERC721/IERC721.sol": {
"keccak256": "0x872ba21af7c1f0ae04a715beca31e8fcac764d6c8762940b0fe1bfb6ed8e86f4",
"license": "MIT",
"urls": [
"bzz-raw://497017741d74878b56a67ad51e98061bd9ec0e6e4fdbfef0e2ab51523f4c16de",
"dweb:/ipfs/QmWfkpRHksy8jFywqYxdmMqdkQ1hxrGTPoNBXbZ48zTvyv"
]
},
"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol": {
"keccak256": "0x483b106386dd309f168672928252a19f30c30efb4d17d4b8e2b0f587ca784a11",
"license": "MIT",
"urls": [
"bzz-raw://189a39d066c6886ddbe86c79bb36d6cbe66e98bc6a94956e28f5503dae4ad406",
"dweb:/ipfs/QmT3s3PwCdXqHLJk26kcnedrRGTC9T18z52i9Be7PV9ppc"
]
},
"@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol": {
"keccak256": "0x683793c78df81fc9033105d5c5e7173a3a295f94b55435129a385514213637e2",
"license": "MIT",
"urls": [
"bzz-raw://02d4dc9c619d54284ee14261f5f2a3edc03ad654f8b6fe16f257789d5d58475b",
"dweb:/ipfs/QmTuGzVWvDKSmNAXUNKRFWTDv86QBpwmi2vbCCqjctvc8h"
]
},
"@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol": {
"keccak256": "0x42c041cfe2fba75264baa64c4c3c55b128e6667b54331df87028cc4da0a9606e",
"license": "MIT",
"urls": [
"bzz-raw://ed91e7e168e51bce00363a70677e368528179e6f29105b1b3d38f8948e670a01",
"dweb:/ipfs/QmPr58W3vqF9EMQyh5yzweRW5M1jtpS4UEjSxreYqMWtzA"
]
},
"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol": {
"keccak256": "0x6052c25b1021f2b0e733fb52ca11948cb2f08cb66076397507243a6e8a8d7776",
"license": "MIT",
"urls": [
"bzz-raw://32ac4547a76b28021a007853958284aa8a15a64f1aeec83cb797b7fd60a46b56",
"dweb:/ipfs/QmTJWQF8j586oaYNpdZv55xnzyHVQc68XN4eBNeiLbKX8d"
]
},
"@openzeppelin/contracts/utils/Address.sol": {
"keccak256": "0x9944d1038f27dcebff810d7ba16b3b8058b967173d76874fb72dd7cd84129656",
"license": "MIT",
"urls": [
"bzz-raw://7c455cda07c5f8978c57e545ddde382552d3a55b6e3682e0f809ed07ec7defbe",
"dweb:/ipfs/QmXkoKbxyMcMzjYdkXi5t4t3ZjBQ81pj7AaanS9jhePxyt"
]
},
"@openzeppelin/contracts/utils/Context.sol": {
"keccak256": "0x7736c187e6f1358c1ea9350a2a21aa8528dec1c2f43b374a9067465a3a51f5d3",
"license": "MIT",
"urls": [
"bzz-raw://4fd625dca17657403af518cc6c8ab5c54c58898cf6e912ca2e1b0f3194ad0405",
"dweb:/ipfs/QmQVv7YeeKmaS11bg7YDTeeGDk6i7sV8LMMfohaLM4SiRu"
]
},
"@openzeppelin/contracts/utils/Strings.sol": {
"keccak256": "0x5fa25f305839292fab713256214f2868e0257d29826b14282bbd7f1e34f5af38",
"license": "MIT",
"urls": [
"bzz-raw://b3de4074848249e00e1336db857e3fa8f78b4fe11d4a887f71050c22023b2132",
"dweb:/ipfs/QmbL6k2zFGndQPNPG7vCDivtjKam3quJSrEbRuVsNo4hBw"
]
},
"@openzeppelin/contracts/utils/introspection/ERC165.sol": {
"keccak256": "0x905cd0ecd91d1de79a4679d745b79cf852ca8ccda5d25d1c49c6bd17a5edc0cf",
"license": "MIT",
"urls": [
"bzz-raw://8dd1601fcd370546d8c06ea1902d7e7364fc490fbf0ebc3004230ef1f5db473c",
"dweb:/ipfs/Qmb8zbC3TjWFtcuyP3KEEaegMkPcfeKAcPrwzvkAoMR3cZ"
]
},
"@openzeppelin/contracts/utils/introspection/IERC165.sol": {
"keccak256": "0x6aa521718bf139b44ce56f194f6aea1d590cacef995b5a84703fb1579fa49be9",
"license": "MIT",
"urls": [
"bzz-raw://100f8d367b5e94eb9cb991914f1de133cf272654c0708faa893bbc17a5b35b93",
"dweb:/ipfs/QmZeBojmgXq821dL1TJKFb58B1FogM9jL3u7hXQ8hTEBKT"
]
},
"contracts/GndxBadge.sol": {
"keccak256": "0xce8e96993117bd4337dceb6d39a2c7b46775c2c84c40b68caec5f9a210a50ad9",
"license": "MIT",
"urls": [
"bzz-raw://417e94b26518325c451020409607a4e8050858612506c44e810090fa4b097386",
"dweb:/ipfs/QmUhHuaUy49DAyzJ92T58LhghGuWZCsZJZzh3i93TQbsgR"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
pragma solidity >=0.7.0 <0.9.0;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract GndxBadge is ERC721Enumerable, Ownable {
using Strings for uint256;
string baseURI;
string public baseExtension = ".json";
uint256 public cost = 0.001 ether;
uint256 public maxSupply = 300;
uint256 public maxMintAmount = 1;
bool public paused = false;
bool public revealed = false;
string public notRevealedUri;
constructor(
string memory _name,
string memory _symbol,
string memory _initBaseURI,
string memory _initNotRevealedUri
) ERC721(_name, _symbol) {
setBaseURI(_initBaseURI);
setNotRevealedURI(_initNotRevealedUri);
}
function _baseURI() internal view virtual override returns (string memory) {
return baseURI;
}
function mint(uint256 _mintAmount) public payable {
uint256 supply = totalSupply();
require(!paused);
require(_mintAmount > 0);
require(_mintAmount <= maxMintAmount);
require(supply + _mintAmount <= maxSupply);
if (msg.sender != owner()) {
require(msg.value >= cost * _mintAmount);
}
for (uint256 i = 1; i <= _mintAmount; i++) {
_safeMint(msg.sender, supply + i);
}
}
function walletOfOwner(address _owner)
public
view
returns (uint256[] memory)
{
uint256 ownerTokenCount = balanceOf(_owner);
uint256[] memory tokenIds = new uint256[](ownerTokenCount);
for (uint256 i; i < ownerTokenCount; i++) {
tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
}
return tokenIds;
}
function tokenURI(uint256 tokenId)
public
view
virtual
override
returns (string memory)
{
require(
_exists(tokenId),
"ERC721Metadata: URI query for nonexistent token"
);
if(revealed == false) {
return notRevealedUri;
}
string memory currentBaseURI = _baseURI();
return bytes(currentBaseURI).length > 0
? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
: "";
}
function reveal() public onlyOwner {
revealed = true;
}
function setCost(uint256 _newCost) public onlyOwner {
cost = _newCost;
}
function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
maxMintAmount = _newmaxMintAmount;
}
function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
notRevealedUri = _notRevealedURI;
}
function setBaseURI(string memory _newBaseURI) public onlyOwner {
baseURI = _newBaseURI;
}
function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
baseExtension = _newBaseExtension;
}
function pause(bool _state) public onlyOwner {
paused = _state;
}
function withdraw() public payable onlyOwner {
(bool os, ) = payable(owner()).call{value: address(this).balance}("");
require(os);
}
}
// Right click on the script name and hit "Run" to execute
(async () => {
try {
console.log('Running deployWithEthers script...')
const contractName = 'Storage' // Change this for other contract
const constructorArgs = [] // Put constructor args (if any) here for your contract
// Note that the script needs the ABI which is generated from the compilation artifact.
// Make sure contract is compiled and artifacts are generated
const artifactsPath = `browser/contracts/artifacts/${contractName}.json` // Change this for different path
const metadata = JSON.parse(await remix.call('fileManager', 'getFile', artifactsPath))
// 'web3Provider' is a remix global variable object
const signer = (new ethers.providers.Web3Provider(web3Provider)).getSigner()
let factory = new ethers.ContractFactory(metadata.abi, metadata.data.bytecode.object, signer);
let contract = await factory.deploy(...constructorArgs);
console.log('Contract Address: ', contract.address);
// The contract is NOT deployed yet; we must wait until it is mined
await contract.deployed()
console.log('Deployment successful.')
} catch (e) {
console.log(e.message)
}
})()
// Right click on the script name and hit "Run" to execute
(async () => {
try {
console.log('Running deployWithWeb3 script...')
const contractName = 'Storage' // Change this for other contract
const constructorArgs = [] // Put constructor args (if any) here for your contract
// Note that the script needs the ABI which is generated from the compilation artifact.
// Make sure contract is compiled and artifacts are generated
const artifactsPath = `browser/contracts/artifacts/${contractName}.json` // Change this for different path
const metadata = JSON.parse(await remix.call('fileManager', 'getFile', artifactsPath))
const accounts = await web3.eth.getAccounts()
let contract = new web3.eth.Contract(metadata.abi)
contract = contract.deploy({
data: metadata.data.bytecode.object,
arguments: constructorArgs
})
const newContractInstance = await contract.send({
from: accounts[0],
gas: 1500000,
gasPrice: '30000000000'
})
console.log('Contract deployed at address: ', newContractInstance.options.address)
} catch (e) {
console.log(e.message)
}
})()
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
import "remix_tests.sol"; // this import is automatically injected by Remix.
import "../contracts/3_Ballot.sol";
contract BallotTest {
bytes32[] proposalNames;
Ballot ballotToTest;
function beforeAll () public {
proposalNames.push(bytes32("candidate1"));
ballotToTest = new Ballot(proposalNames);
}
function checkWinningProposal () public {
ballotToTest.vote(0);
Assert.equal(ballotToTest.winningProposal(), uint(0), "proposal at index 0 should be the winning proposal");
Assert.equal(ballotToTest.winnerName(), bytes32("candidate1"), "candidate1 should be the winner name");
}
function checkWinninProposalWithReturnValue () public view returns (bool) {
return ballotToTest.winningProposal() == 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment