Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save prince1456/67796ab243de6488c9076a492cff1ce5 to your computer and use it in GitHub Desktop.
Save prince1456/67796ab243de6488c9076a492cff1ce5 to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.7+commit.e28d00a7.js&optimize=true&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./WithLimitedSupply.sol";
/// @author 1001.digital
/// @title Randomly assign tokenIDs from a given set of tokens.
abstract contract RandomlyAssigned is WithLimitedSupply {
// Used for random index assignment
mapping(uint256 => uint256) private tokenMatrix;
// The initial token ID
uint256 private startFrom;
/// Instanciate the contract
/// @param _totalSupply how many tokens this collection should hold
/// @param _startFrom the tokenID with which to start counting
constructor (uint256 _totalSupply, uint256 _startFrom)
WithLimitedSupply(_totalSupply)
{
startFrom = _startFrom;
}
/// Get the next token ID
/// @dev Randomly gets a new token ID and keeps track of the ones that are still available.
/// @return the next token ID
function nextToken() internal override ensureAvailability returns (uint256) {
uint256 maxIndex = totalSupply() - tokenCount();
uint256 random = uint256(keccak256(
abi.encodePacked(
msg.sender,
block.coinbase,
block.difficulty,
block.gaslimit,
block.timestamp
)
)) % maxIndex;
uint256 value = 0;
if (tokenMatrix[random] == 0) {
// If this matrix position is empty, set the value to the generated random number.
value = random;
} else {
// Otherwise, use the previously stored number from the matrix.
value = tokenMatrix[random];
}
// If the last available tokenID is still unused...
if (tokenMatrix[maxIndex - 1] == 0) {
// ...store that ID in the current matrix position.
tokenMatrix[random] = maxIndex - 1;
} else {
// ...otherwise copy over the stored number to the current matrix position.
tokenMatrix[random] = tokenMatrix[maxIndex - 1];
}
// Increment counts
super.nextToken();
return value + startFrom;
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/utils/Counters.sol";
/// @author 1001.digital
/// @title A token tracker that limits the token supply and increments token IDs on each new mint.
abstract contract WithLimitedSupply {
using Counters for Counters.Counter;
// Keeps track of how many we have minted
Counters.Counter private _tokenCount;
/// @dev The maximum count of tokens this token tracker will hold.
uint256 private _totalSupply;
/// Instanciate the contract
/// @param totalSupply_ how many tokens this collection should hold
constructor (uint256 totalSupply_) {
_totalSupply = totalSupply_;
}
/// @dev Get the max Supply
/// @return the maximum token count
function totalSupply() public view returns (uint256) {
return _totalSupply;
}
/// @dev Get the current token count
/// @return the created token count
function tokenCount() public view returns (uint256) {
return _tokenCount.current();
}
/// @dev Check whether tokens are still available
/// @return the available token count
function availableTokenCount() public view returns (uint256) {
return totalSupply() - tokenCount();
}
/// @dev Increment the token count and fetch the latest count
/// @return the next token id
function nextToken() internal virtual ensureAvailability returns (uint256) {
uint256 token = _tokenCount.current();
_tokenCount.increment();
return token;
}
/// @dev Check whether another token is still available
modifier ensureAvailability() {
require(availableTokenCount() > 0, "No more tokens available");
_;
}
/// @param amount Check whether number of tokens are still available
/// @dev Check whether tokens are still available
modifier ensureAvailabilityFor(uint256 amount) {
require(availableTokenCount() >= amount, "Requested number of tokens not available");
_;
}
}
// 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/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);
}
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {
"availableTokenCount()": "e14ca353",
"tokenCount()": "9f181b5e",
"totalSupply()": "18160ddd"
}
},
"abi": [
{
"inputs": [],
"name": "availableTokenCount",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "tokenCount",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"name": "availableTokenCount",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "tokenCount",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"author": "1001.digital",
"kind": "dev",
"methods": {
"availableTokenCount()": {
"details": "Check whether tokens are still available",
"returns": {
"_0": "the available token count"
}
},
"constructor": {
"params": {
"_startFrom": "the tokenID with which to start counting",
"_totalSupply": "how many tokens this collection should hold"
}
},
"tokenCount()": {
"details": "Get the current token count",
"returns": {
"_0": "the created token count"
}
},
"totalSupply()": {
"details": "Get the max Supply",
"returns": {
"_0": "the maximum token count"
}
}
},
"title": "Randomly assign tokenIDs from a given set of tokens.",
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {
"constructor": {
"notice": "Instanciate the contract"
}
},
"version": 1
}
},
"settings": {
"compilationTarget": {
".deps/npm/@1001-digital/erc721-extensions/contracts/RandomlyAssigned.sol": "RandomlyAssigned"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
".deps/npm/@1001-digital/erc721-extensions/contracts/RandomlyAssigned.sol": {
"keccak256": "0xa387b163c456d30b602e38663858a1fcae4f22ab845ccac7ba611f8f9c9231bc",
"license": "MIT",
"urls": [
"bzz-raw://6a3b27e94eeaa6491ced30b2dfe91686cc63cc15de78cf37c521874f836db77d",
"dweb:/ipfs/QmZEtYAyEEL6LniYMv7K6e51i2jTMawvMFyVzf1Wny3vN8"
]
},
".deps/npm/@1001-digital/erc721-extensions/contracts/WithLimitedSupply.sol": {
"keccak256": "0x742b192187c96155a49a0a466b93f077e2d012b85dd956782ea51d69164c22ef",
"license": "MIT",
"urls": [
"bzz-raw://d843c1d146a507f0d7284d368bf8f49bf3628bf4dd01d9cb7c1b0a4ca5caac06",
"dweb:/ipfs/QmasZV8Mc87VwbBf1oQErVeoYHkDA463EprMYsop7rB1LT"
]
},
"@openzeppelin/contracts/utils/Counters.sol": {
"keccak256": "0x74f630d2664c1581a1cbd0730d4ba119b3a184ef90c65f3a934be4d16d0e58a1",
"license": "MIT",
"urls": [
"bzz-raw://cadad0b133129f946a53e0f61fa387803ccdc010d9c794da0738bb7fc5001b66",
"dweb:/ipfs/QmQdTBpUT9WgDuCm7womDFiAnksepw6Fmi5Z5vv1H17Qr1"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./WithLimitedSupply.sol";
/// @author 1001.digital
/// @title Randomly assign tokenIDs from a given set of tokens.
abstract contract RandomlyAssigned is WithLimitedSupply {
// Used for random index assignment
mapping(uint256 => uint256) private tokenMatrix;
// The initial token ID
uint256 private startFrom;
/// Instanciate the contract
/// @param _totalSupply how many tokens this collection should hold
/// @param _startFrom the tokenID with which to start counting
constructor (uint256 _totalSupply, uint256 _startFrom)
WithLimitedSupply(_totalSupply)
{
startFrom = _startFrom;
}
/// Get the next token ID
/// @dev Randomly gets a new token ID and keeps track of the ones that are still available.
/// @return the next token ID
function nextToken() internal override ensureAvailability returns (uint256) {
uint256 maxIndex = totalSupply() - tokenCount();
uint256 random = uint256(keccak256(
abi.encodePacked(
msg.sender,
block.coinbase,
block.difficulty,
block.gaslimit,
block.timestamp
)
)) % maxIndex;
uint256 value = 0;
if (tokenMatrix[random] == 0) {
// If this matrix position is empty, set the value to the generated random number.
value = random;
} else {
// Otherwise, use the previously stored number from the matrix.
value = tokenMatrix[random];
}
// If the last available tokenID is still unused...
if (tokenMatrix[maxIndex - 1] == 0) {
// ...store that ID in the current matrix position.
tokenMatrix[random] = maxIndex - 1;
} else {
// ...otherwise copy over the stored number to the current matrix position.
tokenMatrix[random] = tokenMatrix[maxIndex - 1];
}
// Increment counts
super.nextToken();
return value + startFrom;
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/utils/Counters.sol";
/// @author 1001.digital
/// @title A token tracker that limits the token supply and increments token IDs on each new mint.
abstract contract WithLimitedSupply {
using Counters for Counters.Counter;
// Keeps track of how many we have minted
Counters.Counter private _tokenCount;
/// @dev The maximum count of tokens this token tracker will hold.
uint256 private _totalSupply;
/// Instanciate the contract
/// @param totalSupply_ how many tokens this collection should hold
constructor (uint256 totalSupply_) {
_totalSupply = totalSupply_;
}
/// @dev Get the max Supply
/// @return the maximum token count
function totalSupply() public view returns (uint256) {
return _totalSupply;
}
/// @dev Get the current token count
/// @return the created token count
function tokenCount() public view returns (uint256) {
return _tokenCount.current();
}
/// @dev Check whether tokens are still available
/// @return the available token count
function availableTokenCount() public view returns (uint256) {
return totalSupply() - tokenCount();
}
/// @dev Increment the token count and fetch the latest count
/// @return the next token id
function nextToken() internal virtual ensureAvailability returns (uint256) {
uint256 token = _tokenCount.current();
_tokenCount.increment();
return token;
}
/// @dev Check whether another token is still available
modifier ensureAvailability() {
require(availableTokenCount() > 0, "No more tokens available");
_;
}
/// @param amount Check whether number of tokens are still available
/// @dev Check whether tokens are still available
modifier ensureAvailabilityFor(uint256 amount) {
require(availableTokenCount() >= amount, "Requested number of tokens not available");
_;
}
}
// 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.1 (token/ERC721/extensions/ERC721URIStorage.sol)
pragma solidity ^0.8.0;
import "../ERC721.sol";
/**
* @dev ERC721 token with storage based token URI management.
*/
abstract contract ERC721URIStorage is ERC721 {
using Strings for uint256;
// Optional mapping for token URIs
mapping(uint256 => string) private _tokenURIs;
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token");
string memory _tokenURI = _tokenURIs[tokenId];
string memory base = _baseURI();
// If there is no base URI, return the token URI.
if (bytes(base).length == 0) {
return _tokenURI;
}
// If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
if (bytes(_tokenURI).length > 0) {
return string(abi.encodePacked(base, _tokenURI));
}
return super.tokenURI(tokenId);
}
/**
* @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
_tokenURIs[tokenId] = _tokenURI;
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual override {
super._burn(tokenId);
if (bytes(_tokenURIs[tokenId]).length != 0) {
delete _tokenURIs[tokenId];
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.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/Counters.sol)
pragma solidity ^0.8.0;
/**
* @title Counters
* @author Matt Condon (@shrugs)
* @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
* of elements in a mapping, issuing ERC721 ids, or counting request ids.
*
* Include with `using Counters for Counters.Counter;`
*/
library Counters {
struct Counter {
// This variable should never be directly accessed by users of the library: interactions must be restricted to
// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
// this feature: see https://github.com/ethereum/solidity/issues/4637
uint256 _value; // default: 0
}
function current(Counter storage counter) internal view returns (uint256) {
return counter._value;
}
function increment(Counter storage counter) internal {
unchecked {
counter._value += 1;
}
}
function decrement(Counter storage counter) internal {
uint256 value = counter._value;
require(value > 0, "Counter: decrement overflow");
unchecked {
counter._value = value - 1;
}
}
function reset(Counter storage counter) internal {
counter._value = 0;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.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);
}
}
// SPDX-License-Identifier: MIT
pragma solidity >= 0.4.22 <0.9.0;
library console {
address constant CONSOLE_ADDRESS = address(0x000000000000000000636F6e736F6c652e6c6f67);
function _sendLogPayload(bytes memory payload) private view {
uint256 payloadLength = payload.length;
address consoleAddress = CONSOLE_ADDRESS;
assembly {
let payloadStart := add(payload, 32)
let r := staticcall(gas(), consoleAddress, payloadStart, payloadLength, 0, 0)
}
}
function log() internal view {
_sendLogPayload(abi.encodeWithSignature("log()"));
}
function logInt(int p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(int)", p0));
}
function logUint(uint p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint)", p0));
}
function logString(string memory p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string)", p0));
}
function logBool(bool p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool)", p0));
}
function logAddress(address p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address)", p0));
}
function logBytes(bytes memory p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes)", p0));
}
function logBytes1(bytes1 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes1)", p0));
}
function logBytes2(bytes2 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes2)", p0));
}
function logBytes3(bytes3 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes3)", p0));
}
function logBytes4(bytes4 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes4)", p0));
}
function logBytes5(bytes5 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes5)", p0));
}
function logBytes6(bytes6 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes6)", p0));
}
function logBytes7(bytes7 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes7)", p0));
}
function logBytes8(bytes8 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes8)", p0));
}
function logBytes9(bytes9 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes9)", p0));
}
function logBytes10(bytes10 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes10)", p0));
}
function logBytes11(bytes11 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes11)", p0));
}
function logBytes12(bytes12 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes12)", p0));
}
function logBytes13(bytes13 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes13)", p0));
}
function logBytes14(bytes14 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes14)", p0));
}
function logBytes15(bytes15 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes15)", p0));
}
function logBytes16(bytes16 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes16)", p0));
}
function logBytes17(bytes17 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes17)", p0));
}
function logBytes18(bytes18 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes18)", p0));
}
function logBytes19(bytes19 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes19)", p0));
}
function logBytes20(bytes20 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes20)", p0));
}
function logBytes21(bytes21 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes21)", p0));
}
function logBytes22(bytes22 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes22)", p0));
}
function logBytes23(bytes23 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes23)", p0));
}
function logBytes24(bytes24 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes24)", p0));
}
function logBytes25(bytes25 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes25)", p0));
}
function logBytes26(bytes26 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes26)", p0));
}
function logBytes27(bytes27 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes27)", p0));
}
function logBytes28(bytes28 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes28)", p0));
}
function logBytes29(bytes29 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes29)", p0));
}
function logBytes30(bytes30 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes30)", p0));
}
function logBytes31(bytes31 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes31)", p0));
}
function logBytes32(bytes32 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes32)", p0));
}
function log(uint p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint)", p0));
}
function log(string memory p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string)", p0));
}
function log(bool p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool)", p0));
}
function log(address p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address)", p0));
}
function log(uint p0, uint p1) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,uint)", p0, p1));
}
function log(uint p0, string memory p1) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,string)", p0, p1));
}
function log(uint p0, bool p1) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,bool)", p0, p1));
}
function log(uint p0, address p1) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,address)", p0, p1));
}
function log(string memory p0, uint p1) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,uint)", p0, p1));
}
function log(string memory p0, string memory p1) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,string)", p0, p1));
}
function log(string memory p0, bool p1) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,bool)", p0, p1));
}
function log(string memory p0, address p1) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,address)", p0, p1));
}
function log(bool p0, uint p1) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint)", p0, p1));
}
function log(bool p0, string memory p1) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,string)", p0, p1));
}
function log(bool p0, bool p1) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool)", p0, p1));
}
function log(bool p0, address p1) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,address)", p0, p1));
}
function log(address p0, uint p1) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,uint)", p0, p1));
}
function log(address p0, string memory p1) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,string)", p0, p1));
}
function log(address p0, bool p1) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,bool)", p0, p1));
}
function log(address p0, address p1) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,address)", p0, p1));
}
function log(uint p0, uint p1, uint p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint)", p0, p1, p2));
}
function log(uint p0, uint p1, string memory p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,uint,string)", p0, p1, p2));
}
function log(uint p0, uint p1, bool p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool)", p0, p1, p2));
}
function log(uint p0, uint p1, address p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,uint,address)", p0, p1, p2));
}
function log(uint p0, string memory p1, uint p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,string,uint)", p0, p1, p2));
}
function log(uint p0, string memory p1, string memory p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,string,string)", p0, p1, p2));
}
function log(uint p0, string memory p1, bool p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,string,bool)", p0, p1, p2));
}
function log(uint p0, string memory p1, address p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,string,address)", p0, p1, p2));
}
function log(uint p0, bool p1, uint p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint)", p0, p1, p2));
}
function log(uint p0, bool p1, string memory p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,bool,string)", p0, p1, p2));
}
function log(uint p0, bool p1, bool p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool)", p0, p1, p2));
}
function log(uint p0, bool p1, address p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,bool,address)", p0, p1, p2));
}
function log(uint p0, address p1, uint p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,address,uint)", p0, p1, p2));
}
function log(uint p0, address p1, string memory p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,address,string)", p0, p1, p2));
}
function log(uint p0, address p1, bool p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,address,bool)", p0, p1, p2));
}
function log(uint p0, address p1, address p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,address,address)", p0, p1, p2));
}
function log(string memory p0, uint p1, uint p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,uint,uint)", p0, p1, p2));
}
function log(string memory p0, uint p1, string memory p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,uint,string)", p0, p1, p2));
}
function log(string memory p0, uint p1, bool p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,uint,bool)", p0, p1, p2));
}
function log(string memory p0, uint p1, address p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,uint,address)", p0, p1, p2));
}
function log(string memory p0, string memory p1, uint p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,string,uint)", p0, p1, p2));
}
function log(string memory p0, string memory p1, string memory p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,string,string)", p0, p1, p2));
}
function log(string memory p0, string memory p1, bool p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,string,bool)", p0, p1, p2));
}
function log(string memory p0, string memory p1, address p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,string,address)", p0, p1, p2));
}
function log(string memory p0, bool p1, uint p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint)", p0, p1, p2));
}
function log(string memory p0, bool p1, string memory p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,string)", p0, p1, p2));
}
function log(string memory p0, bool p1, bool p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool)", p0, p1, p2));
}
function log(string memory p0, bool p1, address p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,address)", p0, p1, p2));
}
function log(string memory p0, address p1, uint p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,address,uint)", p0, p1, p2));
}
function log(string memory p0, address p1, string memory p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,address,string)", p0, p1, p2));
}
function log(string memory p0, address p1, bool p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,address,bool)", p0, p1, p2));
}
function log(string memory p0, address p1, address p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,address,address)", p0, p1, p2));
}
function log(bool p0, uint p1, uint p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint)", p0, p1, p2));
}
function log(bool p0, uint p1, string memory p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint,string)", p0, p1, p2));
}
function log(bool p0, uint p1, bool p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool)", p0, p1, p2));
}
function log(bool p0, uint p1, address p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint,address)", p0, p1, p2));
}
function log(bool p0, string memory p1, uint p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint)", p0, p1, p2));
}
function log(bool p0, string memory p1, string memory p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,string)", p0, p1, p2));
}
function log(bool p0, string memory p1, bool p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool)", p0, p1, p2));
}
function log(bool p0, string memory p1, address p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,address)", p0, p1, p2));
}
function log(bool p0, bool p1, uint p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint)", p0, p1, p2));
}
function log(bool p0, bool p1, string memory p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string)", p0, p1, p2));
}
function log(bool p0, bool p1, bool p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool)", p0, p1, p2));
}
function log(bool p0, bool p1, address p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address)", p0, p1, p2));
}
function log(bool p0, address p1, uint p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint)", p0, p1, p2));
}
function log(bool p0, address p1, string memory p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,string)", p0, p1, p2));
}
function log(bool p0, address p1, bool p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool)", p0, p1, p2));
}
function log(bool p0, address p1, address p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,address)", p0, p1, p2));
}
function log(address p0, uint p1, uint p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,uint,uint)", p0, p1, p2));
}
function log(address p0, uint p1, string memory p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,uint,string)", p0, p1, p2));
}
function log(address p0, uint p1, bool p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,uint,bool)", p0, p1, p2));
}
function log(address p0, uint p1, address p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,uint,address)", p0, p1, p2));
}
function log(address p0, string memory p1, uint p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,string,uint)", p0, p1, p2));
}
function log(address p0, string memory p1, string memory p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,string,string)", p0, p1, p2));
}
function log(address p0, string memory p1, bool p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,string,bool)", p0, p1, p2));
}
function log(address p0, string memory p1, address p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,string,address)", p0, p1, p2));
}
function log(address p0, bool p1, uint p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint)", p0, p1, p2));
}
function log(address p0, bool p1, string memory p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,string)", p0, p1, p2));
}
function log(address p0, bool p1, bool p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool)", p0, p1, p2));
}
function log(address p0, bool p1, address p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,address)", p0, p1, p2));
}
function log(address p0, address p1, uint p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,address,uint)", p0, p1, p2));
}
function log(address p0, address p1, string memory p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,address,string)", p0, p1, p2));
}
function log(address p0, address p1, bool p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,address,bool)", p0, p1, p2));
}
function log(address p0, address p1, address p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,address,address)", p0, p1, p2));
}
function log(uint p0, uint p1, uint p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint,uint)", p0, p1, p2, p3));
}
function log(uint p0, uint p1, uint p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint,string)", p0, p1, p2, p3));
}
function log(uint p0, uint p1, uint p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint,bool)", p0, p1, p2, p3));
}
function log(uint p0, uint p1, uint p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint,address)", p0, p1, p2, p3));
}
function log(uint p0, uint p1, string memory p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,uint,string,uint)", p0, p1, p2, p3));
}
function log(uint p0, uint p1, string memory p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,uint,string,string)", p0, p1, p2, p3));
}
function log(uint p0, uint p1, string memory p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,uint,string,bool)", p0, p1, p2, p3));
}
function log(uint p0, uint p1, string memory p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,uint,string,address)", p0, p1, p2, p3));
}
function log(uint p0, uint p1, bool p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool,uint)", p0, p1, p2, p3));
}
function log(uint p0, uint p1, bool p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool,string)", p0, p1, p2, p3));
}
function log(uint p0, uint p1, bool p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool,bool)", p0, p1, p2, p3));
}
function log(uint p0, uint p1, bool p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool,address)", p0, p1, p2, p3));
}
function log(uint p0, uint p1, address p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,uint,address,uint)", p0, p1, p2, p3));
}
function log(uint p0, uint p1, address p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,uint,address,string)", p0, p1, p2, p3));
}
function log(uint p0, uint p1, address p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,uint,address,bool)", p0, p1, p2, p3));
}
function log(uint p0, uint p1, address p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,uint,address,address)", p0, p1, p2, p3));
}
function log(uint p0, string memory p1, uint p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,string,uint,uint)", p0, p1, p2, p3));
}
function log(uint p0, string memory p1, uint p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,string,uint,string)", p0, p1, p2, p3));
}
function log(uint p0, string memory p1, uint p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,string,uint,bool)", p0, p1, p2, p3));
}
function log(uint p0, string memory p1, uint p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,string,uint,address)", p0, p1, p2, p3));
}
function log(uint p0, string memory p1, string memory p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,string,string,uint)", p0, p1, p2, p3));
}
function log(uint p0, string memory p1, string memory p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,string,string,string)", p0, p1, p2, p3));
}
function log(uint p0, string memory p1, string memory p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,string,string,bool)", p0, p1, p2, p3));
}
function log(uint p0, string memory p1, string memory p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,string,string,address)", p0, p1, p2, p3));
}
function log(uint p0, string memory p1, bool p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,string,bool,uint)", p0, p1, p2, p3));
}
function log(uint p0, string memory p1, bool p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,string,bool,string)", p0, p1, p2, p3));
}
function log(uint p0, string memory p1, bool p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,string,bool,bool)", p0, p1, p2, p3));
}
function log(uint p0, string memory p1, bool p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,string,bool,address)", p0, p1, p2, p3));
}
function log(uint p0, string memory p1, address p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,string,address,uint)", p0, p1, p2, p3));
}
function log(uint p0, string memory p1, address p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,string,address,string)", p0, p1, p2, p3));
}
function log(uint p0, string memory p1, address p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,string,address,bool)", p0, p1, p2, p3));
}
function log(uint p0, string memory p1, address p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,string,address,address)", p0, p1, p2, p3));
}
function log(uint p0, bool p1, uint p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint,uint)", p0, p1, p2, p3));
}
function log(uint p0, bool p1, uint p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint,string)", p0, p1, p2, p3));
}
function log(uint p0, bool p1, uint p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint,bool)", p0, p1, p2, p3));
}
function log(uint p0, bool p1, uint p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint,address)", p0, p1, p2, p3));
}
function log(uint p0, bool p1, string memory p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,bool,string,uint)", p0, p1, p2, p3));
}
function log(uint p0, bool p1, string memory p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,bool,string,string)", p0, p1, p2, p3));
}
function log(uint p0, bool p1, string memory p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,bool,string,bool)", p0, p1, p2, p3));
}
function log(uint p0, bool p1, string memory p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,bool,string,address)", p0, p1, p2, p3));
}
function log(uint p0, bool p1, bool p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool,uint)", p0, p1, p2, p3));
}
function log(uint p0, bool p1, bool p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool,string)", p0, p1, p2, p3));
}
function log(uint p0, bool p1, bool p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool,bool)", p0, p1, p2, p3));
}
function log(uint p0, bool p1, bool p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool,address)", p0, p1, p2, p3));
}
function log(uint p0, bool p1, address p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,bool,address,uint)", p0, p1, p2, p3));
}
function log(uint p0, bool p1, address p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,bool,address,string)", p0, p1, p2, p3));
}
function log(uint p0, bool p1, address p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,bool,address,bool)", p0, p1, p2, p3));
}
function log(uint p0, bool p1, address p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,bool,address,address)", p0, p1, p2, p3));
}
function log(uint p0, address p1, uint p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,address,uint,uint)", p0, p1, p2, p3));
}
function log(uint p0, address p1, uint p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,address,uint,string)", p0, p1, p2, p3));
}
function log(uint p0, address p1, uint p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,address,uint,bool)", p0, p1, p2, p3));
}
function log(uint p0, address p1, uint p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,address,uint,address)", p0, p1, p2, p3));
}
function log(uint p0, address p1, string memory p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,address,string,uint)", p0, p1, p2, p3));
}
function log(uint p0, address p1, string memory p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,address,string,string)", p0, p1, p2, p3));
}
function log(uint p0, address p1, string memory p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,address,string,bool)", p0, p1, p2, p3));
}
function log(uint p0, address p1, string memory p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,address,string,address)", p0, p1, p2, p3));
}
function log(uint p0, address p1, bool p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,address,bool,uint)", p0, p1, p2, p3));
}
function log(uint p0, address p1, bool p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,address,bool,string)", p0, p1, p2, p3));
}
function log(uint p0, address p1, bool p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,address,bool,bool)", p0, p1, p2, p3));
}
function log(uint p0, address p1, bool p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,address,bool,address)", p0, p1, p2, p3));
}
function log(uint p0, address p1, address p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,address,address,uint)", p0, p1, p2, p3));
}
function log(uint p0, address p1, address p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,address,address,string)", p0, p1, p2, p3));
}
function log(uint p0, address p1, address p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,address,address,bool)", p0, p1, p2, p3));
}
function log(uint p0, address p1, address p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint,address,address,address)", p0, p1, p2, p3));
}
function log(string memory p0, uint p1, uint p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,uint,uint,uint)", p0, p1, p2, p3));
}
function log(string memory p0, uint p1, uint p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,uint,uint,string)", p0, p1, p2, p3));
}
function log(string memory p0, uint p1, uint p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,uint,uint,bool)", p0, p1, p2, p3));
}
function log(string memory p0, uint p1, uint p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,uint,uint,address)", p0, p1, p2, p3));
}
function log(string memory p0, uint p1, string memory p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,uint,string,uint)", p0, p1, p2, p3));
}
function log(string memory p0, uint p1, string memory p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,uint,string,string)", p0, p1, p2, p3));
}
function log(string memory p0, uint p1, string memory p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,uint,string,bool)", p0, p1, p2, p3));
}
function log(string memory p0, uint p1, string memory p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,uint,string,address)", p0, p1, p2, p3));
}
function log(string memory p0, uint p1, bool p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,uint,bool,uint)", p0, p1, p2, p3));
}
function log(string memory p0, uint p1, bool p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,uint,bool,string)", p0, p1, p2, p3));
}
function log(string memory p0, uint p1, bool p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,uint,bool,bool)", p0, p1, p2, p3));
}
function log(string memory p0, uint p1, bool p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,uint,bool,address)", p0, p1, p2, p3));
}
function log(string memory p0, uint p1, address p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,uint,address,uint)", p0, p1, p2, p3));
}
function log(string memory p0, uint p1, address p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,uint,address,string)", p0, p1, p2, p3));
}
function log(string memory p0, uint p1, address p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,uint,address,bool)", p0, p1, p2, p3));
}
function log(string memory p0, uint p1, address p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,uint,address,address)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, uint p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,string,uint,uint)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, uint p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,string,uint,string)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, uint p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,string,uint,bool)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, uint p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,string,uint,address)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, string memory p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,string,string,uint)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, string memory p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,string,string,string)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, string memory p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,string,string,bool)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, string memory p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,string,string,address)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, bool p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,uint)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, bool p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,string)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, bool p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,bool)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, bool p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,address)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, address p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,string,address,uint)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, address p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,string,address,string)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, address p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,string,address,bool)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, address p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,string,address,address)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, uint p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint,uint)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, uint p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint,string)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, uint p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint,bool)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, uint p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint,address)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, string memory p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,uint)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, string memory p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,string)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, string memory p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,bool)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, string memory p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,address)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, bool p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,uint)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, bool p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,string)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, bool p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,bool)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, bool p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,address)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, address p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,uint)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, address p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,string)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, address p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,bool)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, address p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,address)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, uint p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,address,uint,uint)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, uint p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,address,uint,string)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, uint p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,address,uint,bool)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, uint p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,address,uint,address)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, string memory p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,address,string,uint)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, string memory p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,address,string,string)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, string memory p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,address,string,bool)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, string memory p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,address,string,address)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, bool p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,uint)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, bool p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,string)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, bool p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,bool)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, bool p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,address)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, address p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,address,address,uint)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, address p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,address,address,string)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, address p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,address,address,bool)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, address p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,address,address,address)", p0, p1, p2, p3));
}
function log(bool p0, uint p1, uint p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint,uint)", p0, p1, p2, p3));
}
function log(bool p0, uint p1, uint p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint,string)", p0, p1, p2, p3));
}
function log(bool p0, uint p1, uint p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint,bool)", p0, p1, p2, p3));
}
function log(bool p0, uint p1, uint p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint,address)", p0, p1, p2, p3));
}
function log(bool p0, uint p1, string memory p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint,string,uint)", p0, p1, p2, p3));
}
function log(bool p0, uint p1, string memory p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint,string,string)", p0, p1, p2, p3));
}
function log(bool p0, uint p1, string memory p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint,string,bool)", p0, p1, p2, p3));
}
function log(bool p0, uint p1, string memory p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint,string,address)", p0, p1, p2, p3));
}
function log(bool p0, uint p1, bool p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool,uint)", p0, p1, p2, p3));
}
function log(bool p0, uint p1, bool p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool,string)", p0, p1, p2, p3));
}
function log(bool p0, uint p1, bool p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool,bool)", p0, p1, p2, p3));
}
function log(bool p0, uint p1, bool p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool,address)", p0, p1, p2, p3));
}
function log(bool p0, uint p1, address p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint,address,uint)", p0, p1, p2, p3));
}
function log(bool p0, uint p1, address p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint,address,string)", p0, p1, p2, p3));
}
function log(bool p0, uint p1, address p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint,address,bool)", p0, p1, p2, p3));
}
function log(bool p0, uint p1, address p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint,address,address)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, uint p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint,uint)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, uint p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint,string)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, uint p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint,bool)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, uint p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint,address)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, string memory p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,uint)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, string memory p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,string)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, string memory p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,bool)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, string memory p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,address)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, bool p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,uint)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, bool p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,string)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, bool p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,bool)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, bool p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,address)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, address p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,uint)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, address p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,string)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, address p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,bool)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, address p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,address)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, uint p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint,uint)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, uint p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint,string)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, uint p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint,bool)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, uint p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint,address)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, string memory p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,uint)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, string memory p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,string)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, string memory p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,bool)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, string memory p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,address)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, bool p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,uint)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, bool p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,string)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, bool p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,bool)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, bool p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,address)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, address p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,uint)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, address p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,string)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, address p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,bool)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, address p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,address)", p0, p1, p2, p3));
}
function log(bool p0, address p1, uint p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint,uint)", p0, p1, p2, p3));
}
function log(bool p0, address p1, uint p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint,string)", p0, p1, p2, p3));
}
function log(bool p0, address p1, uint p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint,bool)", p0, p1, p2, p3));
}
function log(bool p0, address p1, uint p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint,address)", p0, p1, p2, p3));
}
function log(bool p0, address p1, string memory p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,uint)", p0, p1, p2, p3));
}
function log(bool p0, address p1, string memory p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,string)", p0, p1, p2, p3));
}
function log(bool p0, address p1, string memory p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,bool)", p0, p1, p2, p3));
}
function log(bool p0, address p1, string memory p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,address)", p0, p1, p2, p3));
}
function log(bool p0, address p1, bool p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,uint)", p0, p1, p2, p3));
}
function log(bool p0, address p1, bool p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,string)", p0, p1, p2, p3));
}
function log(bool p0, address p1, bool p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,bool)", p0, p1, p2, p3));
}
function log(bool p0, address p1, bool p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,address)", p0, p1, p2, p3));
}
function log(bool p0, address p1, address p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,uint)", p0, p1, p2, p3));
}
function log(bool p0, address p1, address p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,string)", p0, p1, p2, p3));
}
function log(bool p0, address p1, address p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,bool)", p0, p1, p2, p3));
}
function log(bool p0, address p1, address p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,address)", p0, p1, p2, p3));
}
function log(address p0, uint p1, uint p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,uint,uint,uint)", p0, p1, p2, p3));
}
function log(address p0, uint p1, uint p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,uint,uint,string)", p0, p1, p2, p3));
}
function log(address p0, uint p1, uint p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,uint,uint,bool)", p0, p1, p2, p3));
}
function log(address p0, uint p1, uint p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,uint,uint,address)", p0, p1, p2, p3));
}
function log(address p0, uint p1, string memory p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,uint,string,uint)", p0, p1, p2, p3));
}
function log(address p0, uint p1, string memory p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,uint,string,string)", p0, p1, p2, p3));
}
function log(address p0, uint p1, string memory p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,uint,string,bool)", p0, p1, p2, p3));
}
function log(address p0, uint p1, string memory p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,uint,string,address)", p0, p1, p2, p3));
}
function log(address p0, uint p1, bool p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,uint,bool,uint)", p0, p1, p2, p3));
}
function log(address p0, uint p1, bool p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,uint,bool,string)", p0, p1, p2, p3));
}
function log(address p0, uint p1, bool p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,uint,bool,bool)", p0, p1, p2, p3));
}
function log(address p0, uint p1, bool p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,uint,bool,address)", p0, p1, p2, p3));
}
function log(address p0, uint p1, address p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,uint,address,uint)", p0, p1, p2, p3));
}
function log(address p0, uint p1, address p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,uint,address,string)", p0, p1, p2, p3));
}
function log(address p0, uint p1, address p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,uint,address,bool)", p0, p1, p2, p3));
}
function log(address p0, uint p1, address p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,uint,address,address)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, uint p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,string,uint,uint)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, uint p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,string,uint,string)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, uint p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,string,uint,bool)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, uint p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,string,uint,address)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, string memory p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,string,string,uint)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, string memory p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,string,string,string)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, string memory p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,string,string,bool)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, string memory p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,string,string,address)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, bool p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,uint)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, bool p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,string)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, bool p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,bool)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, bool p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,address)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, address p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,string,address,uint)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, address p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,string,address,string)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, address p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,string,address,bool)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, address p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,string,address,address)", p0, p1, p2, p3));
}
function log(address p0, bool p1, uint p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint,uint)", p0, p1, p2, p3));
}
function log(address p0, bool p1, uint p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint,string)", p0, p1, p2, p3));
}
function log(address p0, bool p1, uint p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint,bool)", p0, p1, p2, p3));
}
function log(address p0, bool p1, uint p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint,address)", p0, p1, p2, p3));
}
function log(address p0, bool p1, string memory p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,uint)", p0, p1, p2, p3));
}
function log(address p0, bool p1, string memory p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,string)", p0, p1, p2, p3));
}
function log(address p0, bool p1, string memory p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,bool)", p0, p1, p2, p3));
}
function log(address p0, bool p1, string memory p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,address)", p0, p1, p2, p3));
}
function log(address p0, bool p1, bool p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,uint)", p0, p1, p2, p3));
}
function log(address p0, bool p1, bool p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,string)", p0, p1, p2, p3));
}
function log(address p0, bool p1, bool p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,bool)", p0, p1, p2, p3));
}
function log(address p0, bool p1, bool p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,address)", p0, p1, p2, p3));
}
function log(address p0, bool p1, address p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,uint)", p0, p1, p2, p3));
}
function log(address p0, bool p1, address p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,string)", p0, p1, p2, p3));
}
function log(address p0, bool p1, address p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,bool)", p0, p1, p2, p3));
}
function log(address p0, bool p1, address p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,address)", p0, p1, p2, p3));
}
function log(address p0, address p1, uint p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,address,uint,uint)", p0, p1, p2, p3));
}
function log(address p0, address p1, uint p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,address,uint,string)", p0, p1, p2, p3));
}
function log(address p0, address p1, uint p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,address,uint,bool)", p0, p1, p2, p3));
}
function log(address p0, address p1, uint p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,address,uint,address)", p0, p1, p2, p3));
}
function log(address p0, address p1, string memory p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,address,string,uint)", p0, p1, p2, p3));
}
function log(address p0, address p1, string memory p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,address,string,string)", p0, p1, p2, p3));
}
function log(address p0, address p1, string memory p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,address,string,bool)", p0, p1, p2, p3));
}
function log(address p0, address p1, string memory p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,address,string,address)", p0, p1, p2, p3));
}
function log(address p0, address p1, bool p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,uint)", p0, p1, p2, p3));
}
function log(address p0, address p1, bool p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,string)", p0, p1, p2, p3));
}
function log(address p0, address p1, bool p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,bool)", p0, p1, p2, p3));
}
function log(address p0, address p1, bool p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,address)", p0, p1, p2, p3));
}
function log(address p0, address p1, address p2, uint p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,address,address,uint)", p0, p1, p2, p3));
}
function log(address p0, address p1, address p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,address,address,string)", p0, p1, p2, p3));
}
function log(address p0, address p1, address p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,address,address,bool)", p0, p1, p2, p3));
}
function log(address p0, address p1, address p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,address,address,address)", p0, p1, p2, p3));
}
}
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": {},
"generatedSources": [],
"linkReferences": {},
"object": "60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212201bea2d75f5473b5efb25b166e949643eeb5e5ec84576bb7b61e4fa9be57072d164736f6c63430008070033",
"opcodes": "PUSH1 0x56 PUSH1 0x37 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x2A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SHL 0xEA 0x2D PUSH22 0xF5473B5EFB25B166E949643EEB5E5EC84576BB7B61E4 STATICCALL SWAP12 0xE5 PUSH17 0x72D164736F6C6343000807003300000000 ",
"sourceMap": "5604:7729:0:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;5604:7729:0;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212201bea2d75f5473b5efb25b166e949643eeb5e5ec84576bb7b61e4fa9be57072d164736f6c63430008070033",
"opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SHL 0xEA 0x2D PUSH22 0xF5473B5EFB25B166E949643EEB5E5EC84576BB7B61E4 STATICCALL SWAP12 0xE5 PUSH17 0x72D164736F6C6343000807003300000000 ",
"sourceMap": "5604:7729:0:-:0;;;;;;;;"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "17200",
"executionCost": "103",
"totalCost": "17303"
},
"internal": {
"functionCall(address,bytes memory)": "infinite",
"functionCall(address,bytes memory,string memory)": "infinite",
"functionCallWithValue(address,bytes memory,uint256)": "infinite",
"functionCallWithValue(address,bytes memory,uint256,string memory)": "infinite",
"functionDelegateCall(address,bytes memory)": "infinite",
"functionDelegateCall(address,bytes memory,string memory)": "infinite",
"functionStaticCall(address,bytes memory)": "infinite",
"functionStaticCall(address,bytes memory,string memory)": "infinite",
"isContract(address)": "infinite",
"sendValue(address payable,uint256)": "infinite",
"verifyCallResult(bool,bytes memory,string memory)": "infinite"
}
},
"methodIdentifiers": {}
},
"abi": []
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [],
"devdoc": {
"details": "Collection of functions related to the address type",
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/DegenDogs.sol": "Address"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/DegenDogs.sol": {
"keccak256": "0x7e872bf9a2f0ff9b2ca8a2d26bb35ab71f7d693e9485edad22a0c7762db4f99c",
"license": "MIT",
"urls": [
"bzz-raw://d037f6cc900622e80fe49ceb70a89a021b432f73f2b35854acfd4208984d20d3",
"dweb:/ipfs/QmS6ZdmkH9P8J5wZnpamTYWPntojn476QrkQPKTDjqqoDo"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {}
},
"abi": []
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [],
"devdoc": {
"details": "Provides information about the current execution context, including the sender of the transaction and its data. While these are generally available via msg.sender and msg.data, they should not be accessed in such a direct manner, since when dealing with meta-transactions the account sending and paying for execution may not be the actual sender (as far as an application is concerned). This contract is only required for intermediate, library-like contracts.",
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/DegenDogs.sol": "Context"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/DegenDogs.sol": {
"keccak256": "0x7e872bf9a2f0ff9b2ca8a2d26bb35ab71f7d693e9485edad22a0c7762db4f99c",
"license": "MIT",
"urls": [
"bzz-raw://d037f6cc900622e80fe49ceb70a89a021b432f73f2b35854acfd4208984d20d3",
"dweb:/ipfs/QmS6ZdmkH9P8J5wZnpamTYWPntojn476QrkQPKTDjqqoDo"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_1831": {
"entryPoint": null,
"id": 1831,
"parameterSlots": 3,
"returnSlots": 0
},
"@_245": {
"entryPoint": null,
"id": 245,
"parameterSlots": 0,
"returnSlots": 0
},
"@_866": {
"entryPoint": null,
"id": 866,
"parameterSlots": 2,
"returnSlots": 0
},
"@_beforeTokenTransfer_1633": {
"entryPoint": null,
"id": 1633,
"parameterSlots": 3,
"returnSlots": 0
},
"@_exists_1242": {
"entryPoint": null,
"id": 1242,
"parameterSlots": 1,
"returnSlots": 1
},
"@_mint_1384": {
"entryPoint": 348,
"id": 1384,
"parameterSlots": 2,
"returnSlots": 0
},
"@_msgSender_213": {
"entryPoint": 262,
"id": 213,
"parameterSlots": 0,
"returnSlots": 1
},
"@_transferOwnership_325": {
"entryPoint": 266,
"id": 325,
"parameterSlots": 1,
"returnSlots": 0
},
"@owner_254": {
"entryPoint": null,
"id": 254,
"parameterSlots": 0,
"returnSlots": 1
},
"abi_decode_string_fromMemory": {
"entryPoint": 846,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_string_memory_ptr_fromMemory": {
"entryPoint": 1029,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"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_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 1174,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 1201,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"increment_t_uint256": {
"entryPoint": 1262,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 1292,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 1314,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:3312:1",
"statements": [
{
"nodeType": "YulBlock",
"src": "6:3:1",
"statements": []
},
{
"body": {
"nodeType": "YulBlock",
"src": "78:821:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "127:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "136:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "139:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "129:6:1"
},
"nodeType": "YulFunctionCall",
"src": "129:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "129:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "106:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "114:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "102:3:1"
},
"nodeType": "YulFunctionCall",
"src": "102:17:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "121:3:1"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "98:3:1"
},
"nodeType": "YulFunctionCall",
"src": "98:27:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "91:6:1"
},
"nodeType": "YulFunctionCall",
"src": "91:35:1"
},
"nodeType": "YulIf",
"src": "88:55:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "152:23:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "168:6:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "162:5:1"
},
"nodeType": "YulFunctionCall",
"src": "162:13:1"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "156:2:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "184:28:1",
"value": {
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "202:2:1",
"type": "",
"value": "64"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "206:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "198:3:1"
},
"nodeType": "YulFunctionCall",
"src": "198:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "210:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "194:3:1"
},
"nodeType": "YulFunctionCall",
"src": "194:18:1"
},
"variables": [
{
"name": "_2",
"nodeType": "YulTypedName",
"src": "188:2:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "235:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "237:16:1"
},
"nodeType": "YulFunctionCall",
"src": "237:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "237:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "227:2:1"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "231:2:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "224:2:1"
},
"nodeType": "YulFunctionCall",
"src": "224:10:1"
},
"nodeType": "YulIf",
"src": "221:36:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "266:17:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "280:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "276:3:1"
},
"nodeType": "YulFunctionCall",
"src": "276:7:1"
},
"variables": [
{
"name": "_3",
"nodeType": "YulTypedName",
"src": "270:2:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "292:23:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "312:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "306:5:1"
},
"nodeType": "YulFunctionCall",
"src": "306:9:1"
},
"variables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "296:6:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "324:71:1",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "346:6:1"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "370:2:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "374:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "366:3:1"
},
"nodeType": "YulFunctionCall",
"src": "366:13:1"
},
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "381:2:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "362:3:1"
},
"nodeType": "YulFunctionCall",
"src": "362:22:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "386:2:1",
"type": "",
"value": "63"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "358:3:1"
},
"nodeType": "YulFunctionCall",
"src": "358:31:1"
},
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "391:2:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "354:3:1"
},
"nodeType": "YulFunctionCall",
"src": "354:40:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "342:3:1"
},
"nodeType": "YulFunctionCall",
"src": "342:53:1"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "328:10:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "454:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "456:16:1"
},
"nodeType": "YulFunctionCall",
"src": "456:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "456:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "413:10:1"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "425:2:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "410:2:1"
},
"nodeType": "YulFunctionCall",
"src": "410:18:1"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "433:10:1"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "445:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "430:2:1"
},
"nodeType": "YulFunctionCall",
"src": "430:22:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "407:2:1"
},
"nodeType": "YulFunctionCall",
"src": "407:46:1"
},
"nodeType": "YulIf",
"src": "404:72:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "492:2:1",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "496:10:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "485:6:1"
},
"nodeType": "YulFunctionCall",
"src": "485:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "485:22:1"
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "523:6:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "531:2:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "516:6:1"
},
"nodeType": "YulFunctionCall",
"src": "516:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "516:18:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "543:14:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "553:4:1",
"type": "",
"value": "0x20"
},
"variables": [
{
"name": "_4",
"nodeType": "YulTypedName",
"src": "547:2:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "603:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "612:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "615:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "605:6:1"
},
"nodeType": "YulFunctionCall",
"src": "605:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "605:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "580:6:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "588:2:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "576:3:1"
},
"nodeType": "YulFunctionCall",
"src": "576:15:1"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "593:2:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "572:3:1"
},
"nodeType": "YulFunctionCall",
"src": "572:24:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "598:3:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "569:2:1"
},
"nodeType": "YulFunctionCall",
"src": "569:33:1"
},
"nodeType": "YulIf",
"src": "566:53:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "628:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "637:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "632:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "693:87:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "722:6:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "730:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "718:3:1"
},
"nodeType": "YulFunctionCall",
"src": "718:14:1"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "734:2:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "714:3:1"
},
"nodeType": "YulFunctionCall",
"src": "714:23:1"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "753:6:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "761:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "749:3:1"
},
"nodeType": "YulFunctionCall",
"src": "749:14:1"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "765:2:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "745:3:1"
},
"nodeType": "YulFunctionCall",
"src": "745:23:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "739:5:1"
},
"nodeType": "YulFunctionCall",
"src": "739:30:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "707:6:1"
},
"nodeType": "YulFunctionCall",
"src": "707:63:1"
},
"nodeType": "YulExpressionStatement",
"src": "707:63:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "658:1:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "661:2:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "655:2:1"
},
"nodeType": "YulFunctionCall",
"src": "655:9:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "665:19:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "667:15:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "676:1:1"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "679:2:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "672:3:1"
},
"nodeType": "YulFunctionCall",
"src": "672:10:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "667:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "651:3:1",
"statements": []
},
"src": "647:133:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "810:59:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "839:6:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "847:2:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "835:3:1"
},
"nodeType": "YulFunctionCall",
"src": "835:15:1"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "852:2:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "831:3:1"
},
"nodeType": "YulFunctionCall",
"src": "831:24:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "857:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "824:6:1"
},
"nodeType": "YulFunctionCall",
"src": "824:35:1"
},
"nodeType": "YulExpressionStatement",
"src": "824:35:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "795:1:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "798:2:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "792:2:1"
},
"nodeType": "YulFunctionCall",
"src": "792:9:1"
},
"nodeType": "YulIf",
"src": "789:80:1"
},
{
"nodeType": "YulAssignment",
"src": "878:15:1",
"value": {
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "887:6:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "878:5:1"
}
]
}
]
},
"name": "abi_decode_string_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "52:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "60:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "68:5:1",
"type": ""
}
],
"src": "14:885:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1049:621:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1095:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1104:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1107:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1097:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1097:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1097:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1070:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1079:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1066:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1066:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1091:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1062:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1062:32:1"
},
"nodeType": "YulIf",
"src": "1059:52:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1120:30:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1140:9:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1134:5:1"
},
"nodeType": "YulFunctionCall",
"src": "1134:16:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1124:6:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1159:28:1",
"value": {
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1177:2:1",
"type": "",
"value": "64"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1181:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "1173:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1173:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1185:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1169:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1169:18:1"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "1163:2:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1214:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1223:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1226:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1216:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1216:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1216:12:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1202:6:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1210:2:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1199:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1199:14:1"
},
"nodeType": "YulIf",
"src": "1196:34:1"
},
{
"nodeType": "YulAssignment",
"src": "1239:71:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1282:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1293:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1278:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1278:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1302:7:1"
}
],
"functionName": {
"name": "abi_decode_string_fromMemory",
"nodeType": "YulIdentifier",
"src": "1249:28:1"
},
"nodeType": "YulFunctionCall",
"src": "1249:61:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1239:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1319:41:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1345:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1356:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1341:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1341:18:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1335:5:1"
},
"nodeType": "YulFunctionCall",
"src": "1335:25:1"
},
"variables": [
{
"name": "offset_1",
"nodeType": "YulTypedName",
"src": "1323:8:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1389:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1398:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1401:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1391:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1391:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1391:12:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset_1",
"nodeType": "YulIdentifier",
"src": "1375:8:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1385:2:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1372:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1372:16:1"
},
"nodeType": "YulIf",
"src": "1369:36:1"
},
{
"nodeType": "YulAssignment",
"src": "1414:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1457:9:1"
},
{
"name": "offset_1",
"nodeType": "YulIdentifier",
"src": "1468:8:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1453:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1453:24:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1479:7:1"
}
],
"functionName": {
"name": "abi_decode_string_fromMemory",
"nodeType": "YulIdentifier",
"src": "1424:28:1"
},
"nodeType": "YulFunctionCall",
"src": "1424:63:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1414:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1496:41:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1522:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1533:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1518:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1518:18:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1512:5:1"
},
"nodeType": "YulFunctionCall",
"src": "1512:25:1"
},
"variables": [
{
"name": "offset_2",
"nodeType": "YulTypedName",
"src": "1500:8:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1566:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1575:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1578:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1568:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1568:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1568:12:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset_2",
"nodeType": "YulIdentifier",
"src": "1552:8:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1562:2:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1549:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1549:16:1"
},
"nodeType": "YulIf",
"src": "1546:36:1"
},
{
"nodeType": "YulAssignment",
"src": "1591:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1634:9:1"
},
{
"name": "offset_2",
"nodeType": "YulIdentifier",
"src": "1645:8:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1630:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1630:24:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1656:7:1"
}
],
"functionName": {
"name": "abi_decode_string_fromMemory",
"nodeType": "YulIdentifier",
"src": "1601:28:1"
},
"nodeType": "YulFunctionCall",
"src": "1601:63:1"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1591:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "999:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1010:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1022:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1030:6:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1038:6:1",
"type": ""
}
],
"src": "904:766:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1849:178:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1866:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1877:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1859:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1859:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "1859:21:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1900:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1911:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1896:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1896:18:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1916:2:1",
"type": "",
"value": "28"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1889:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1889:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "1889:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1939:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1950:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1935:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1935:18:1"
},
{
"hexValue": "4552433732313a20746f6b656e20616c7265616479206d696e746564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "1955:30:1",
"type": "",
"value": "ERC721: token already minted"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1928:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1928:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "1928:58:1"
},
{
"nodeType": "YulAssignment",
"src": "1995:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2007:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2018:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2003:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2003:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1995:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1826:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1840:4:1",
"type": ""
}
],
"src": "1675:352:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2206:182:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2223:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2234:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2216:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2216:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "2216:21:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2257:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2268:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2253:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2253:18:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2273:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2246:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2246:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "2246:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2296:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2307:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2292:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2292:18:1"
},
{
"hexValue": "4552433732313a206d696e7420746f20746865207a65726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "2312:34:1",
"type": "",
"value": "ERC721: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2285:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2285:62:1"
},
"nodeType": "YulExpressionStatement",
"src": "2285:62:1"
},
{
"nodeType": "YulAssignment",
"src": "2356:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2368:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2379:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2364:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2364:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2356:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2183:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2197:4:1",
"type": ""
}
],
"src": "2032:356:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2441:80:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2468:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "2470:16:1"
},
"nodeType": "YulFunctionCall",
"src": "2470:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "2470:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2457:1:1"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2464:1:1"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "2460:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2460:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2454:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2454:13:1"
},
"nodeType": "YulIf",
"src": "2451:39:1"
},
{
"nodeType": "YulAssignment",
"src": "2499:16:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2510:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2513:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2506:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2506:9:1"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "2499:3:1"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "2424:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "2427:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "2433:3:1",
"type": ""
}
],
"src": "2393:128:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2581:325:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2591:22:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2605:1:1",
"type": "",
"value": "1"
},
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "2608:4:1"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "2601:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2601:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2591:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2622:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "2652:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2658:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2648:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2648:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "2626:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2699:31:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2701:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2715:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2723:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2711:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2711:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2701:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "2679:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2672:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2672:26:1"
},
"nodeType": "YulIf",
"src": "2669:61:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2789:111:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2810:1:1",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2817:3:1",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2822:10:1",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "2813:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2813:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2803:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2803:31:1"
},
"nodeType": "YulExpressionStatement",
"src": "2803:31:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2854:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2857:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2847:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2847:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "2847:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2882:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2885:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2875:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2875:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "2875:15:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "2745:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2768:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2776:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2765:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2765:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2742:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2742:38:1"
},
"nodeType": "YulIf",
"src": "2739:161:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "2561:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2570:6:1",
"type": ""
}
],
"src": "2526:380:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2958:88:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2989:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "2991:16:1"
},
"nodeType": "YulFunctionCall",
"src": "2991:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "2991:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2974:5:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2985:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "2981:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2981:6:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2971:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2971:17:1"
},
"nodeType": "YulIf",
"src": "2968:43:1"
},
{
"nodeType": "YulAssignment",
"src": "3020:20:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3031:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3038:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3027:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3027:13:1"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "3020:3:1"
}
]
}
]
},
"name": "increment_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2940:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "2950:3:1",
"type": ""
}
],
"src": "2911:135:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3083:95:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3100:1:1",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3107:3:1",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3112:10:1",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "3103:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3103:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3093:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3093:31:1"
},
"nodeType": "YulExpressionStatement",
"src": "3093:31:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3140:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3143:4:1",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3133:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3133:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "3133:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3164:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3167:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3157:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3157:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "3157:15:1"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "3051:127:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3215:95:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3232:1:1",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3239:3:1",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3244:10:1",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "3235:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3235:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3225:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3225:31:1"
},
"nodeType": "YulExpressionStatement",
"src": "3225:31:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3272:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3275:4:1",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3265:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3265:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "3265:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3296:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3299:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3289:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3289:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "3289:15:1"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "3183:127:1"
}
]
},
"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_ptr_fromMemory(headStart, dataEnd) -> value0, value1, value2\n {\n if slt(sub(dataEnd, headStart), 96) { 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 }\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_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 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 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 panic_error_0x11()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x11)\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}",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040526115b36009556105dc600a556005600b5566b1a2bc2ec50000600c55668e1bc9bf040000600d553480156200003857600080fd5b5060405162002df038038062002df08339810160408190526200005b9162000405565b82518390839062000074906000906020850190620002a8565b5080516200008a906001906020840190620002a8565b505050620000a7620000a16200010660201b60201c565b6200010a565b8051620000bc90600e906020840190620002a8565b50620000fd620000d46007546001600160a01b031690565b60088054906000620000e683620004ee565b90915550620000f790600162000496565b6200015c565b50505062000538565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001b85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064015b60405180910390fd5b6000818152600260205260409020546001600160a01b0316156200021f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620001af565b6001600160a01b03821660009081526003602052604081208054600192906200024a90849062000496565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054620002b690620004b1565b90600052602060002090601f016020900481019282620002da576000855562000325565b82601f10620002f557805160ff191683800117855562000325565b8280016001018555821562000325579182015b828111156200032557825182559160200191906001019062000308565b506200033392915062000337565b5090565b5b8082111562000333576000815560010162000338565b600082601f8301126200036057600080fd5b81516001600160401b03808211156200037d576200037d62000522565b604051601f8301601f19908116603f01168101908282118183101715620003a857620003a862000522565b81604052838152602092508683858801011115620003c557600080fd5b600091505b83821015620003e95785820183015181830184015290820190620003ca565b83821115620003fb5760008385830101525b9695505050505050565b6000806000606084860312156200041b57600080fd5b83516001600160401b03808211156200043357600080fd5b62000441878388016200034e565b945060208601519150808211156200045857600080fd5b62000466878388016200034e565b935060408601519150808211156200047d57600080fd5b506200048c868287016200034e565b9150509250925092565b60008219821115620004ac57620004ac6200050c565b500190565b600181811c90821680620004c657607f821691505b60208210811415620004e857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156200050557620005056200050c565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6128a880620005486000396000f3fe6080604052600436106102515760003560e01c80636c0360eb116101395780639afdf2f3116100b6578063b88d4fde1161007a578063b88d4fde146106c4578063c87b56dd146106e4578063e43252d714610704578063e985e9c514610724578063f2fde38b1461076d578063fc1a1c361461078d57600080fd5b80639afdf2f314610618578063a035b1fe1461064e578063a22cb46514610664578063a2b40d1914610684578063a81c804e146106a457600080fd5b806388eae705116100fd57806388eae705146105685780638da5cb5b14610587578063917bb57f146105a557806395d89b41146105c55780639a313299146105da57600080fd5b80636c0360eb146104eb57806370a0823114610500578063715018a6146105205780637bd6f0cc14610535578063868ff4a21461055557600080fd5b8063308d6c47116101d257806349274ec11161019657806349274ec11461043557806355f804b31461045557806357df110a146104755780635f4f603d146104955780636352211e146104b557806367765b87146104d557600080fd5b8063308d6c47146103b357806334eafb11146103c95780633c49a8a9146103df5780633e427f90146103ff57806342842e0e1461041557600080fd5b806318160ddd1161021957806318160ddd146103275780631f2698ab1461034657806323b872dd146103605780632db1154414610380578063300b23d81461039357600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e5578063162094c414610307575b600080fd5b34801561026257600080fd5b50610276610271366004612439565b6107a3565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a06107f5565b60405161028291906125a0565b3480156102b957600080fd5b506102cd6102c83660046124a8565b610887565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b50610305610300366004612340565b610914565b005b34801561031357600080fd5b506103056103223660046124c1565b610a2a565b34801561033357600080fd5b506008545b604051908152602001610282565b34801561035257600080fd5b50600f546102769060ff1681565b34801561036c57600080fd5b5061030561037b36600461225e565b610a62565b61030561038e3660046124a8565b610a93565b34801561039f57600080fd5b506103056103ae3660046124a8565b610cd3565b3480156103bf57600080fd5b5061033860085481565b3480156103d557600080fd5b5061033860095481565b3480156103eb57600080fd5b506103056103fa366004612210565b610d02565b34801561040b57600080fd5b50610338600a5481565b34801561042157600080fd5b5061030561043036600461225e565b610dc5565b34801561044157600080fd5b506103056104503660046124a8565b610de0565b34801561046157600080fd5b50610305610470366004612473565b610e0f565b34801561048157600080fd5b506103056104903660046124a8565b610e4c565b3480156104a157600080fd5b506103056104b036600461241e565b610e7b565b3480156104c157600080fd5b506102cd6104d03660046124a8565b610ebf565b3480156104e157600080fd5b50610338600b5481565b3480156104f757600080fd5b506102a0610f36565b34801561050c57600080fd5b5061033861051b366004612210565b610fc4565b34801561052c57600080fd5b5061030561104b565b34801561054157600080fd5b506103056105503660046124a8565b611081565b6103056105633660046124a8565b6110b0565b34801561057457600080fd5b50600f5461027690610100900460ff1681565b34801561059357600080fd5b506007546001600160a01b03166102cd565b3480156105b157600080fd5b506103056105c036600461241e565b6113cb565b3480156105d157600080fd5b506102a0611408565b3480156105e657600080fd5b506102766105f5366004612210565b6001600160a01b031660009081526010602052604090205460ff16151560011490565b34801561062457600080fd5b50610338610633366004612210565b6001600160a01b031660009081526011602052604090205490565b34801561065a57600080fd5b50610338600c5481565b34801561067057600080fd5b5061030561067f366004612316565b611417565b34801561069057600080fd5b5061030561069f3660046124a8565b611422565b3480156106b057600080fd5b506103056106bf36600461236a565b611451565b3480156106d057600080fd5b506103056106df36600461229a565b611535565b3480156106f057600080fd5b506102a06106ff3660046124a8565b61156d565b34801561071057600080fd5b5061030561071f366004612210565b6116d7565b34801561073057600080fd5b5061027661073f36600461222b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561077957600080fd5b50610305610788366004612210565b611733565b34801561079957600080fd5b50610338600d5481565b60006001600160e01b031982166380ac58cd60e01b14806107d457506001600160e01b03198216635b5e139f60e01b145b806107ef57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546108049061279a565b80601f01602080910402602001604051908101604052809291908181526020018280546108309061279a565b801561087d5780601f106108525761010080835404028352916020019161087d565b820191906000526020600020905b81548152906001019060200180831161086057829003601f168201915b5050505050905090565b6000610892826117cb565b6108f85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061091f82610ebf565b9050806001600160a01b0316836001600160a01b0316141561098d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108ef565b336001600160a01b03821614806109a957506109a9813361073f565b610a1b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108ef565b610a2583836117e8565b505050565b6007546001600160a01b03163314610a545760405162461bcd60e51b81526004016108ef90612605565b610a5e8282611856565b5050565b610a6c33826118e1565b610a885760405162461bcd60e51b81526004016108ef9061263a565b610a258383836119c7565b600f54819060ff16610ad55760405162461bcd60e51b815260206004820152600b60248201526a1b9bdd081cdd185c9d195960aa1b60448201526064016108ef565b600081118015610ae75750600b548111155b610b275760405162461bcd60e51b815260206004820152601160248201527036b4b73a103bb937b73390373ab6b132b960791b60448201526064016108ef565b600a5481600854610b38919061270c565b1115610b805760405162461bcd60e51b8152602060048201526017602482015276796f752063616e6e6f74206d696e7420616e796d6f726560481b60448201526064016108ef565b60095481600854610b91919061270c565b1115610baf5760405162461bcd60e51b81526004016108ef9061268b565b600c54610bbc9082612738565b3414610c0a5760405162461bcd60e51b815260206004820152601c60248201527f496e636f7272656374207472616e73616374696f6e2076616c75652e0000000060448201526064016108ef565b6007546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015610c43573d6000803e3d6000fd5b5060085433907f6347dea908e37b572d7afa6e86e42abd1597e56020d130ff21c3f4a0b115393790610c7690600161270c565b60408051918252602082018690520160405180910390a260005b82811015610a2557610cc1335b60088054906000610cad836127d5565b90915550610cbc90600161270c565b611b67565b80610ccb816127d5565b915050610c90565b6007546001600160a01b03163314610cfd5760405162461bcd60e51b81526004016108ef90612605565b600b55565b6007546001600160a01b03163314610d2c5760405162461bcd60e51b81526004016108ef90612605565b600954600854610d3d90600161270c565b1115610d5b5760405162461bcd60e51b81526004016108ef9061268b565b806001600160a01b03167f6347dea908e37b572d7afa6e86e42abd1597e56020d130ff21c3f4a0b11539376008546001610d95919061270c565b60408051918252600160208301520160405180910390a260088054610dc2918391906000610cad836127d5565b50565b610a2583838360405180602001604052806000815250611535565b6007546001600160a01b03163314610e0a5760405162461bcd60e51b81526004016108ef90612605565b600a55565b6007546001600160a01b03163314610e395760405162461bcd60e51b81526004016108ef90612605565b8051610a5e90600e9060208401906120d3565b6007546001600160a01b03163314610e765760405162461bcd60e51b81526004016108ef90612605565b600955565b6007546001600160a01b03163314610ea55760405162461bcd60e51b81526004016108ef90612605565b600f80549115156101000261ff0019909216919091179055565b6000818152600260205260408120546001600160a01b0316806107ef5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108ef565b600e8054610f439061279a565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6f9061279a565b8015610fbc5780601f10610f9157610100808354040283529160200191610fbc565b820191906000526020600020905b815481529060010190602001808311610f9f57829003601f168201915b505050505081565b60006001600160a01b03821661102f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108ef565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b031633146110755760405162461bcd60e51b81526004016108ef90612605565b61107f6000611c9a565b565b6007546001600160a01b031633146110ab5760405162461bcd60e51b81526004016108ef90612605565b600d55565b600f548190610100900460ff166111095760405162461bcd60e51b815260206004820152601f60248201527f48616e67206f6e20626f79732c20796f756c6c2067657420696e20736f6f6e0060448201526064016108ef565b3360009081526010602052604090205460ff1615156001146111605760405162461bcd60e51b815260206004820152601060248201526f2737ba103bb434ba32b634b9ba32b21760811b60448201526064016108ef565b600a5481600854611171919061270c565b11156111b95760405162461bcd60e51b8152602060048201526017602482015276796f752063616e6e6f74206d696e7420616e796d6f726560481b60448201526064016108ef565b336000908152601160205260408120546111d4908390612757565b10156112225760405162461bcd60e51b815260206004820152601c60248201527f4f766572206d696e74206c696d697420666f7220616464726573732e0000000060448201526064016108ef565b60095481600854611233919061270c565b11156112515760405162461bcd60e51b81526004016108ef9061268b565b6000811180156112635750600b548111155b6112a35760405162461bcd60e51b815260206004820152601160248201527036b4b73a103bb937b73390373ab6b132b960791b60448201526064016108ef565b600d546112b09082612738565b34146112fe5760405162461bcd60e51b815260206004820152601c60248201527f496e636f7272656374207472616e73616374696f6e2076616c75652e0000000060448201526064016108ef565b6007546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015611337573d6000803e3d6000fd5b503360009081526011602052604081208054849290611357908490612757565b909155505060085433907f6347dea908e37b572d7afa6e86e42abd1597e56020d130ff21c3f4a0b11539379061138e90600161270c565b60408051918252602082018690520160405180910390a260005b82811015610a25576113b933610c9d565b806113c3816127d5565b9150506113a8565b6007546001600160a01b031633146113f55760405162461bcd60e51b81526004016108ef90612605565b600f805460ff1916911515919091179055565b6060600180546108049061279a565b610a5e338383611cec565b6007546001600160a01b0316331461144c5760405162461bcd60e51b81526004016108ef90612605565b600c55565b6007546001600160a01b0316331461147b5760405162461bcd60e51b81526004016108ef90612605565b60005b8151811015610a5e5760016010600084848151811061149f5761149f612830565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055506003601160008484815181106114f6576114f6612830565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550808061152d906127d5565b91505061147e565b61153f33836118e1565b61155b5760405162461bcd60e51b81526004016108ef9061263a565b61156784848484611dbb565b50505050565b6060611578826117cb565b6115de5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b60648201526084016108ef565b600082815260066020526040812080546115f79061279a565b80601f01602080910402602001604051908101604052809291908181526020018280546116239061279a565b80156116705780601f1061164557610100808354040283529160200191611670565b820191906000526020600020905b81548152906001019060200180831161165357829003601f168201915b505050505090506000611681611dee565b9050805160001415611694575092915050565b8151156116c65780826040516020016116ae929190612534565b60405160208183030381529060405292505050919050565b6116cf84611dfd565b949350505050565b6007546001600160a01b031633146117015760405162461bcd60e51b81526004016108ef90612605565b6001600160a01b03166000908152601060209081526040808320805460ff191660011790556011909152902060039055565b6007546001600160a01b0316331461175d5760405162461bcd60e51b81526004016108ef90612605565b6001600160a01b0381166117c25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ef565b610dc281611c9a565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061181d82610ebf565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61185f826117cb565b6118c25760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b60648201526084016108ef565b60008281526006602090815260409091208251610a25928401906120d3565b60006118ec826117cb565b61194d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108ef565b600061195883610ebf565b9050806001600160a01b0316846001600160a01b031614806119935750836001600160a01b031661198884610887565b6001600160a01b0316145b806116cf57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff166116cf565b826001600160a01b03166119da82610ebf565b6001600160a01b031614611a425760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108ef565b6001600160a01b038216611aa45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108ef565b611aaf6000826117e8565b6001600160a01b0383166000908152600360205260408120805460019290611ad8908490612757565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b0690849061270c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b038216611bbd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108ef565b611bc6816117cb565b15611c135760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108ef565b6001600160a01b0382166000908152600360205260408120805460019290611c3c90849061270c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611d4e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108ef565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611dc68484846119c7565b611dd284848484611ec8565b6115675760405162461bcd60e51b81526004016108ef906125b3565b6060600e80546108049061279a565b6060611e08826117cb565b611e6c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108ef565b6000611e76611dee565b90506000815111611e965760405180602001604052806000815250611ec1565b80611ea084611fd5565b604051602001611eb1929190612534565b6040516020818303038152906040525b9392505050565b60006001600160a01b0384163b15611fca57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f0c903390899088908890600401612563565b602060405180830381600087803b158015611f2657600080fd5b505af1925050508015611f56575060408051601f3d908101601f19168201909252611f5391810190612456565b60015b611fb0573d808015611f84576040519150601f19603f3d011682016040523d82523d6000602084013e611f89565b606091505b508051611fa85760405162461bcd60e51b81526004016108ef906125b3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116cf565b506001949350505050565b606081611ff95750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612023578061200d816127d5565b915061201c9050600a83612724565b9150611ffd565b60008167ffffffffffffffff81111561203e5761203e612846565b6040519080825280601f01601f191660200182016040528015612068576020820181803683370190505b5090505b84156116cf5761207d600183612757565b915061208a600a866127f0565b61209590603061270c565b60f81b8183815181106120aa576120aa612830565b60200101906001600160f81b031916908160001a9053506120cc600a86612724565b945061206c565b8280546120df9061279a565b90600052602060002090601f0160209004810192826121015760008555612147565b82601f1061211a57805160ff1916838001178555612147565b82800160010185558215612147579182015b8281111561214757825182559160200191906001019061212c565b50612153929150612157565b5090565b5b808211156121535760008155600101612158565b600067ffffffffffffffff83111561218657612186612846565b612199601f8401601f19166020016126db565b90508281528383830111156121ad57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146121db57600080fd5b919050565b803580151581146121db57600080fd5b600082601f83011261220157600080fd5b611ec18383356020850161216c565b60006020828403121561222257600080fd5b611ec1826121c4565b6000806040838503121561223e57600080fd5b612247836121c4565b9150612255602084016121c4565b90509250929050565b60008060006060848603121561227357600080fd5b61227c846121c4565b925061228a602085016121c4565b9150604084013590509250925092565b600080600080608085870312156122b057600080fd5b6122b9856121c4565b93506122c7602086016121c4565b925060408501359150606085013567ffffffffffffffff8111156122ea57600080fd5b8501601f810187136122fb57600080fd5b61230a8782356020840161216c565b91505092959194509250565b6000806040838503121561232957600080fd5b612332836121c4565b9150612255602084016121e0565b6000806040838503121561235357600080fd5b61235c836121c4565b946020939093013593505050565b6000602080838503121561237d57600080fd5b823567ffffffffffffffff8082111561239557600080fd5b818501915085601f8301126123a957600080fd5b8135818111156123bb576123bb612846565b8060051b91506123cc8483016126db565b8181528481019084860184860187018a10156123e757600080fd5b600095505b83861015612411576123fd816121c4565b8352600195909501949186019186016123ec565b5098975050505050505050565b60006020828403121561243057600080fd5b611ec1826121e0565b60006020828403121561244b57600080fd5b8135611ec18161285c565b60006020828403121561246857600080fd5b8151611ec18161285c565b60006020828403121561248557600080fd5b813567ffffffffffffffff81111561249c57600080fd5b6116cf848285016121f0565b6000602082840312156124ba57600080fd5b5035919050565b600080604083850312156124d457600080fd5b82359150602083013567ffffffffffffffff8111156124f257600080fd5b6124fe858286016121f0565b9150509250929050565b6000815180845261252081602086016020860161276e565b601f01601f19169290920160200192915050565b6000835161254681846020880161276e565b83519083019061255a81836020880161276e565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061259690830184612508565b9695505050505050565b602081526000611ec16020830184612508565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526030908201527f4d696e7420616d6f756e742077696c6c2065786365656420746f74616c20636f60408201526f363632b1ba34b7b71030b6b7bab73a1760811b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561270457612704612846565b604052919050565b6000821982111561271f5761271f612804565b500190565b6000826127335761273361281a565b500490565b600081600019048311821515161561275257612752612804565b500290565b60008282101561276957612769612804565b500390565b60005b83811015612789578181015183820152602001612771565b838111156115675750506000910152565b600181811c908216806127ae57607f821691505b602082108114156127cf57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127e9576127e9612804565b5060010190565b6000826127ff576127ff61281a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610dc257600080fdfea2646970667358221220b0ebf5513bed54c230b15662c72670d990bfea847590146e05196928661f500664736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH2 0x15B3 PUSH1 0x9 SSTORE PUSH2 0x5DC PUSH1 0xA SSTORE PUSH1 0x5 PUSH1 0xB SSTORE PUSH7 0xB1A2BC2EC50000 PUSH1 0xC SSTORE PUSH7 0x8E1BC9BF040000 PUSH1 0xD SSTORE CALLVALUE DUP1 ISZERO PUSH3 0x38 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x2DF0 CODESIZE SUB DUP1 PUSH3 0x2DF0 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x5B SWAP2 PUSH3 0x405 JUMP JUMPDEST DUP3 MLOAD DUP4 SWAP1 DUP4 SWAP1 PUSH3 0x74 SWAP1 PUSH1 0x0 SWAP1 PUSH1 0x20 DUP6 ADD SWAP1 PUSH3 0x2A8 JUMP JUMPDEST POP DUP1 MLOAD PUSH3 0x8A SWAP1 PUSH1 0x1 SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH3 0x2A8 JUMP JUMPDEST POP POP POP PUSH3 0xA7 PUSH3 0xA1 PUSH3 0x106 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x10A JUMP JUMPDEST DUP1 MLOAD PUSH3 0xBC SWAP1 PUSH1 0xE SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH3 0x2A8 JUMP JUMPDEST POP PUSH3 0xFD PUSH3 0xD4 PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x8 DUP1 SLOAD SWAP1 PUSH1 0x0 PUSH3 0xE6 DUP4 PUSH3 0x4EE JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH3 0xF7 SWAP1 PUSH1 0x1 PUSH3 0x496 JUMP JUMPDEST PUSH3 0x15C JUMP JUMPDEST POP POP POP PUSH3 0x538 JUMP JUMPDEST CALLER SWAP1 JUMP JUMPDEST PUSH1 0x7 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 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH3 0x1B8 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 JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT 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 PUSH3 0x21F 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 PUSH3 0x1AF 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 PUSH3 0x24A SWAP1 DUP5 SWAP1 PUSH3 0x496 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 PUSH3 0x2B6 SWAP1 PUSH3 0x4B1 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x2DA JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x325 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x2F5 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x325 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x325 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x325 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x308 JUMP JUMPDEST POP PUSH3 0x333 SWAP3 SWAP2 POP PUSH3 0x337 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x333 JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0x338 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x360 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x37D JUMPI PUSH3 0x37D PUSH3 0x522 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 0x3A8 JUMPI PUSH3 0x3A8 PUSH3 0x522 JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE PUSH1 0x20 SWAP3 POP DUP7 DUP4 DUP6 DUP9 ADD ADD GT ISZERO PUSH3 0x3C5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP2 POP JUMPDEST DUP4 DUP3 LT ISZERO PUSH3 0x3E9 JUMPI DUP6 DUP3 ADD DUP4 ADD MLOAD DUP2 DUP4 ADD DUP5 ADD MSTORE SWAP1 DUP3 ADD SWAP1 PUSH3 0x3CA JUMP JUMPDEST DUP4 DUP3 GT ISZERO PUSH3 0x3FB 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 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH3 0x41B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x433 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x441 DUP8 DUP4 DUP9 ADD PUSH3 0x34E JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD MLOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH3 0x458 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x466 DUP8 DUP4 DUP9 ADD PUSH3 0x34E JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD MLOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH3 0x47D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH3 0x48C DUP7 DUP3 DUP8 ADD PUSH3 0x34E JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH3 0x4AC JUMPI PUSH3 0x4AC PUSH3 0x50C JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH3 0x4C6 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x4E8 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 PUSH3 0x505 JUMPI PUSH3 0x505 PUSH3 0x50C JUMP JUMPDEST POP PUSH1 0x1 ADD 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 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x28A8 DUP1 PUSH3 0x548 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x251 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6C0360EB GT PUSH2 0x139 JUMPI DUP1 PUSH4 0x9AFDF2F3 GT PUSH2 0xB6 JUMPI DUP1 PUSH4 0xB88D4FDE GT PUSH2 0x7A JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x6C4 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x6E4 JUMPI DUP1 PUSH4 0xE43252D7 EQ PUSH2 0x704 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x724 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x76D JUMPI DUP1 PUSH4 0xFC1A1C36 EQ PUSH2 0x78D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x9AFDF2F3 EQ PUSH2 0x618 JUMPI DUP1 PUSH4 0xA035B1FE EQ PUSH2 0x64E JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x664 JUMPI DUP1 PUSH4 0xA2B40D19 EQ PUSH2 0x684 JUMPI DUP1 PUSH4 0xA81C804E EQ PUSH2 0x6A4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x88EAE705 GT PUSH2 0xFD JUMPI DUP1 PUSH4 0x88EAE705 EQ PUSH2 0x568 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x587 JUMPI DUP1 PUSH4 0x917BB57F EQ PUSH2 0x5A5 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x5C5 JUMPI DUP1 PUSH4 0x9A313299 EQ PUSH2 0x5DA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6C0360EB EQ PUSH2 0x4EB JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x500 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x520 JUMPI DUP1 PUSH4 0x7BD6F0CC EQ PUSH2 0x535 JUMPI DUP1 PUSH4 0x868FF4A2 EQ PUSH2 0x555 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x308D6C47 GT PUSH2 0x1D2 JUMPI DUP1 PUSH4 0x49274EC1 GT PUSH2 0x196 JUMPI DUP1 PUSH4 0x49274EC1 EQ PUSH2 0x435 JUMPI DUP1 PUSH4 0x55F804B3 EQ PUSH2 0x455 JUMPI DUP1 PUSH4 0x57DF110A EQ PUSH2 0x475 JUMPI DUP1 PUSH4 0x5F4F603D EQ PUSH2 0x495 JUMPI DUP1 PUSH4 0x6352211E EQ PUSH2 0x4B5 JUMPI DUP1 PUSH4 0x67765B87 EQ PUSH2 0x4D5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x308D6C47 EQ PUSH2 0x3B3 JUMPI DUP1 PUSH4 0x34EAFB11 EQ PUSH2 0x3C9 JUMPI DUP1 PUSH4 0x3C49A8A9 EQ PUSH2 0x3DF JUMPI DUP1 PUSH4 0x3E427F90 EQ PUSH2 0x3FF JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x415 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x18160DDD GT PUSH2 0x219 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x327 JUMPI DUP1 PUSH4 0x1F2698AB EQ PUSH2 0x346 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x360 JUMPI DUP1 PUSH4 0x2DB11544 EQ PUSH2 0x380 JUMPI DUP1 PUSH4 0x300B23D8 EQ PUSH2 0x393 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x256 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x28B JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x2AD JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x2E5 JUMPI DUP1 PUSH4 0x162094C4 EQ PUSH2 0x307 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x262 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x276 PUSH2 0x271 CALLDATASIZE PUSH1 0x4 PUSH2 0x2439 JUMP JUMPDEST PUSH2 0x7A3 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 0x297 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2A0 PUSH2 0x7F5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x282 SWAP2 SWAP1 PUSH2 0x25A0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2B9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2CD PUSH2 0x2C8 CALLDATASIZE PUSH1 0x4 PUSH2 0x24A8 JUMP JUMPDEST PUSH2 0x887 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x282 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2F1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x305 PUSH2 0x300 CALLDATASIZE PUSH1 0x4 PUSH2 0x2340 JUMP JUMPDEST PUSH2 0x914 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x313 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x305 PUSH2 0x322 CALLDATASIZE PUSH1 0x4 PUSH2 0x24C1 JUMP JUMPDEST PUSH2 0xA2A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x333 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x8 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x282 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x352 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0xF SLOAD PUSH2 0x276 SWAP1 PUSH1 0xFF AND DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x36C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x305 PUSH2 0x37B CALLDATASIZE PUSH1 0x4 PUSH2 0x225E JUMP JUMPDEST PUSH2 0xA62 JUMP JUMPDEST PUSH2 0x305 PUSH2 0x38E CALLDATASIZE PUSH1 0x4 PUSH2 0x24A8 JUMP JUMPDEST PUSH2 0xA93 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x39F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x305 PUSH2 0x3AE CALLDATASIZE PUSH1 0x4 PUSH2 0x24A8 JUMP JUMPDEST PUSH2 0xCD3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3BF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x338 PUSH1 0x8 SLOAD DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3D5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x338 PUSH1 0x9 SLOAD DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3EB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x305 PUSH2 0x3FA CALLDATASIZE PUSH1 0x4 PUSH2 0x2210 JUMP JUMPDEST PUSH2 0xD02 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x40B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x338 PUSH1 0xA SLOAD DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x421 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x305 PUSH2 0x430 CALLDATASIZE PUSH1 0x4 PUSH2 0x225E JUMP JUMPDEST PUSH2 0xDC5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x441 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x305 PUSH2 0x450 CALLDATASIZE PUSH1 0x4 PUSH2 0x24A8 JUMP JUMPDEST PUSH2 0xDE0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x461 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x305 PUSH2 0x470 CALLDATASIZE PUSH1 0x4 PUSH2 0x2473 JUMP JUMPDEST PUSH2 0xE0F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x481 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x305 PUSH2 0x490 CALLDATASIZE PUSH1 0x4 PUSH2 0x24A8 JUMP JUMPDEST PUSH2 0xE4C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4A1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x305 PUSH2 0x4B0 CALLDATASIZE PUSH1 0x4 PUSH2 0x241E JUMP JUMPDEST PUSH2 0xE7B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4C1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2CD PUSH2 0x4D0 CALLDATASIZE PUSH1 0x4 PUSH2 0x24A8 JUMP JUMPDEST PUSH2 0xEBF JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4E1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x338 PUSH1 0xB SLOAD DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4F7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2A0 PUSH2 0xF36 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x50C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x338 PUSH2 0x51B CALLDATASIZE PUSH1 0x4 PUSH2 0x2210 JUMP JUMPDEST PUSH2 0xFC4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x52C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x305 PUSH2 0x104B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x541 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x305 PUSH2 0x550 CALLDATASIZE PUSH1 0x4 PUSH2 0x24A8 JUMP JUMPDEST PUSH2 0x1081 JUMP JUMPDEST PUSH2 0x305 PUSH2 0x563 CALLDATASIZE PUSH1 0x4 PUSH2 0x24A8 JUMP JUMPDEST PUSH2 0x10B0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x574 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0xF SLOAD PUSH2 0x276 SWAP1 PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x593 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2CD JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5B1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x305 PUSH2 0x5C0 CALLDATASIZE PUSH1 0x4 PUSH2 0x241E JUMP JUMPDEST PUSH2 0x13CB JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5D1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2A0 PUSH2 0x1408 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5E6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x276 PUSH2 0x5F5 CALLDATASIZE PUSH1 0x4 PUSH2 0x2210 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x10 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND ISZERO ISZERO PUSH1 0x1 EQ SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x624 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x338 PUSH2 0x633 CALLDATASIZE PUSH1 0x4 PUSH2 0x2210 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x11 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x65A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x338 PUSH1 0xC SLOAD DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x670 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x305 PUSH2 0x67F CALLDATASIZE PUSH1 0x4 PUSH2 0x2316 JUMP JUMPDEST PUSH2 0x1417 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x690 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x305 PUSH2 0x69F CALLDATASIZE PUSH1 0x4 PUSH2 0x24A8 JUMP JUMPDEST PUSH2 0x1422 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6B0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x305 PUSH2 0x6BF CALLDATASIZE PUSH1 0x4 PUSH2 0x236A JUMP JUMPDEST PUSH2 0x1451 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6D0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x305 PUSH2 0x6DF CALLDATASIZE PUSH1 0x4 PUSH2 0x229A JUMP JUMPDEST PUSH2 0x1535 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6F0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2A0 PUSH2 0x6FF CALLDATASIZE PUSH1 0x4 PUSH2 0x24A8 JUMP JUMPDEST PUSH2 0x156D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x710 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x305 PUSH2 0x71F CALLDATASIZE PUSH1 0x4 PUSH2 0x2210 JUMP JUMPDEST PUSH2 0x16D7 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x730 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x276 PUSH2 0x73F CALLDATASIZE PUSH1 0x4 PUSH2 0x222B 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 0x779 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x305 PUSH2 0x788 CALLDATASIZE PUSH1 0x4 PUSH2 0x2210 JUMP JUMPDEST PUSH2 0x1733 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x799 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x338 PUSH1 0xD SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x80AC58CD PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x7D4 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x5B5E139F PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x7EF JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x804 SWAP1 PUSH2 0x279A 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 0x830 SWAP1 PUSH2 0x279A JUMP JUMPDEST DUP1 ISZERO PUSH2 0x87D JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x852 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x87D 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 0x860 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x892 DUP3 PUSH2 0x17CB JUMP JUMPDEST PUSH2 0x8F8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76656420717565727920666F72206E6F6E6578 PUSH1 0x44 DUP3 ADD MSTORE PUSH12 0x34B9BA32B73A103A37B5B2B7 PUSH1 0xA1 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x91F DUP3 PUSH2 0xEBF 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 0x98D 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 0x8EF JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND EQ DUP1 PUSH2 0x9A9 JUMPI POP PUSH2 0x9A9 DUP2 CALLER PUSH2 0x73F JUMP JUMPDEST PUSH2 0xA1B 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 0x8EF JUMP JUMPDEST PUSH2 0xA25 DUP4 DUP4 PUSH2 0x17E8 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xA54 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP1 PUSH2 0x2605 JUMP JUMPDEST PUSH2 0xA5E DUP3 DUP3 PUSH2 0x1856 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0xA6C CALLER DUP3 PUSH2 0x18E1 JUMP JUMPDEST PUSH2 0xA88 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP1 PUSH2 0x263A JUMP JUMPDEST PUSH2 0xA25 DUP4 DUP4 DUP4 PUSH2 0x19C7 JUMP JUMPDEST PUSH1 0xF SLOAD DUP2 SWAP1 PUSH1 0xFF AND PUSH2 0xAD5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xB PUSH1 0x24 DUP3 ADD MSTORE PUSH11 0x1B9BDD081CDD185C9D1959 PUSH1 0xAA SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x8EF JUMP JUMPDEST PUSH1 0x0 DUP2 GT DUP1 ISZERO PUSH2 0xAE7 JUMPI POP PUSH1 0xB SLOAD DUP2 GT ISZERO JUMPDEST PUSH2 0xB27 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x36B4B73A103BB937B73390373AB6B132B9 PUSH1 0x79 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x8EF JUMP JUMPDEST PUSH1 0xA SLOAD DUP2 PUSH1 0x8 SLOAD PUSH2 0xB38 SWAP2 SWAP1 PUSH2 0x270C JUMP JUMPDEST GT ISZERO PUSH2 0xB80 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x17 PUSH1 0x24 DUP3 ADD MSTORE PUSH23 0x796F752063616E6E6F74206D696E7420616E796D6F7265 PUSH1 0x48 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x8EF JUMP JUMPDEST PUSH1 0x9 SLOAD DUP2 PUSH1 0x8 SLOAD PUSH2 0xB91 SWAP2 SWAP1 PUSH2 0x270C JUMP JUMPDEST GT ISZERO PUSH2 0xBAF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP1 PUSH2 0x268B JUMP JUMPDEST PUSH1 0xC SLOAD PUSH2 0xBBC SWAP1 DUP3 PUSH2 0x2738 JUMP JUMPDEST CALLVALUE EQ PUSH2 0xC0A 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 0x496E636F7272656374207472616E73616374696F6E2076616C75652E00000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x8EF JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 CALLVALUE DUP1 ISZERO PUSH2 0x8FC MUL SWAP2 PUSH1 0x0 DUP2 DUP2 DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP ISZERO DUP1 ISZERO PUSH2 0xC43 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP PUSH1 0x8 SLOAD CALLER SWAP1 PUSH32 0x6347DEA908E37B572D7AFA6E86E42ABD1597E56020D130FF21C3F4A0B1153937 SWAP1 PUSH2 0xC76 SWAP1 PUSH1 0x1 PUSH2 0x270C JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP7 SWAP1 MSTORE ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0xA25 JUMPI PUSH2 0xCC1 CALLER JUMPDEST PUSH1 0x8 DUP1 SLOAD SWAP1 PUSH1 0x0 PUSH2 0xCAD DUP4 PUSH2 0x27D5 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0xCBC SWAP1 PUSH1 0x1 PUSH2 0x270C JUMP JUMPDEST PUSH2 0x1B67 JUMP JUMPDEST DUP1 PUSH2 0xCCB DUP2 PUSH2 0x27D5 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xC90 JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xCFD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP1 PUSH2 0x2605 JUMP JUMPDEST PUSH1 0xB SSTORE JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xD2C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP1 PUSH2 0x2605 JUMP JUMPDEST PUSH1 0x9 SLOAD PUSH1 0x8 SLOAD PUSH2 0xD3D SWAP1 PUSH1 0x1 PUSH2 0x270C JUMP JUMPDEST GT ISZERO PUSH2 0xD5B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP1 PUSH2 0x268B JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x6347DEA908E37B572D7AFA6E86E42ABD1597E56020D130FF21C3F4A0B1153937 PUSH1 0x8 SLOAD PUSH1 0x1 PUSH2 0xD95 SWAP2 SWAP1 PUSH2 0x270C JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP2 DUP3 MSTORE PUSH1 0x1 PUSH1 0x20 DUP4 ADD MSTORE ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH1 0x8 DUP1 SLOAD PUSH2 0xDC2 SWAP2 DUP4 SWAP2 SWAP1 PUSH1 0x0 PUSH2 0xCAD DUP4 PUSH2 0x27D5 JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0xA25 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x1535 JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xE0A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP1 PUSH2 0x2605 JUMP JUMPDEST PUSH1 0xA SSTORE JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xE39 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP1 PUSH2 0x2605 JUMP JUMPDEST DUP1 MLOAD PUSH2 0xA5E SWAP1 PUSH1 0xE SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH2 0x20D3 JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xE76 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP1 PUSH2 0x2605 JUMP JUMPDEST PUSH1 0x9 SSTORE JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xEA5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP1 PUSH2 0x2605 JUMP JUMPDEST PUSH1 0xF DUP1 SLOAD SWAP2 ISZERO ISZERO PUSH2 0x100 MUL PUSH2 0xFF00 NOT SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE 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 0x7EF 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 0x8EF JUMP JUMPDEST PUSH1 0xE DUP1 SLOAD PUSH2 0xF43 SWAP1 PUSH2 0x279A 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 0xF6F SWAP1 PUSH2 0x279A JUMP JUMPDEST DUP1 ISZERO PUSH2 0xFBC JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xF91 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xFBC 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 0xF9F JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x102F 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 0x8EF 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 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x1075 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP1 PUSH2 0x2605 JUMP JUMPDEST PUSH2 0x107F PUSH1 0x0 PUSH2 0x1C9A JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x10AB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP1 PUSH2 0x2605 JUMP JUMPDEST PUSH1 0xD SSTORE JUMP JUMPDEST PUSH1 0xF SLOAD DUP2 SWAP1 PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND PUSH2 0x1109 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x48616E67206F6E20626F79732C20796F756C6C2067657420696E20736F6F6E00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x8EF JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x10 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND ISZERO ISZERO PUSH1 0x1 EQ PUSH2 0x1160 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x10 PUSH1 0x24 DUP3 ADD MSTORE PUSH16 0x2737BA103BB434BA32B634B9BA32B217 PUSH1 0x81 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x8EF JUMP JUMPDEST PUSH1 0xA SLOAD DUP2 PUSH1 0x8 SLOAD PUSH2 0x1171 SWAP2 SWAP1 PUSH2 0x270C JUMP JUMPDEST GT ISZERO PUSH2 0x11B9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x17 PUSH1 0x24 DUP3 ADD MSTORE PUSH23 0x796F752063616E6E6F74206D696E7420616E796D6F7265 PUSH1 0x48 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x8EF JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x11 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH2 0x11D4 SWAP1 DUP4 SWAP1 PUSH2 0x2757 JUMP JUMPDEST LT ISZERO PUSH2 0x1222 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 0x4F766572206D696E74206C696D697420666F7220616464726573732E00000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x8EF JUMP JUMPDEST PUSH1 0x9 SLOAD DUP2 PUSH1 0x8 SLOAD PUSH2 0x1233 SWAP2 SWAP1 PUSH2 0x270C JUMP JUMPDEST GT ISZERO PUSH2 0x1251 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP1 PUSH2 0x268B JUMP JUMPDEST PUSH1 0x0 DUP2 GT DUP1 ISZERO PUSH2 0x1263 JUMPI POP PUSH1 0xB SLOAD DUP2 GT ISZERO JUMPDEST PUSH2 0x12A3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x36B4B73A103BB937B73390373AB6B132B9 PUSH1 0x79 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x8EF JUMP JUMPDEST PUSH1 0xD SLOAD PUSH2 0x12B0 SWAP1 DUP3 PUSH2 0x2738 JUMP JUMPDEST CALLVALUE EQ PUSH2 0x12FE 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 0x496E636F7272656374207472616E73616374696F6E2076616C75652E00000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x8EF JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 CALLVALUE DUP1 ISZERO PUSH2 0x8FC MUL SWAP2 PUSH1 0x0 DUP2 DUP2 DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP ISZERO DUP1 ISZERO PUSH2 0x1337 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x11 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x1357 SWAP1 DUP5 SWAP1 PUSH2 0x2757 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x8 SLOAD CALLER SWAP1 PUSH32 0x6347DEA908E37B572D7AFA6E86E42ABD1597E56020D130FF21C3F4A0B1153937 SWAP1 PUSH2 0x138E SWAP1 PUSH1 0x1 PUSH2 0x270C JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP7 SWAP1 MSTORE ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0xA25 JUMPI PUSH2 0x13B9 CALLER PUSH2 0xC9D JUMP JUMPDEST DUP1 PUSH2 0x13C3 DUP2 PUSH2 0x27D5 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x13A8 JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x13F5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP1 PUSH2 0x2605 JUMP JUMPDEST PUSH1 0xF DUP1 SLOAD PUSH1 0xFF NOT AND SWAP2 ISZERO ISZERO SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x804 SWAP1 PUSH2 0x279A JUMP JUMPDEST PUSH2 0xA5E CALLER DUP4 DUP4 PUSH2 0x1CEC JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x144C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP1 PUSH2 0x2605 JUMP JUMPDEST PUSH1 0xC SSTORE JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x147B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP1 PUSH2 0x2605 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 MLOAD DUP2 LT ISZERO PUSH2 0xA5E JUMPI PUSH1 0x1 PUSH1 0x10 PUSH1 0x0 DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x149F JUMPI PUSH2 0x149F PUSH2 0x2830 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x3 PUSH1 0x11 PUSH1 0x0 DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x14F6 JUMPI PUSH2 0x14F6 PUSH2 0x2830 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP1 DUP1 PUSH2 0x152D SWAP1 PUSH2 0x27D5 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x147E JUMP JUMPDEST PUSH2 0x153F CALLER DUP4 PUSH2 0x18E1 JUMP JUMPDEST PUSH2 0x155B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP1 PUSH2 0x263A JUMP JUMPDEST PUSH2 0x1567 DUP5 DUP5 DUP5 DUP5 PUSH2 0x1DBB JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x1578 DUP3 PUSH2 0x17CB JUMP JUMPDEST PUSH2 0x15DE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x31 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524337323155524953746F726167653A2055524920717565727920666F7220 PUSH1 0x44 DUP3 ADD MSTORE PUSH17 0x3737B732BC34B9BA32B73A103A37B5B2B7 PUSH1 0x79 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x8EF JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH2 0x15F7 SWAP1 PUSH2 0x279A 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 0x1623 SWAP1 PUSH2 0x279A JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1670 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1645 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x1670 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 0x1653 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP PUSH1 0x0 PUSH2 0x1681 PUSH2 0x1DEE JUMP JUMPDEST SWAP1 POP DUP1 MLOAD PUSH1 0x0 EQ ISZERO PUSH2 0x1694 JUMPI POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP2 MLOAD ISZERO PUSH2 0x16C6 JUMPI DUP1 DUP3 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x16AE SWAP3 SWAP2 SWAP1 PUSH2 0x2534 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP3 POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x16CF DUP5 PUSH2 0x1DFD JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x1701 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP1 PUSH2 0x2605 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x10 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE PUSH1 0x11 SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 PUSH1 0x3 SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x175D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP1 PUSH2 0x2605 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x17C2 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 0x8EF JUMP JUMPDEST PUSH2 0xDC2 DUP2 PUSH2 0x1C9A JUMP JUMPDEST PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO ISZERO SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE DUP2 SWAP1 PUSH2 0x181D DUP3 PUSH2 0xEBF 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 PUSH2 0x185F DUP3 PUSH2 0x17CB JUMP JUMPDEST PUSH2 0x18C2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524337323155524953746F726167653A2055524920736574206F66206E6F6E PUSH1 0x44 DUP3 ADD MSTORE PUSH14 0x32BC34B9BA32B73A103A37B5B2B7 PUSH1 0x91 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x8EF JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 DUP3 MLOAD PUSH2 0xA25 SWAP3 DUP5 ADD SWAP1 PUSH2 0x20D3 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x18EC DUP3 PUSH2 0x17CB JUMP JUMPDEST PUSH2 0x194D 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 0x8EF JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1958 DUP4 PUSH2 0xEBF 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 0x1993 JUMPI POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1988 DUP5 PUSH2 0x887 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST DUP1 PUSH2 0x16CF 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 PUSH2 0x16CF JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x19DA DUP3 PUSH2 0xEBF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1A42 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 0x8EF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1AA4 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 0x8EF JUMP JUMPDEST PUSH2 0x1AAF PUSH1 0x0 DUP3 PUSH2 0x17E8 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 0x1AD8 SWAP1 DUP5 SWAP1 PUSH2 0x2757 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 0x1B06 SWAP1 DUP5 SWAP1 PUSH2 0x270C 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 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1BBD 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 0x8EF JUMP JUMPDEST PUSH2 0x1BC6 DUP2 PUSH2 0x17CB JUMP JUMPDEST ISZERO PUSH2 0x1C13 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 0x8EF 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 0x1C3C SWAP1 DUP5 SWAP1 PUSH2 0x270C JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP1 MLOAD DUP4 SWAP3 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 DUP3 SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x7 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 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x1D4E 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 0x8EF 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 0x1DC6 DUP5 DUP5 DUP5 PUSH2 0x19C7 JUMP JUMPDEST PUSH2 0x1DD2 DUP5 DUP5 DUP5 DUP5 PUSH2 0x1EC8 JUMP JUMPDEST PUSH2 0x1567 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP1 PUSH2 0x25B3 JUMP JUMPDEST PUSH1 0x60 PUSH1 0xE DUP1 SLOAD PUSH2 0x804 SWAP1 PUSH2 0x279A JUMP JUMPDEST PUSH1 0x60 PUSH2 0x1E08 DUP3 PUSH2 0x17CB JUMP JUMPDEST PUSH2 0x1E6C 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 0x8EF JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E76 PUSH2 0x1DEE JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x1E96 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x1EC1 JUMP JUMPDEST DUP1 PUSH2 0x1EA0 DUP5 PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x1EB1 SWAP3 SWAP2 SWAP1 PUSH2 0x2534 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO PUSH2 0x1FCA 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 0x1F0C SWAP1 CALLER SWAP1 DUP10 SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH2 0x2563 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1F26 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1F56 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x1F53 SWAP2 DUP2 ADD SWAP1 PUSH2 0x2456 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x1FB0 JUMPI RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0x1F84 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 0x1F89 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP DUP1 MLOAD PUSH2 0x1FA8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP1 PUSH2 0x25B3 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 0x16CF JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH2 0x1FF9 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 0x2023 JUMPI DUP1 PUSH2 0x200D DUP2 PUSH2 0x27D5 JUMP JUMPDEST SWAP2 POP PUSH2 0x201C SWAP1 POP PUSH1 0xA DUP4 PUSH2 0x2724 JUMP JUMPDEST SWAP2 POP PUSH2 0x1FFD JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x203E JUMPI PUSH2 0x203E PUSH2 0x2846 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 0x2068 JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP JUMPDEST DUP5 ISZERO PUSH2 0x16CF JUMPI PUSH2 0x207D PUSH1 0x1 DUP4 PUSH2 0x2757 JUMP JUMPDEST SWAP2 POP PUSH2 0x208A PUSH1 0xA DUP7 PUSH2 0x27F0 JUMP JUMPDEST PUSH2 0x2095 SWAP1 PUSH1 0x30 PUSH2 0x270C JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x20AA JUMPI PUSH2 0x20AA PUSH2 0x2830 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 0x20CC PUSH1 0xA DUP7 PUSH2 0x2724 JUMP JUMPDEST SWAP5 POP PUSH2 0x206C JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x20DF SWAP1 PUSH2 0x279A JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x2101 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x2147 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x211A JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x2147 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x2147 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x2147 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x212C JUMP JUMPDEST POP PUSH2 0x2153 SWAP3 SWAP2 POP PUSH2 0x2157 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x2153 JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x2158 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP4 GT ISZERO PUSH2 0x2186 JUMPI PUSH2 0x2186 PUSH2 0x2846 JUMP JUMPDEST PUSH2 0x2199 PUSH1 0x1F DUP5 ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD PUSH2 0x26DB JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE DUP4 DUP4 DUP4 ADD GT ISZERO PUSH2 0x21AD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 DUP3 PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH1 0x0 PUSH1 0x20 DUP5 DUP4 ADD ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x21DB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x21DB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x2201 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1EC1 DUP4 DUP4 CALLDATALOAD PUSH1 0x20 DUP6 ADD PUSH2 0x216C JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2222 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1EC1 DUP3 PUSH2 0x21C4 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x223E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2247 DUP4 PUSH2 0x21C4 JUMP JUMPDEST SWAP2 POP PUSH2 0x2255 PUSH1 0x20 DUP5 ADD PUSH2 0x21C4 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2273 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x227C DUP5 PUSH2 0x21C4 JUMP JUMPDEST SWAP3 POP PUSH2 0x228A PUSH1 0x20 DUP6 ADD PUSH2 0x21C4 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 0x22B0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x22B9 DUP6 PUSH2 0x21C4 JUMP JUMPDEST SWAP4 POP PUSH2 0x22C7 PUSH1 0x20 DUP7 ADD PUSH2 0x21C4 JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x22EA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 ADD PUSH1 0x1F DUP2 ADD DUP8 SGT PUSH2 0x22FB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x230A DUP8 DUP3 CALLDATALOAD PUSH1 0x20 DUP5 ADD PUSH2 0x216C 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 0x2329 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2332 DUP4 PUSH2 0x21C4 JUMP JUMPDEST SWAP2 POP PUSH2 0x2255 PUSH1 0x20 DUP5 ADD PUSH2 0x21E0 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2353 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x235C DUP4 PUSH2 0x21C4 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x237D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x2395 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x23A9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x23BB JUMPI PUSH2 0x23BB PUSH2 0x2846 JUMP JUMPDEST DUP1 PUSH1 0x5 SHL SWAP2 POP PUSH2 0x23CC DUP5 DUP4 ADD PUSH2 0x26DB JUMP JUMPDEST DUP2 DUP2 MSTORE DUP5 DUP2 ADD SWAP1 DUP5 DUP7 ADD DUP5 DUP7 ADD DUP8 ADD DUP11 LT ISZERO PUSH2 0x23E7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP6 POP JUMPDEST DUP4 DUP7 LT ISZERO PUSH2 0x2411 JUMPI PUSH2 0x23FD DUP2 PUSH2 0x21C4 JUMP JUMPDEST DUP4 MSTORE PUSH1 0x1 SWAP6 SWAP1 SWAP6 ADD SWAP5 SWAP2 DUP7 ADD SWAP2 DUP7 ADD PUSH2 0x23EC JUMP JUMPDEST POP SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2430 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1EC1 DUP3 PUSH2 0x21E0 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x244B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1EC1 DUP2 PUSH2 0x285C JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2468 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x1EC1 DUP2 PUSH2 0x285C JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2485 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x249C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x16CF DUP5 DUP3 DUP6 ADD PUSH2 0x21F0 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x24BA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x24D4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x24F2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x24FE DUP6 DUP3 DUP7 ADD PUSH2 0x21F0 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x2520 DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x276E JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP4 MLOAD PUSH2 0x2546 DUP2 DUP5 PUSH1 0x20 DUP9 ADD PUSH2 0x276E JUMP JUMPDEST DUP4 MLOAD SWAP1 DUP4 ADD SWAP1 PUSH2 0x255A DUP2 DUP4 PUSH1 0x20 DUP9 ADD PUSH2 0x276E JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND DUP3 MSTORE DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x80 PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH2 0x2596 SWAP1 DUP4 ADD DUP5 PUSH2 0x2508 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x1EC1 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x2508 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 0x20 DUP1 DUP3 MSTORE PUSH1 0x30 SWAP1 DUP3 ADD MSTORE PUSH32 0x4D696E7420616D6F756E742077696C6C2065786365656420746F74616C20636F PUSH1 0x40 DUP3 ADD MSTORE PUSH16 0x363632B1BA34B7B71030B6B7BAB73A17 PUSH1 0x81 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x2704 JUMPI PUSH2 0x2704 PUSH2 0x2846 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x271F JUMPI PUSH2 0x271F PUSH2 0x2804 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x2733 JUMPI PUSH2 0x2733 PUSH2 0x281A JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 NOT DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x2752 JUMPI PUSH2 0x2752 PUSH2 0x2804 JUMP JUMPDEST POP MUL SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x2769 JUMPI PUSH2 0x2769 PUSH2 0x2804 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x2789 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x2771 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x1567 JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x27AE JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x27CF 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 0x27E9 JUMPI PUSH2 0x27E9 PUSH2 0x2804 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x27FF JUMPI PUSH2 0x27FF PUSH2 0x281A JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0xDC2 JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xB0 0xEB CREATE2 MLOAD EXTCODESIZE 0xED SLOAD 0xC2 ADDRESS 0xB1 JUMP PUSH3 0xC72670 0xD9 SWAP1 0xBF 0xEA DUP5 PUSH22 0x90146E05196928661F500664736F6C63430008070033 ",
"sourceMap": "37128:4822:0:-:0;;;37318:4;37290:32;;37364:4;37328:40;;37400:1;37374:27;;37430:10;37407:33;;37487:10;37455:42;;37682:208;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;22950:13;;37799:5;;37806:7;;22950:13;;:5;;:13;;;;;:::i;:::-;-1:-1:-1;22973:17:0;;;;:7;;:17;;;;;:::i;:::-;;22884:113;;3864:32;3883:12;:10;;;:12;;:::i;:::-;3864:18;:32::i;:::-;37825:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;37852:31:0::1;37858:7;4051:6:::0;;-1:-1:-1;;;;;4051:6:0;;3979:85;37858:7:::1;37871:9;:11:::0;;;:9:::1;:11;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;37867:15:0::1;::::0;:1:::1;:15;:::i;:::-;37852:5;:31::i;:::-;37682:208:::0;;;37128:4822;;2747:96;2826:10;;2747:96::o;5213:187::-;5305:6;;;-1:-1:-1;;;;;5321:17:0;;;-1:-1:-1;;;;;;5321:17:0;;;;;;;5353:40;;5305:6;;;5321:17;5305:6;;5353:40;;5286:16;;5353:40;5276:124;5213:187;:::o;30572:372::-;-1:-1:-1;;;;;30651:16:0;;30643:61;;;;-1:-1:-1;;;30643:61:0;;2234:2:1;30643:61:0;;;2216:21:1;;;2253:18;;;2246:30;2312:34;2292:18;;;2285:62;2364:18;;30643:61:0;;;;;;;;;28718:4;28741:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28741:16:0;:30;30714:58;;;;-1:-1:-1;;;30714:58:0;;1877:2:1;30714:58:0;;;1859:21:1;1916:2;1896:18;;;1889:30;1955;1935:18;;;1928:58;2003:18;;30714:58:0;1675:352:1;30714:58:0;-1:-1:-1;;;;;30839:13:0;;;;;;:9;:13;;;;;:18;;30856:1;;30839:13;:18;;30856:1;;30839:18;:::i;:::-;;;;-1:-1:-1;;30867:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30867:21:0;-1:-1:-1;;;;;30867:21:0;;;;;;;;30904:33;;30867:16;;;30904:33;;30867:16;;30904:33;30572:372;;:::o;37128:4822::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37128:4822:0;;;-1:-1:-1;37128:4822:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:885:1;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:1;;;221:36;;;237:18;;:::i;:::-;312:2;306:9;280:2;366:13;;-1:-1:-1;;362:22:1;;;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:1:o;904:766::-;1022:6;1030;1038;1091:2;1079:9;1070:7;1066:23;1062:32;1059:52;;;1107:1;1104;1097:12;1059:52;1134:16;;-1:-1:-1;;;;;1199:14:1;;;1196:34;;;1226:1;1223;1216:12;1196:34;1249:61;1302:7;1293:6;1282:9;1278:22;1249:61;:::i;:::-;1239:71;;1356:2;1345:9;1341:18;1335:25;1319:41;;1385:2;1375:8;1372:16;1369:36;;;1401:1;1398;1391:12;1369:36;1424:63;1479:7;1468:8;1457:9;1453:24;1424:63;:::i;:::-;1414:73;;1533:2;1522:9;1518:18;1512:25;1496:41;;1562:2;1552:8;1549:16;1546:36;;;1578:1;1575;1568:12;1546:36;;1601:63;1656:7;1645:8;1634:9;1630:24;1601:63;:::i;:::-;1591:73;;;904:766;;;;;:::o;2393:128::-;2433:3;2464:1;2460:6;2457:1;2454:13;2451:39;;;2470:18;;:::i;:::-;-1:-1:-1;2506:9:1;;2393:128::o;2526:380::-;2605:1;2601:12;;;;2648;;;2669:61;;2723:4;2715:6;2711:17;2701:27;;2669:61;2776:2;2768:6;2765:14;2745:18;2742:38;2739:161;;;2822:10;2817:3;2813:20;2810:1;2803:31;2857:4;2854:1;2847:15;2885:4;2882:1;2875:15;2739:161;;2526:380;;;:::o;2911:135::-;2950:3;-1:-1:-1;;2971:17:1;;2968:43;;;2991:18;;:::i;:::-;-1:-1:-1;3038:1:1;3027:13;;2911:135::o;3051:127::-;3112:10;3107:3;3103:20;3100:1;3093:31;3143:4;3140:1;3133:15;3167:4;3164:1;3157:15;3183:127;3244:10;3239:3;3235:20;3232:1;3225:31;3275:4;3272:1;3265:15;3299:4;3296:1;3289:15;3183:127;37128:4822:0;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_approve_1528": {
"entryPoint": 6120,
"id": 1528,
"parameterSlots": 2,
"returnSlots": 0
},
"@_baseURI_1970": {
"entryPoint": 7662,
"id": 1970,
"parameterSlots": 0,
"returnSlots": 1
},
"@_beforeTokenTransfer_1633": {
"entryPoint": null,
"id": 1633,
"parameterSlots": 3,
"returnSlots": 0
},
"@_checkOnERC721Received_1622": {
"entryPoint": 7880,
"id": 1622,
"parameterSlots": 4,
"returnSlots": 1
},
"@_exists_1242": {
"entryPoint": 6091,
"id": 1242,
"parameterSlots": 1,
"returnSlots": 1
},
"@_isApprovedOrOwner_1283": {
"entryPoint": 6369,
"id": 1283,
"parameterSlots": 2,
"returnSlots": 1
},
"@_mint_1384": {
"entryPoint": 7015,
"id": 1384,
"parameterSlots": 2,
"returnSlots": 0
},
"@_msgSender_213": {
"entryPoint": null,
"id": 213,
"parameterSlots": 0,
"returnSlots": 1
},
"@_safeTransfer_1224": {
"entryPoint": 7611,
"id": 1224,
"parameterSlots": 4,
"returnSlots": 0
},
"@_setApprovalForAll_1560": {
"entryPoint": 7404,
"id": 1560,
"parameterSlots": 3,
"returnSlots": 0
},
"@_setTokenURI_1729": {
"entryPoint": 6230,
"id": 1729,
"parameterSlots": 2,
"returnSlots": 0
},
"@_transferOwnership_325": {
"entryPoint": 7322,
"id": 325,
"parameterSlots": 1,
"returnSlots": 0
},
"@_transfer_1504": {
"entryPoint": 6599,
"id": 1504,
"parameterSlots": 3,
"returnSlots": 0
},
"@addToWhitelistBulk_2289": {
"entryPoint": 5201,
"id": 2289,
"parameterSlots": 1,
"returnSlots": 0
},
"@addToWhitelist_2251": {
"entryPoint": 5847,
"id": 2251,
"parameterSlots": 1,
"returnSlots": 0
},
"@adminMintGiveaways_2231": {
"entryPoint": 3330,
"id": 2231,
"parameterSlots": 1,
"returnSlots": 0
},
"@allowedMintedToken_1781": {
"entryPoint": null,
"id": 1781,
"parameterSlots": 0,
"returnSlots": 0
},
"@approve_1063": {
"entryPoint": 2324,
"id": 1063,
"parameterSlots": 2,
"returnSlots": 0
},
"@balanceOf_921": {
"entryPoint": 4036,
"id": 921,
"parameterSlots": 1,
"returnSlots": 1
},
"@baseURI_1792": {
"entryPoint": 3894,
"id": 1792,
"parameterSlots": 0,
"returnSlots": 0
},
"@changePrice_2018": {
"entryPoint": 5154,
"id": 2018,
"parameterSlots": 1,
"returnSlots": 0
},
"@changeWhiteListPrice_2042": {
"entryPoint": 4225,
"id": 2042,
"parameterSlots": 1,
"returnSlots": 0
},
"@getApproved_1084": {
"entryPoint": 2183,
"id": 1084,
"parameterSlots": 1,
"returnSlots": 1
},
"@getWhitelistMintAmount_2093": {
"entryPoint": null,
"id": 2093,
"parameterSlots": 1,
"returnSlots": 1
},
"@isAddressInWhitelist_2303": {
"entryPoint": null,
"id": 2303,
"parameterSlots": 1,
"returnSlots": 1
},
"@isApprovedForAll_1119": {
"entryPoint": null,
"id": 1119,
"parameterSlots": 2,
"returnSlots": 1
},
"@isContract_345": {
"entryPoint": null,
"id": 345,
"parameterSlots": 1,
"returnSlots": 1
},
"@maxBatch_1784": {
"entryPoint": null,
"id": 1784,
"parameterSlots": 0,
"returnSlots": 0
},
"@name_959": {
"entryPoint": 2037,
"id": 959,
"parameterSlots": 0,
"returnSlots": 1
},
"@ownerOf_949": {
"entryPoint": 3775,
"id": 949,
"parameterSlots": 1,
"returnSlots": 1
},
"@owner_254": {
"entryPoint": null,
"id": 254,
"parameterSlots": 0,
"returnSlots": 1
},
"@price_1787": {
"entryPoint": null,
"id": 1787,
"parameterSlots": 0,
"returnSlots": 0
},
"@publicMint_2142": {
"entryPoint": 2707,
"id": 2142,
"parameterSlots": 1,
"returnSlots": 0
},
"@renounceOwnership_282": {
"entryPoint": 4171,
"id": 282,
"parameterSlots": 0,
"returnSlots": 0
},
"@safeTransferFrom_1165": {
"entryPoint": 3525,
"id": 1165,
"parameterSlots": 3,
"returnSlots": 0
},
"@safeTransferFrom_1195": {
"entryPoint": 5429,
"id": 1195,
"parameterSlots": 4,
"returnSlots": 0
},
"@setAllowedMintedToken_2006": {
"entryPoint": 3552,
"id": 2006,
"parameterSlots": 1,
"returnSlots": 0
},
"@setApprovalForAll_1101": {
"entryPoint": 5143,
"id": 1101,
"parameterSlots": 2,
"returnSlots": 0
},
"@setBaseURI_1982": {
"entryPoint": 3599,
"id": 1982,
"parameterSlots": 1,
"returnSlots": 0
},
"@setMaxBatch_2030": {
"entryPoint": 3283,
"id": 2030,
"parameterSlots": 1,
"returnSlots": 0
},
"@setNormalStart_2069": {
"entryPoint": 5067,
"id": 2069,
"parameterSlots": 1,
"returnSlots": 0
},
"@setTokenURI_2057": {
"entryPoint": 2602,
"id": 2057,
"parameterSlots": 2,
"returnSlots": 0
},
"@setTotalCount_1994": {
"entryPoint": 3660,
"id": 1994,
"parameterSlots": 1,
"returnSlots": 0
},
"@setWhiteListStart_2081": {
"entryPoint": 3707,
"id": 2081,
"parameterSlots": 1,
"returnSlots": 0
},
"@started_1794": {
"entryPoint": null,
"id": 1794,
"parameterSlots": 0,
"returnSlots": 0
},
"@supportsInterface_671": {
"entryPoint": null,
"id": 671,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_897": {
"entryPoint": 1955,
"id": 897,
"parameterSlots": 1,
"returnSlots": 1
},
"@symbol_969": {
"entryPoint": 5128,
"id": 969,
"parameterSlots": 0,
"returnSlots": 1
},
"@toString_84": {
"entryPoint": 8149,
"id": 84,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenURI_1011": {
"entryPoint": 7677,
"id": 1011,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenURI_1707": {
"entryPoint": 5485,
"id": 1707,
"parameterSlots": 1,
"returnSlots": 1
},
"@totalCount_1778": {
"entryPoint": null,
"id": 1778,
"parameterSlots": 0,
"returnSlots": 0
},
"@totalDogs_1775": {
"entryPoint": null,
"id": 1775,
"parameterSlots": 0,
"returnSlots": 0
},
"@totalSupply_1961": {
"entryPoint": null,
"id": 1961,
"parameterSlots": 0,
"returnSlots": 1
},
"@transferFrom_1146": {
"entryPoint": 2658,
"id": 1146,
"parameterSlots": 3,
"returnSlots": 0
},
"@transferOwnership_305": {
"entryPoint": 5939,
"id": 305,
"parameterSlots": 1,
"returnSlots": 0
},
"@whiteListStart_1796": {
"entryPoint": null,
"id": 1796,
"parameterSlots": 0,
"returnSlots": 0
},
"@whitelistMint_2198": {
"entryPoint": 4272,
"id": 2198,
"parameterSlots": 1,
"returnSlots": 0
},
"@whitelistPrice_1790": {
"entryPoint": null,
"id": 1790,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_decode_address": {
"entryPoint": 8644,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_decode_available_length_bytes": {
"entryPoint": 8556,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_bool": {
"entryPoint": 8672,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_decode_string": {
"entryPoint": 8688,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 8720,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 8747,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 8798,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr": {
"entryPoint": 8858,
"id": null,
"parameterSlots": 2,
"returnSlots": 4
},
"abi_decode_tuple_t_addresst_bool": {
"entryPoint": 8982,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 9024,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_array$_t_address_$dyn_memory_ptr": {
"entryPoint": 9066,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bool": {
"entryPoint": 9246,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes4": {
"entryPoint": 9273,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes4_fromMemory": {
"entryPoint": 9302,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptr": {
"entryPoint": 9331,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 9384,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256t_string_memory_ptr": {
"entryPoint": 9409,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_encode_bytes": {
"entryPoint": 9480,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 9524,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed": {
"entryPoint": 9571,
"id": null,
"parameterSlots": 5,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 9632,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_067c50f8312c22d4d76506f779d0d987d72d3c84fe7a279349bdfbfdff8d7cfc__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": 9651,
"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_3979fbb51cad1266c29cb01123e89f428c21bf17c7e4d70beef867e118c63458__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_48218c17f8ce04088299f105a32a3abe13bc2ca0ddd13a4ffbad0000fe8922f0__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7cc07477a380c491e5da46ef78bf24773cbe5d269c981510fb6946973248cdcd__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_8e9ed1638ba7e2d59e03d0957c9339381732ac84d73f65c86c45db1467eafa2a__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 9733,
"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": 9786,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c88123b477b8135a6ca89b2aa816414bb71bee7e49ef39b1a45fff7c13e91e85__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_d0425e0a98b6efaf6c232ea8e8a4b30c0c43903b7afcbb064e4ef2a7d10a90bf__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 9867,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_e77010d1cd84746d4d55bc64a3553056b308493098e3085151b4455976f44694__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_f2b6d2422a7432b235969e5363faab423147609d7bbd9b5b04dd3cf7c391a1fa__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
},
"abi_encode_tuple_t_uint256_t_rational_1_by_1__to_t_uint256_t_uint256__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 9947,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 9996,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_div_t_uint256": {
"entryPoint": 10020,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_mul_t_uint256": {
"entryPoint": 10040,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 10071,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"copy_memory_to_memory": {
"entryPoint": 10094,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 10138,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"increment_t_uint256": {
"entryPoint": 10197,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mod_t_uint256": {
"entryPoint": 10224,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 10244,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x12": {
"entryPoint": 10266,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 10288,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 10310,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"validator_revert_bytes4": {
"entryPoint": 10332,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:20582:1",
"statements": [
{
"nodeType": "YulBlock",
"src": "6:3:1",
"statements": []
},
{
"body": {
"nodeType": "YulBlock",
"src": "88:332:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "132:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "134:16:1"
},
"nodeType": "YulFunctionCall",
"src": "134:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "134:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "104:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "112:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "101:2:1"
},
"nodeType": "YulFunctionCall",
"src": "101:30:1"
},
"nodeType": "YulIf",
"src": "98:56:1"
},
{
"nodeType": "YulAssignment",
"src": "163:66:1",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "200:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "208:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "196:3:1"
},
"nodeType": "YulFunctionCall",
"src": "196:15:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "217:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "213:3:1"
},
"nodeType": "YulFunctionCall",
"src": "213:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "192:3:1"
},
"nodeType": "YulFunctionCall",
"src": "192:29:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "223:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "188:3:1"
},
"nodeType": "YulFunctionCall",
"src": "188:40:1"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "172:15:1"
},
"nodeType": "YulFunctionCall",
"src": "172:57:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "163:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "245:5:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "252:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "238:6:1"
},
"nodeType": "YulFunctionCall",
"src": "238:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "238:21:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "297:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "306:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "309:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "299:6:1"
},
"nodeType": "YulFunctionCall",
"src": "299:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "299:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "278:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "283:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "274:3:1"
},
"nodeType": "YulFunctionCall",
"src": "274:16:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "292:3:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "271:2:1"
},
"nodeType": "YulFunctionCall",
"src": "271:25:1"
},
"nodeType": "YulIf",
"src": "268:45:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "339:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "346:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "335:3:1"
},
"nodeType": "YulFunctionCall",
"src": "335:16:1"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "353:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "358:6:1"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "322:12:1"
},
"nodeType": "YulFunctionCall",
"src": "322:43:1"
},
"nodeType": "YulExpressionStatement",
"src": "322:43:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "389:5:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "396:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "385:3:1"
},
"nodeType": "YulFunctionCall",
"src": "385:18:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "405:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "381:3:1"
},
"nodeType": "YulFunctionCall",
"src": "381:29:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "412:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "374:6:1"
},
"nodeType": "YulFunctionCall",
"src": "374:40:1"
},
"nodeType": "YulExpressionStatement",
"src": "374:40:1"
}
]
},
"name": "abi_decode_available_length_bytes",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "57:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "62:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "70:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "78:5:1",
"type": ""
}
],
"src": "14:406:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "474:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "484:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "506:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "493:12:1"
},
"nodeType": "YulFunctionCall",
"src": "493:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "484:5:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "576:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "585:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "588:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "578:6:1"
},
"nodeType": "YulFunctionCall",
"src": "578:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "578:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "535:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "546:5:1"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "561:3:1",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "566:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "557:3:1"
},
"nodeType": "YulFunctionCall",
"src": "557:11:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "570:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "553:3:1"
},
"nodeType": "YulFunctionCall",
"src": "553:19:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "542:3:1"
},
"nodeType": "YulFunctionCall",
"src": "542:31:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "532:2:1"
},
"nodeType": "YulFunctionCall",
"src": "532:42:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "525:6:1"
},
"nodeType": "YulFunctionCall",
"src": "525:50:1"
},
"nodeType": "YulIf",
"src": "522:70:1"
}
]
},
"name": "abi_decode_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "453:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "464:5:1",
"type": ""
}
],
"src": "425:173:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "649:114:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "659:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "681:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "668:12:1"
},
"nodeType": "YulFunctionCall",
"src": "668:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "659:5:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "741:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "750:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "753:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "743:6:1"
},
"nodeType": "YulFunctionCall",
"src": "743:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "743:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "710:5:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "731:5:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "724:6:1"
},
"nodeType": "YulFunctionCall",
"src": "724:13:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "717:6:1"
},
"nodeType": "YulFunctionCall",
"src": "717:21:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "707:2:1"
},
"nodeType": "YulFunctionCall",
"src": "707:32:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "700:6:1"
},
"nodeType": "YulFunctionCall",
"src": "700:40:1"
},
"nodeType": "YulIf",
"src": "697:60:1"
}
]
},
"name": "abi_decode_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "628:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "639:5:1",
"type": ""
}
],
"src": "603:160:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "821:168:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "870:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "879:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "882:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "872:6:1"
},
"nodeType": "YulFunctionCall",
"src": "872:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "872:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "849:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "857:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "845:3:1"
},
"nodeType": "YulFunctionCall",
"src": "845:17:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "864:3:1"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "841:3:1"
},
"nodeType": "YulFunctionCall",
"src": "841:27:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "834:6:1"
},
"nodeType": "YulFunctionCall",
"src": "834:35:1"
},
"nodeType": "YulIf",
"src": "831:55:1"
},
{
"nodeType": "YulAssignment",
"src": "895:88:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "942:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "950:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "938:3:1"
},
"nodeType": "YulFunctionCall",
"src": "938:17:1"
},
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "970:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "957:12:1"
},
"nodeType": "YulFunctionCall",
"src": "957:20:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "979:3:1"
}
],
"functionName": {
"name": "abi_decode_available_length_bytes",
"nodeType": "YulIdentifier",
"src": "904:33:1"
},
"nodeType": "YulFunctionCall",
"src": "904:79:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "895:5:1"
}
]
}
]
},
"name": "abi_decode_string",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "795:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "803:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "811:5:1",
"type": ""
}
],
"src": "768:221:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1064:116:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1110:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1119:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1122:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1112:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1112:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1112:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1085:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1094:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1081:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1081:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1106:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1077:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1077:32:1"
},
"nodeType": "YulIf",
"src": "1074:52:1"
},
{
"nodeType": "YulAssignment",
"src": "1135:39:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1164:9:1"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "1145:18:1"
},
"nodeType": "YulFunctionCall",
"src": "1145:29:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1135:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1030:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1041:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1053:6:1",
"type": ""
}
],
"src": "994:186:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1272:173:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1318:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1327:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1330:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1320:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1320:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1320:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1293:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1302:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1289:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1289:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1314:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1285:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1285:32:1"
},
"nodeType": "YulIf",
"src": "1282:52:1"
},
{
"nodeType": "YulAssignment",
"src": "1343:39:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1372:9:1"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "1353:18:1"
},
"nodeType": "YulFunctionCall",
"src": "1353:29:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1343:6:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1391:48:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1424:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1435:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1420:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1420:18:1"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "1401:18:1"
},
"nodeType": "YulFunctionCall",
"src": "1401:38:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1391:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1230:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1241:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1253:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1261:6:1",
"type": ""
}
],
"src": "1185:260:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1554:224:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1600:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1609:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1612:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1602:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1602:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1602:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1575:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1584:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1571:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1571:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1596:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1567:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1567:32:1"
},
"nodeType": "YulIf",
"src": "1564:52:1"
},
{
"nodeType": "YulAssignment",
"src": "1625:39:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1654:9:1"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "1635:18:1"
},
"nodeType": "YulFunctionCall",
"src": "1635:29:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1625:6:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1673:48:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1706:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1717:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1702:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1702:18:1"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "1683:18:1"
},
"nodeType": "YulFunctionCall",
"src": "1683:38:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1673:6:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1730:42:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1757:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1768:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1753:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1753:18:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1740:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1740:32:1"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1730:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1504:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1515:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1527:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1535:6:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1543:6:1",
"type": ""
}
],
"src": "1450:328:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1913:536:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1960:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1969:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1972:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1962:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1962:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1962:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1934:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1943:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1930:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1930:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1955:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1926:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1926:33:1"
},
"nodeType": "YulIf",
"src": "1923:53:1"
},
{
"nodeType": "YulAssignment",
"src": "1985:39:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2014:9:1"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "1995:18:1"
},
"nodeType": "YulFunctionCall",
"src": "1995:29:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1985:6:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2033:48:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2066:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2077:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2062:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2062:18:1"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "2043:18:1"
},
"nodeType": "YulFunctionCall",
"src": "2043:38:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2033:6:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2090:42:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2117:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2128:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2113:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2113:18:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2100:12:1"
},
"nodeType": "YulFunctionCall",
"src": "2100:32:1"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "2090:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2141:46:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2172:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2183:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2168:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2168:18:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2155:12:1"
},
"nodeType": "YulFunctionCall",
"src": "2155:32:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2145:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2230:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2239:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2242:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2232:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2232:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "2232:12:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2202:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2210:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2199:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2199:30:1"
},
"nodeType": "YulIf",
"src": "2196:50:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2255:32:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2269:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2280:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2265:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2265:22:1"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "2259:2:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2335:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2344:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2347:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2337:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2337:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "2337:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "2314:2:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2318:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2310:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2310:13:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2325:7:1"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2306:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2306:27:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2299:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2299:35:1"
},
"nodeType": "YulIf",
"src": "2296:55:1"
},
{
"nodeType": "YulAssignment",
"src": "2360:83:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "2408:2:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2412:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2404:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2404:11:1"
},
{
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "2430:2:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2417:12:1"
},
"nodeType": "YulFunctionCall",
"src": "2417:16:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2435:7:1"
}
],
"functionName": {
"name": "abi_decode_available_length_bytes",
"nodeType": "YulIdentifier",
"src": "2370:33:1"
},
"nodeType": "YulFunctionCall",
"src": "2370:73:1"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "2360:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1855:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1866:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1878:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1886:6:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1894:6:1",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "1902:6:1",
"type": ""
}
],
"src": "1783:666:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2538:170:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2584:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2593:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2596:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2586:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2586:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "2586:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2559:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2568:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2555:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2555:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2580:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2551:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2551:32:1"
},
"nodeType": "YulIf",
"src": "2548:52:1"
},
{
"nodeType": "YulAssignment",
"src": "2609:39:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2638:9:1"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "2619:18:1"
},
"nodeType": "YulFunctionCall",
"src": "2619:29:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2609:6:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2657:45:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2687:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2698:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2683:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2683:18:1"
}
],
"functionName": {
"name": "abi_decode_bool",
"nodeType": "YulIdentifier",
"src": "2667:15:1"
},
"nodeType": "YulFunctionCall",
"src": "2667:35:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2657:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2496:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2507:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2519:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2527:6:1",
"type": ""
}
],
"src": "2454:254:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2800:167:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2846:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2855:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2858:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2848:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2848:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "2848:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2821:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2830:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2817:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2817:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2842:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2813:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2813:32:1"
},
"nodeType": "YulIf",
"src": "2810:52:1"
},
{
"nodeType": "YulAssignment",
"src": "2871:39:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2900:9:1"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "2881:18:1"
},
"nodeType": "YulFunctionCall",
"src": "2881:29:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2871:6:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2919:42:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2946:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2957:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2942:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2942:18:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2929:12:1"
},
"nodeType": "YulFunctionCall",
"src": "2929:32:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2919:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2758:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2769:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2781:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2789:6:1",
"type": ""
}
],
"src": "2713:254:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3067:868:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3077:12:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3087:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "3081:2:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3134:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3143:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3146:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3136:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3136:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "3136:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3109:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3118:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3105:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3105:23:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "3130:2:1"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3101:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3101:32:1"
},
"nodeType": "YulIf",
"src": "3098:52:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3159:37:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3186:9:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3173:12:1"
},
"nodeType": "YulFunctionCall",
"src": "3173:23:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3163:6:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "3205:28:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3215:18:1",
"type": "",
"value": "0xffffffffffffffff"
},
"variables": [
{
"name": "_2",
"nodeType": "YulTypedName",
"src": "3209:2:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3260:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3269:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3272:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3262:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3262:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "3262:12:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3248:6:1"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "3256:2:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3245:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3245:14:1"
},
"nodeType": "YulIf",
"src": "3242:34:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3285:32:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3299:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3310:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3295:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3295:22:1"
},
"variables": [
{
"name": "_3",
"nodeType": "YulTypedName",
"src": "3289:2:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3365:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3374:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3377:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3367:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3367:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "3367:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "3344:2:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3348:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3340:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3340:13:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3355:7:1"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3336:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3336:27:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3329:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3329:35:1"
},
"nodeType": "YulIf",
"src": "3326:55:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3390:26:1",
"value": {
"arguments": [
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "3413:2:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3400:12:1"
},
"nodeType": "YulFunctionCall",
"src": "3400:16:1"
},
"variables": [
{
"name": "_4",
"nodeType": "YulTypedName",
"src": "3394:2:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3439:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "3441:16:1"
},
"nodeType": "YulFunctionCall",
"src": "3441:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "3441:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "3431:2:1"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "3435:2:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3428:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3428:10:1"
},
"nodeType": "YulIf",
"src": "3425:36:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3470:20:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3484:1:1",
"type": "",
"value": "5"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "3487:2:1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "3480:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3480:10:1"
},
"variables": [
{
"name": "_5",
"nodeType": "YulTypedName",
"src": "3474:2:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "3499:39:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "_5",
"nodeType": "YulIdentifier",
"src": "3530:2:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "3534:2:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3526:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3526:11:1"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "3510:15:1"
},
"nodeType": "YulFunctionCall",
"src": "3510:28:1"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "3503:3:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "3547:16:1",
"value": {
"name": "dst",
"nodeType": "YulIdentifier",
"src": "3560:3:1"
},
"variables": [
{
"name": "dst_1",
"nodeType": "YulTypedName",
"src": "3551:5:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "3579:3:1"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "3584:2:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3572:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3572:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "3572:15:1"
},
{
"nodeType": "YulAssignment",
"src": "3596:19:1",
"value": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "3607:3:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "3612:2:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3603:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3603:12:1"
},
"variableNames": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "3596:3:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "3624:22:1",
"value": {
"arguments": [
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "3639:2:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "3643:2:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3635:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3635:11:1"
},
"variables": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "3628:3:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3692:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3701:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3704:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3694:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3694:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "3694:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "3669:2:1"
},
{
"name": "_5",
"nodeType": "YulIdentifier",
"src": "3673:2:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3665:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3665:11:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "3678:2:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3661:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3661:20:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3683:7:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3658:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3658:33:1"
},
"nodeType": "YulIf",
"src": "3655:53:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3717:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3726:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "3721:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3781:124:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "3802:3:1"
},
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "3826:3:1"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "3807:18:1"
},
"nodeType": "YulFunctionCall",
"src": "3807:23:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3795:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3795:36:1"
},
"nodeType": "YulExpressionStatement",
"src": "3795:36:1"
},
{
"nodeType": "YulAssignment",
"src": "3844:19:1",
"value": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "3855:3:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "3860:2:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3851:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3851:12:1"
},
"variableNames": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "3844:3:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3876:19:1",
"value": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "3887:3:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "3892:2:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3883:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3883:12:1"
},
"variableNames": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "3876:3:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3747:1:1"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "3750:2:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3744:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3744:9:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "3754:18:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3756:14:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3765:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3768:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3761:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3761:9:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3756:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "3740:3:1",
"statements": []
},
"src": "3736:169:1"
},
{
"nodeType": "YulAssignment",
"src": "3914:15:1",
"value": {
"name": "dst_1",
"nodeType": "YulIdentifier",
"src": "3924:5:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3914:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_array$_t_address_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3033:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3044:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3056:6:1",
"type": ""
}
],
"src": "2972:963:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4007:113:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4053:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4062:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4065:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4055:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4055:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "4055:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4028:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4037:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4024:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4024:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4049:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4020:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4020:32:1"
},
"nodeType": "YulIf",
"src": "4017:52:1"
},
{
"nodeType": "YulAssignment",
"src": "4078:36:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4104:9:1"
}
],
"functionName": {
"name": "abi_decode_bool",
"nodeType": "YulIdentifier",
"src": "4088:15:1"
},
"nodeType": "YulFunctionCall",
"src": "4088:26:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4078:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3973:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3984:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3996:6:1",
"type": ""
}
],
"src": "3940:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4194:176:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4240:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4249:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4252:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4242:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4242:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "4242:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4215:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4224:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4211:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4211:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4236:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4207:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4207:32:1"
},
"nodeType": "YulIf",
"src": "4204:52:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "4265:36:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4291:9:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "4278:12:1"
},
"nodeType": "YulFunctionCall",
"src": "4278:23:1"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4269:5:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4334:5:1"
}
],
"functionName": {
"name": "validator_revert_bytes4",
"nodeType": "YulIdentifier",
"src": "4310:23:1"
},
"nodeType": "YulFunctionCall",
"src": "4310:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "4310:30:1"
},
{
"nodeType": "YulAssignment",
"src": "4349:15:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "4359:5:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4349:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4160:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4171:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4183:6:1",
"type": ""
}
],
"src": "4125:245:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4455:169:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4501:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4510:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4513:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4503:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4503:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "4503:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4476:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4485:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4472:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4472:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4497:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4468:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4468:32:1"
},
"nodeType": "YulIf",
"src": "4465:52:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "4526:29:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4545:9:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4539:5:1"
},
"nodeType": "YulFunctionCall",
"src": "4539:16:1"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4530:5:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4588:5:1"
}
],
"functionName": {
"name": "validator_revert_bytes4",
"nodeType": "YulIdentifier",
"src": "4564:23:1"
},
"nodeType": "YulFunctionCall",
"src": "4564:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "4564:30:1"
},
{
"nodeType": "YulAssignment",
"src": "4603:15:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "4613:5:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4603:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4421:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4432:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4444:6:1",
"type": ""
}
],
"src": "4375:249:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4709:242:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4755:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4764:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4767:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4757:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4757:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "4757:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4730:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4739:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4726:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4726:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4751:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4722:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4722:32:1"
},
"nodeType": "YulIf",
"src": "4719:52:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "4780:37:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4807:9:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "4794:12:1"
},
"nodeType": "YulFunctionCall",
"src": "4794:23:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4784:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4860:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4869:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4872:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4862:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4862:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "4862:12:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4832:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4840:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4829:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4829:30:1"
},
"nodeType": "YulIf",
"src": "4826:50:1"
},
{
"nodeType": "YulAssignment",
"src": "4885:60:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4917:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4928:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4913:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4913:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4937:7:1"
}
],
"functionName": {
"name": "abi_decode_string",
"nodeType": "YulIdentifier",
"src": "4895:17:1"
},
"nodeType": "YulFunctionCall",
"src": "4895:50:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4885:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4675:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4686:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4698:6:1",
"type": ""
}
],
"src": "4629:322:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5026:110:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5072:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5081:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5084:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5074:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5074:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "5074:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5047:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5056:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5043:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5043:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5068:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5039:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5039:32:1"
},
"nodeType": "YulIf",
"src": "5036:52:1"
},
{
"nodeType": "YulAssignment",
"src": "5097:33:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5120:9:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "5107:12:1"
},
"nodeType": "YulFunctionCall",
"src": "5107:23:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5097:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4992:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5003:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5015:6:1",
"type": ""
}
],
"src": "4956:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5238:293:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5284:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5293:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5296:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5286:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5286:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "5286:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5259:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5268:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5255:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5255:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5280:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5251:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5251:32:1"
},
"nodeType": "YulIf",
"src": "5248:52:1"
},
{
"nodeType": "YulAssignment",
"src": "5309:33:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5332:9:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "5319:12:1"
},
"nodeType": "YulFunctionCall",
"src": "5319:23:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5309:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5351:46:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5382:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5393:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5378:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5378:18:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "5365:12:1"
},
"nodeType": "YulFunctionCall",
"src": "5365:32:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5355:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5440:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5449:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5452:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5442:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5442:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "5442:12:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5412:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5420:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5409:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5409:30:1"
},
"nodeType": "YulIf",
"src": "5406:50:1"
},
{
"nodeType": "YulAssignment",
"src": "5465:60:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5497:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5508:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5493:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5493:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5517:7:1"
}
],
"functionName": {
"name": "abi_decode_string",
"nodeType": "YulIdentifier",
"src": "5475:17:1"
},
"nodeType": "YulFunctionCall",
"src": "5475:50:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5465:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5196:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5207:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5219:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5227:6:1",
"type": ""
}
],
"src": "5141:390:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5585:208:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5595:26:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5615:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "5609:5:1"
},
"nodeType": "YulFunctionCall",
"src": "5609:12:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5599:6:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5637:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5642:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5630:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5630:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "5630:19:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5684:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5691:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5680:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5680:16:1"
},
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5702:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5707:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5698:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5698:14:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5714:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "5658:21:1"
},
"nodeType": "YulFunctionCall",
"src": "5658:63:1"
},
"nodeType": "YulExpressionStatement",
"src": "5658:63:1"
},
{
"nodeType": "YulAssignment",
"src": "5730:57:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5745:3:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5758:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5766:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5754:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5754:15:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5775:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "5771:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5771:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5750:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5750:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5741:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5741:39:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5782:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5737:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5737:50:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5730:3:1"
}
]
}
]
},
"name": "abi_encode_bytes",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5562:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5569:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5577:3:1",
"type": ""
}
],
"src": "5536:257:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5985:283:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5995:27:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6015:6:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "6009:5:1"
},
"nodeType": "YulFunctionCall",
"src": "6009:13:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5999:6:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6057:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6065:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6053:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6053:17:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6072:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6077:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "6031:21:1"
},
"nodeType": "YulFunctionCall",
"src": "6031:53:1"
},
"nodeType": "YulExpressionStatement",
"src": "6031:53:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "6093:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6110:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6115:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6106:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6106:16:1"
},
"variables": [
{
"name": "end_1",
"nodeType": "YulTypedName",
"src": "6097:5:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "6131:29:1",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "6153:6:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "6147:5:1"
},
"nodeType": "YulFunctionCall",
"src": "6147:13:1"
},
"variables": [
{
"name": "length_1",
"nodeType": "YulTypedName",
"src": "6135:8:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "6195:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6203:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6191:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6191:17:1"
},
{
"name": "end_1",
"nodeType": "YulIdentifier",
"src": "6210:5:1"
},
{
"name": "length_1",
"nodeType": "YulIdentifier",
"src": "6217:8:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "6169:21:1"
},
"nodeType": "YulFunctionCall",
"src": "6169:57:1"
},
"nodeType": "YulExpressionStatement",
"src": "6169:57:1"
},
{
"nodeType": "YulAssignment",
"src": "6235:27:1",
"value": {
"arguments": [
{
"name": "end_1",
"nodeType": "YulIdentifier",
"src": "6246:5:1"
},
{
"name": "length_1",
"nodeType": "YulIdentifier",
"src": "6253:8:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6242:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6242:20:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6235:3:1"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5953:3:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5958:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5966:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5977:3:1",
"type": ""
}
],
"src": "5798:470:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6374:102:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6384:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6396:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6407:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6392:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6392:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6384:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6426:9:1"
},
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6441:6:1"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6457:3:1",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6462:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "6453:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6453:11:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6466:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6449:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6449:19:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6437:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6437:32:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6419:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6419:51:1"
},
"nodeType": "YulExpressionStatement",
"src": "6419:51:1"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6343:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6354:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6365:4:1",
"type": ""
}
],
"src": "6273:203:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6684:285:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6694:29:1",
"value": {
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6712:3:1",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6717:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "6708:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6708:11:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6721:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6704:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6704:19:1"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "6698:2:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6739:9:1"
},
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6754:6:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "6762:2:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6750:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6750:15:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6732:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6732:34:1"
},
"nodeType": "YulExpressionStatement",
"src": "6732:34:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6786:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6797:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6782:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6782:18:1"
},
{
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "6806:6:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "6814:2:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6802:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6802:15:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6775:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6775:43:1"
},
"nodeType": "YulExpressionStatement",
"src": "6775:43:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6838:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6849:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6834:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6834:18:1"
},
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "6854:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6827:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6827:34:1"
},
"nodeType": "YulExpressionStatement",
"src": "6827:34:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6881:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6892:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6877:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6877:18:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6897:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6870:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6870:31:1"
},
"nodeType": "YulExpressionStatement",
"src": "6870:31:1"
},
{
"nodeType": "YulAssignment",
"src": "6910:53:1",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "6935:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6947:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6958:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6943:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6943:19:1"
}
],
"functionName": {
"name": "abi_encode_bytes",
"nodeType": "YulIdentifier",
"src": "6918:16:1"
},
"nodeType": "YulFunctionCall",
"src": "6918:45:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6910:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6629:9:1",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "6640:6:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "6648:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "6656:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6664:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6675:4:1",
"type": ""
}
],
"src": "6481:488:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7069:92:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7079:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7091:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7102:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7087:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7087:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7079:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7121:9:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7146:6:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "7139:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7139:14:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "7132:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7132:22:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7114:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7114:41:1"
},
"nodeType": "YulExpressionStatement",
"src": "7114:41:1"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7038:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7049:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7060:4:1",
"type": ""
}
],
"src": "6974:187:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7287:98:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7304:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7315:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7297:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7297:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "7297:21:1"
},
{
"nodeType": "YulAssignment",
"src": "7327:52:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7352:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7364:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7375:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7360:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7360:18:1"
}
],
"functionName": {
"name": "abi_encode_bytes",
"nodeType": "YulIdentifier",
"src": "7335:16:1"
},
"nodeType": "YulFunctionCall",
"src": "7335:44:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7327:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7256:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7267:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7278:4:1",
"type": ""
}
],
"src": "7166:219:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7564:173:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7581:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7592:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7574:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7574:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "7574:21:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7615:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7626:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7611:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7611:18:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7631:2:1",
"type": "",
"value": "23"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7604:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7604:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "7604:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7654:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7665:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7650:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7650:18:1"
},
{
"hexValue": "796f752063616e6e6f74206d696e7420616e796d6f7265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "7670:25:1",
"type": "",
"value": "you cannot mint anymore"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7643:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7643:53:1"
},
"nodeType": "YulExpressionStatement",
"src": "7643:53:1"
},
{
"nodeType": "YulAssignment",
"src": "7705:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7717:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7728:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7713:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7713:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7705:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_067c50f8312c22d4d76506f779d0d987d72d3c84fe7a279349bdfbfdff8d7cfc__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7541:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7555:4:1",
"type": ""
}
],
"src": "7390:347:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7916:240:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7933:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7944:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7926:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7926:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "7926:21:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7967:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7978:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7963:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7963:18:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7983:2:1",
"type": "",
"value": "50"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7956:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7956:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "7956:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8006:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8017:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8002:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8002:18:1"
},
{
"hexValue": "4552433732313a207472616e7366657220746f206e6f6e204552433732315265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "8022:34:1",
"type": "",
"value": "ERC721: transfer to non ERC721Re"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7995:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7995:62:1"
},
"nodeType": "YulExpressionStatement",
"src": "7995:62:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8077:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8088:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8073:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8073:18:1"
},
{
"hexValue": "63656976657220696d706c656d656e746572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "8093:20:1",
"type": "",
"value": "ceiver implementer"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8066:6:1"
},
"nodeType": "YulFunctionCall",
"src": "8066:48:1"
},
"nodeType": "YulExpressionStatement",
"src": "8066:48:1"
},
{
"nodeType": "YulAssignment",
"src": "8123:27:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8135:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8146:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8131:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8131:19:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8123:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7893:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7907:4:1",
"type": ""
}
],
"src": "7742:414:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8335:228:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8352:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8363:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8345:6:1"
},
"nodeType": "YulFunctionCall",
"src": "8345:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "8345:21:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8386:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8397:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8382:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8382:18:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8402:2:1",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8375:6:1"
},
"nodeType": "YulFunctionCall",
"src": "8375:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "8375:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8425:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8436:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8421:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8421:18:1"
},
{
"hexValue": "4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061",
"kind": "string",
"nodeType": "YulLiteral",
"src": "8441:34:1",
"type": "",
"value": "Ownable: new owner is the zero a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8414:6:1"
},
"nodeType": "YulFunctionCall",
"src": "8414:62:1"
},
"nodeType": "YulExpressionStatement",
"src": "8414:62:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8496:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8507:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8492:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8492:18:1"
},
{
"hexValue": "646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "8512:8:1",
"type": "",
"value": "ddress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8485:6:1"
},
"nodeType": "YulFunctionCall",
"src": "8485:36:1"
},
"nodeType": "YulExpressionStatement",
"src": "8485:36:1"
},
{
"nodeType": "YulAssignment",
"src": "8530:27:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8542:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8553:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8538:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8538:19:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8530:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8312:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8326:4:1",
"type": ""
}
],
"src": "8161:402:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8742:178:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8759:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8770:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8752:6:1"
},
"nodeType": "YulFunctionCall",
"src": "8752:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "8752:21:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8793:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8804:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8789:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8789:18:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8809:2:1",
"type": "",
"value": "28"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8782:6:1"
},
"nodeType": "YulFunctionCall",
"src": "8782:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "8782:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8832:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8843:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8828:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8828:18:1"
},
{
"hexValue": "4552433732313a20746f6b656e20616c7265616479206d696e746564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "8848:30:1",
"type": "",
"value": "ERC721: token already minted"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8821:6:1"
},
"nodeType": "YulFunctionCall",
"src": "8821:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "8821:58:1"
},
{
"nodeType": "YulAssignment",
"src": "8888:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8900:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8911:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8896:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8896:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8888:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8719:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8733:4:1",
"type": ""
}
],
"src": "8568:352:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9099:167:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9116:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9127:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9109:6:1"
},
"nodeType": "YulFunctionCall",
"src": "9109:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "9109:21:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9150:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9161:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9146:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9146:18:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9166:2:1",
"type": "",
"value": "17"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9139:6:1"
},
"nodeType": "YulFunctionCall",
"src": "9139:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "9139:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9189:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9200:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9185:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9185:18:1"
},
{
"hexValue": "6d696e742077726f6e67206e756d626572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9205:19:1",
"type": "",
"value": "mint wrong number"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9178:6:1"
},
"nodeType": "YulFunctionCall",
"src": "9178:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "9178:47:1"
},
{
"nodeType": "YulAssignment",
"src": "9234:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9246:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9257:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9242:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9242:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9234:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_3979fbb51cad1266c29cb01123e89f428c21bf17c7e4d70beef867e118c63458__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9076:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9090:4:1",
"type": ""
}
],
"src": "8925:341:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9445:226:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9462:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9473:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9455:6:1"
},
"nodeType": "YulFunctionCall",
"src": "9455:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "9455:21:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9496:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9507:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9492:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9492:18:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9512:2:1",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9485:6:1"
},
"nodeType": "YulFunctionCall",
"src": "9485:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "9485:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9535:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9546:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9531:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9531:18:1"
},
{
"hexValue": "4552433732313a207472616e7366657220746f20746865207a65726f20616464",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9551:34:1",
"type": "",
"value": "ERC721: transfer to the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9524:6:1"
},
"nodeType": "YulFunctionCall",
"src": "9524:62:1"
},
"nodeType": "YulExpressionStatement",
"src": "9524:62:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9606:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9617:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9602:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9602:18:1"
},
{
"hexValue": "72657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9622:6:1",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9595:6:1"
},
"nodeType": "YulFunctionCall",
"src": "9595:34:1"
},
"nodeType": "YulExpressionStatement",
"src": "9595:34:1"
},
{
"nodeType": "YulAssignment",
"src": "9638:27:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9650:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9661:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9646:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9646:19:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9638:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9422:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9436:4:1",
"type": ""
}
],
"src": "9271:400:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9850:175:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9867:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9878:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9860:6:1"
},
"nodeType": "YulFunctionCall",
"src": "9860:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "9860:21:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9901:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9912:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9897:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9897:18:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9917:2:1",
"type": "",
"value": "25"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9890:6:1"
},
"nodeType": "YulFunctionCall",
"src": "9890:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "9890:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9940:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9951:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9936:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9936:18:1"
},
{
"hexValue": "4552433732313a20617070726f766520746f2063616c6c6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9956:27:1",
"type": "",
"value": "ERC721: approve to caller"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9929:6:1"
},
"nodeType": "YulFunctionCall",
"src": "9929:55:1"
},
"nodeType": "YulExpressionStatement",
"src": "9929:55:1"
},
{
"nodeType": "YulAssignment",
"src": "9993:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10005:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10016:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10001:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10001:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9993:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9827:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9841:4:1",
"type": ""
}
],
"src": "9676:349:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10204:178:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10221:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10232:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10214:6:1"
},
"nodeType": "YulFunctionCall",
"src": "10214:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "10214:21:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10255:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10266:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10251:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10251:18:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10271:2:1",
"type": "",
"value": "28"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10244:6:1"
},
"nodeType": "YulFunctionCall",
"src": "10244:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "10244:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10294:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10305:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10290:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10290:18:1"
},
{
"hexValue": "4f766572206d696e74206c696d697420666f7220616464726573732e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "10310:30:1",
"type": "",
"value": "Over mint limit for address."
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10283:6:1"
},
"nodeType": "YulFunctionCall",
"src": "10283:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "10283:58:1"
},
{
"nodeType": "YulAssignment",
"src": "10350:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10362:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10373:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10358:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10358:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10350:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_48218c17f8ce04088299f105a32a3abe13bc2ca0ddd13a4ffbad0000fe8922f0__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10181:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10195:4:1",
"type": ""
}
],
"src": "10030:352:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10561:234:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10578:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10589:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10571:6:1"
},
"nodeType": "YulFunctionCall",
"src": "10571:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "10571:21:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10612:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10623:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10608:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10608:18:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10628:2:1",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10601:6:1"
},
"nodeType": "YulFunctionCall",
"src": "10601:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "10601:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10651:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10662:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10647:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10647:18:1"
},
{
"hexValue": "4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578",
"kind": "string",
"nodeType": "YulLiteral",
"src": "10667:34:1",
"type": "",
"value": "ERC721: operator query for nonex"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10640:6:1"
},
"nodeType": "YulFunctionCall",
"src": "10640:62:1"
},
"nodeType": "YulExpressionStatement",
"src": "10640:62:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10722:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10733:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10718:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10718:18:1"
},
{
"hexValue": "697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "10738:14:1",
"type": "",
"value": "istent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10711:6:1"
},
"nodeType": "YulFunctionCall",
"src": "10711:42:1"
},
"nodeType": "YulExpressionStatement",
"src": "10711:42:1"
},
{
"nodeType": "YulAssignment",
"src": "10762:27:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10774:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10785:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10770:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10770:19:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10762:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10538:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10552:4:1",
"type": ""
}
],
"src": "10387:408:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10974:246:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10991:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11002:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10984:6:1"
},
"nodeType": "YulFunctionCall",
"src": "10984:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "10984:21:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11025:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11036:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11021:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11021:18:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11041:2:1",
"type": "",
"value": "56"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11014:6:1"
},
"nodeType": "YulFunctionCall",
"src": "11014:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "11014:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11064:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11075:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11060:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11060:18:1"
},
{
"hexValue": "4552433732313a20617070726f76652063616c6c6572206973206e6f74206f77",
"kind": "string",
"nodeType": "YulLiteral",
"src": "11080:34:1",
"type": "",
"value": "ERC721: approve caller is not ow"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11053:6:1"
},
"nodeType": "YulFunctionCall",
"src": "11053:62:1"
},
"nodeType": "YulExpressionStatement",
"src": "11053:62:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11135:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11146:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11131:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11131:18:1"
},
{
"hexValue": "6e6572206e6f7220617070726f76656420666f7220616c6c",
"kind": "string",
"nodeType": "YulLiteral",
"src": "11151:26:1",
"type": "",
"value": "ner nor approved for all"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11124:6:1"
},
"nodeType": "YulFunctionCall",
"src": "11124:54:1"
},
"nodeType": "YulExpressionStatement",
"src": "11124:54:1"
},
{
"nodeType": "YulAssignment",
"src": "11187:27:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11199:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11210:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11195:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11195:19:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11187:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10951:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10965:4:1",
"type": ""
}
],
"src": "10800:420:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11399:232:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11416:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11427:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11409:6:1"
},
"nodeType": "YulFunctionCall",
"src": "11409:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "11409:21:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11450:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11461:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11446:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11446:18:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11466:2:1",
"type": "",
"value": "42"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11439:6:1"
},
"nodeType": "YulFunctionCall",
"src": "11439:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "11439:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11489:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11500:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11485:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11485:18:1"
},
{
"hexValue": "4552433732313a2062616c616e636520717565727920666f7220746865207a65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "11505:34:1",
"type": "",
"value": "ERC721: balance query for the ze"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11478:6:1"
},
"nodeType": "YulFunctionCall",
"src": "11478:62:1"
},
"nodeType": "YulExpressionStatement",
"src": "11478:62:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11560:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11571:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11556:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11556:18:1"
},
{
"hexValue": "726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "11576:12:1",
"type": "",
"value": "ro address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11549:6:1"
},
"nodeType": "YulFunctionCall",
"src": "11549:40:1"
},
"nodeType": "YulExpressionStatement",
"src": "11549:40:1"
},
{
"nodeType": "YulAssignment",
"src": "11598:27:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11610:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11621:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11606:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11606:19:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11598:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11376:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11390:4:1",
"type": ""
}
],
"src": "11225:406:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11810:231:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11827:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11838:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11820:6:1"
},
"nodeType": "YulFunctionCall",
"src": "11820:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "11820:21:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11861:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11872:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11857:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11857:18:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11877:2:1",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11850:6:1"
},
"nodeType": "YulFunctionCall",
"src": "11850:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "11850:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11900:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11911:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11896:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11896:18:1"
},
{
"hexValue": "4552433732313a206f776e657220717565727920666f72206e6f6e6578697374",
"kind": "string",
"nodeType": "YulLiteral",
"src": "11916:34:1",
"type": "",
"value": "ERC721: owner query for nonexist"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11889:6:1"
},
"nodeType": "YulFunctionCall",
"src": "11889:62:1"
},
"nodeType": "YulExpressionStatement",
"src": "11889:62:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11971:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11982:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11967:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11967:18:1"
},
{
"hexValue": "656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "11987:11:1",
"type": "",
"value": "ent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11960:6:1"
},
"nodeType": "YulFunctionCall",
"src": "11960:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "11960:39:1"
},
{
"nodeType": "YulAssignment",
"src": "12008:27:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12020:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12031:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12016:3:1"
},
"nodeType": "YulFunctionCall",
"src": "12016:19:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12008:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11787:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11801:4:1",
"type": ""
}
],
"src": "11636:405:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12220:236:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12237:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12248:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12230:6:1"
},
"nodeType": "YulFunctionCall",
"src": "12230:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "12230:21:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12271:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12282:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12267:3:1"
},
"nodeType": "YulFunctionCall",
"src": "12267:18:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12287:2:1",
"type": "",
"value": "46"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12260:6:1"
},
"nodeType": "YulFunctionCall",
"src": "12260:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "12260:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12310:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12321:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12306:3:1"
},
"nodeType": "YulFunctionCall",
"src": "12306:18:1"
},
{
"hexValue": "45524337323155524953746f726167653a2055524920736574206f66206e6f6e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12326:34:1",
"type": "",
"value": "ERC721URIStorage: URI set of non"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12299:6:1"
},
"nodeType": "YulFunctionCall",
"src": "12299:62:1"
},
"nodeType": "YulExpressionStatement",
"src": "12299:62:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12381:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12392:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12377:3:1"
},
"nodeType": "YulFunctionCall",
"src": "12377:18:1"
},
{
"hexValue": "6578697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12397:16:1",
"type": "",
"value": "existent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12370:6:1"
},
"nodeType": "YulFunctionCall",
"src": "12370:44:1"
},
"nodeType": "YulExpressionStatement",
"src": "12370:44:1"
},
{
"nodeType": "YulAssignment",
"src": "12423:27:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12435:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12446:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12431:3:1"
},
"nodeType": "YulFunctionCall",
"src": "12431:19:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12423:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12197:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12211:4:1",
"type": ""
}
],
"src": "12046:410:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12635:178:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12652:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12663:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12645:6:1"
},
"nodeType": "YulFunctionCall",
"src": "12645:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "12645:21:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12686:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12697:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12682:3:1"
},
"nodeType": "YulFunctionCall",
"src": "12682:18:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12702:2:1",
"type": "",
"value": "28"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12675:6:1"
},
"nodeType": "YulFunctionCall",
"src": "12675:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "12675:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12725:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12736:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12721:3:1"
},
"nodeType": "YulFunctionCall",
"src": "12721:18:1"
},
{
"hexValue": "496e636f7272656374207472616e73616374696f6e2076616c75652e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12741:30:1",
"type": "",
"value": "Incorrect transaction value."
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12714:6:1"
},
"nodeType": "YulFunctionCall",
"src": "12714:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "12714:58:1"
},
{
"nodeType": "YulAssignment",
"src": "12781:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12793:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12804:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12789:3:1"
},
"nodeType": "YulFunctionCall",
"src": "12789:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12781:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7cc07477a380c491e5da46ef78bf24773cbe5d269c981510fb6946973248cdcd__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12612:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12626:4:1",
"type": ""
}
],
"src": "12461:352:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12992:182:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13009:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13020:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13002:6:1"
},
"nodeType": "YulFunctionCall",
"src": "13002:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "13002:21:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13043:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13054:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13039:3:1"
},
"nodeType": "YulFunctionCall",
"src": "13039:18:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13059:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13032:6:1"
},
"nodeType": "YulFunctionCall",
"src": "13032:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "13032:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13082:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13093:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13078:3:1"
},
"nodeType": "YulFunctionCall",
"src": "13078:18:1"
},
{
"hexValue": "4552433732313a206d696e7420746f20746865207a65726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13098:34:1",
"type": "",
"value": "ERC721: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13071:6:1"
},
"nodeType": "YulFunctionCall",
"src": "13071:62:1"
},
"nodeType": "YulExpressionStatement",
"src": "13071:62:1"
},
{
"nodeType": "YulAssignment",
"src": "13142:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13154:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13165:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13150:3:1"
},
"nodeType": "YulFunctionCall",
"src": "13150:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13142:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12969:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12983:4:1",
"type": ""
}
],
"src": "12818:356:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13353:239:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13370:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13381:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13363:6:1"
},
"nodeType": "YulFunctionCall",
"src": "13363:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "13363:21:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13404:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13415:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13400:3:1"
},
"nodeType": "YulFunctionCall",
"src": "13400:18:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13420:2:1",
"type": "",
"value": "49"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13393:6:1"
},
"nodeType": "YulFunctionCall",
"src": "13393:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "13393:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13443:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13454:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13439:3:1"
},
"nodeType": "YulFunctionCall",
"src": "13439:18:1"
},
{
"hexValue": "45524337323155524953746f726167653a2055524920717565727920666f7220",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13459:34:1",
"type": "",
"value": "ERC721URIStorage: URI query for "
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13432:6:1"
},
"nodeType": "YulFunctionCall",
"src": "13432:62:1"
},
"nodeType": "YulExpressionStatement",
"src": "13432:62:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13514:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13525:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13510:3:1"
},
"nodeType": "YulFunctionCall",
"src": "13510:18:1"
},
{
"hexValue": "6e6f6e6578697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13530:19:1",
"type": "",
"value": "nonexistent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13503:6:1"
},
"nodeType": "YulFunctionCall",
"src": "13503:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "13503:47:1"
},
{
"nodeType": "YulAssignment",
"src": "13559:27:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13571:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13582:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13567:3:1"
},
"nodeType": "YulFunctionCall",
"src": "13567:19:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13559:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_8e9ed1638ba7e2d59e03d0957c9339381732ac84d73f65c86c45db1467eafa2a__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13330:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13344:4:1",
"type": ""
}
],
"src": "13179:413:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13771:234:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13788:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13799:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13781:6:1"
},
"nodeType": "YulFunctionCall",
"src": "13781:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "13781:21:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13822:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13833:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13818:3:1"
},
"nodeType": "YulFunctionCall",
"src": "13818:18:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13838:2:1",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13811:6:1"
},
"nodeType": "YulFunctionCall",
"src": "13811:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "13811:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13861:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13872:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13857:3:1"
},
"nodeType": "YulFunctionCall",
"src": "13857:18:1"
},
{
"hexValue": "4552433732313a20617070726f76656420717565727920666f72206e6f6e6578",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13877:34:1",
"type": "",
"value": "ERC721: approved query for nonex"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13850:6:1"
},
"nodeType": "YulFunctionCall",
"src": "13850:62:1"
},
"nodeType": "YulExpressionStatement",
"src": "13850:62:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13932:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13943:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13928:3:1"
},
"nodeType": "YulFunctionCall",
"src": "13928:18:1"
},
{
"hexValue": "697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13948:14:1",
"type": "",
"value": "istent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13921:6:1"
},
"nodeType": "YulFunctionCall",
"src": "13921:42:1"
},
"nodeType": "YulExpressionStatement",
"src": "13921:42:1"
},
{
"nodeType": "YulAssignment",
"src": "13972:27:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13984:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13995:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13980:3:1"
},
"nodeType": "YulFunctionCall",
"src": "13980:19:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13972:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13748:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13762:4:1",
"type": ""
}
],
"src": "13597:408:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14184:182:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14201:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14212:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14194:6:1"
},
"nodeType": "YulFunctionCall",
"src": "14194:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "14194:21:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14235:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14246:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14231:3:1"
},
"nodeType": "YulFunctionCall",
"src": "14231:18:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14251:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14224:6:1"
},
"nodeType": "YulFunctionCall",
"src": "14224:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "14224:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14274:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14285:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14270:3:1"
},
"nodeType": "YulFunctionCall",
"src": "14270:18:1"
},
{
"hexValue": "4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14290:34:1",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14263:6:1"
},
"nodeType": "YulFunctionCall",
"src": "14263:62:1"
},
"nodeType": "YulExpressionStatement",
"src": "14263:62:1"
},
{
"nodeType": "YulAssignment",
"src": "14334:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14346:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14357:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14342:3:1"
},
"nodeType": "YulFunctionCall",
"src": "14342:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14334:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14161:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14175:4:1",
"type": ""
}
],
"src": "14010:356:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14545:231:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14562:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14573:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14555:6:1"
},
"nodeType": "YulFunctionCall",
"src": "14555:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "14555:21:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14596:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14607:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14592:3:1"
},
"nodeType": "YulFunctionCall",
"src": "14592:18:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14612:2:1",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14585:6:1"
},
"nodeType": "YulFunctionCall",
"src": "14585:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "14585:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14635:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14646:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14631:3:1"
},
"nodeType": "YulFunctionCall",
"src": "14631:18:1"
},
{
"hexValue": "4552433732313a207472616e73666572206f6620746f6b656e20746861742069",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14651:34:1",
"type": "",
"value": "ERC721: transfer of token that i"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14624:6:1"
},
"nodeType": "YulFunctionCall",
"src": "14624:62:1"
},
"nodeType": "YulExpressionStatement",
"src": "14624:62:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14706:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14717:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14702:3:1"
},
"nodeType": "YulFunctionCall",
"src": "14702:18:1"
},
{
"hexValue": "73206e6f74206f776e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14722:11:1",
"type": "",
"value": "s not own"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14695:6:1"
},
"nodeType": "YulFunctionCall",
"src": "14695:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "14695:39:1"
},
{
"nodeType": "YulAssignment",
"src": "14743:27:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14755:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14766:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14751:3:1"
},
"nodeType": "YulFunctionCall",
"src": "14751:19:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14743:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14522:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14536:4:1",
"type": ""
}
],
"src": "14371:405:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14955:237:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14972:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14983:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14965:6:1"
},
"nodeType": "YulFunctionCall",
"src": "14965:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "14965:21:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15006:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15017:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15002:3:1"
},
"nodeType": "YulFunctionCall",
"src": "15002:18:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15022:2:1",
"type": "",
"value": "47"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14995:6:1"
},
"nodeType": "YulFunctionCall",
"src": "14995:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "14995:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15045:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15056:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15041:3:1"
},
"nodeType": "YulFunctionCall",
"src": "15041:18:1"
},
{
"hexValue": "4552433732314d657461646174613a2055524920717565727920666f72206e6f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15061:34:1",
"type": "",
"value": "ERC721Metadata: URI query for no"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15034:6:1"
},
"nodeType": "YulFunctionCall",
"src": "15034:62:1"
},
"nodeType": "YulExpressionStatement",
"src": "15034:62:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15116:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15127:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15112:3:1"
},
"nodeType": "YulFunctionCall",
"src": "15112:18:1"
},
{
"hexValue": "6e6578697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15132:17:1",
"type": "",
"value": "nexistent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15105:6:1"
},
"nodeType": "YulFunctionCall",
"src": "15105:45:1"
},
"nodeType": "YulExpressionStatement",
"src": "15105:45:1"
},
{
"nodeType": "YulAssignment",
"src": "15159:27:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15171:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15182:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15167:3:1"
},
"nodeType": "YulFunctionCall",
"src": "15167:19:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15159:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14932:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14946:4:1",
"type": ""
}
],
"src": "14781:411:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15371:223:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15388:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15399:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15381:6:1"
},
"nodeType": "YulFunctionCall",
"src": "15381:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "15381:21:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15422:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15433:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15418:3:1"
},
"nodeType": "YulFunctionCall",
"src": "15418:18:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15438:2:1",
"type": "",
"value": "33"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15411:6:1"
},
"nodeType": "YulFunctionCall",
"src": "15411:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "15411:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15461:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15472:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15457:3:1"
},
"nodeType": "YulFunctionCall",
"src": "15457:18:1"
},
{
"hexValue": "4552433732313a20617070726f76616c20746f2063757272656e74206f776e65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15477:34:1",
"type": "",
"value": "ERC721: approval to current owne"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15450:6:1"
},
"nodeType": "YulFunctionCall",
"src": "15450:62:1"
},
"nodeType": "YulExpressionStatement",
"src": "15450:62:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15532:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15543:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15528:3:1"
},
"nodeType": "YulFunctionCall",
"src": "15528:18:1"
},
{
"hexValue": "72",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15548:3:1",
"type": "",
"value": "r"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15521:6:1"
},
"nodeType": "YulFunctionCall",
"src": "15521:31:1"
},
"nodeType": "YulExpressionStatement",
"src": "15521:31:1"
},
{
"nodeType": "YulAssignment",
"src": "15561:27:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15573:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15584:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15569:3:1"
},
"nodeType": "YulFunctionCall",
"src": "15569:19:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15561:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15348:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15362:4:1",
"type": ""
}
],
"src": "15197:397:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15773:239:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15790:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15801:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15783:6:1"
},
"nodeType": "YulFunctionCall",
"src": "15783:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "15783:21:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15824:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15835:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15820:3:1"
},
"nodeType": "YulFunctionCall",
"src": "15820:18:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15840:2:1",
"type": "",
"value": "49"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15813:6:1"
},
"nodeType": "YulFunctionCall",
"src": "15813:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "15813:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15863:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15874:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15859:3:1"
},
"nodeType": "YulFunctionCall",
"src": "15859:18:1"
},
{
"hexValue": "4552433732313a207472616e736665722063616c6c6572206973206e6f74206f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15879:34:1",
"type": "",
"value": "ERC721: transfer caller is not o"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15852:6:1"
},
"nodeType": "YulFunctionCall",
"src": "15852:62:1"
},
"nodeType": "YulExpressionStatement",
"src": "15852:62:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15934:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15945:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15930:3:1"
},
"nodeType": "YulFunctionCall",
"src": "15930:18:1"
},
{
"hexValue": "776e6572206e6f7220617070726f766564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15950:19:1",
"type": "",
"value": "wner nor approved"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15923:6:1"
},
"nodeType": "YulFunctionCall",
"src": "15923:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "15923:47:1"
},
{
"nodeType": "YulAssignment",
"src": "15979:27:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15991:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16002:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15987:3:1"
},
"nodeType": "YulFunctionCall",
"src": "15987:19:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15979:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15750:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15764:4:1",
"type": ""
}
],
"src": "15599:413:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16191:166:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16208:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16219:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16201:6:1"
},
"nodeType": "YulFunctionCall",
"src": "16201:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "16201:21:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16242:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16253:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16238:3:1"
},
"nodeType": "YulFunctionCall",
"src": "16238:18:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16258:2:1",
"type": "",
"value": "16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16231:6:1"
},
"nodeType": "YulFunctionCall",
"src": "16231:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "16231:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16281:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16292:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16277:3:1"
},
"nodeType": "YulFunctionCall",
"src": "16277:18:1"
},
{
"hexValue": "4e6f742077686974656c69737465642e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "16297:18:1",
"type": "",
"value": "Not whitelisted."
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16270:6:1"
},
"nodeType": "YulFunctionCall",
"src": "16270:46:1"
},
"nodeType": "YulExpressionStatement",
"src": "16270:46:1"
},
{
"nodeType": "YulAssignment",
"src": "16325:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16337:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16348:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16333:3:1"
},
"nodeType": "YulFunctionCall",
"src": "16333:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16325:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c88123b477b8135a6ca89b2aa816414bb71bee7e49ef39b1a45fff7c13e91e85__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16168:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16182:4:1",
"type": ""
}
],
"src": "16017:340:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16536:238:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16553:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16564:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16546:6:1"
},
"nodeType": "YulFunctionCall",
"src": "16546:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "16546:21:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16587:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16598:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16583:3:1"
},
"nodeType": "YulFunctionCall",
"src": "16583:18:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16603:2:1",
"type": "",
"value": "48"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16576:6:1"
},
"nodeType": "YulFunctionCall",
"src": "16576:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "16576:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16626:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16637:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16622:3:1"
},
"nodeType": "YulFunctionCall",
"src": "16622:18:1"
},
{
"hexValue": "4d696e7420616d6f756e742077696c6c2065786365656420746f74616c20636f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "16642:34:1",
"type": "",
"value": "Mint amount will exceed total co"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16615:6:1"
},
"nodeType": "YulFunctionCall",
"src": "16615:62:1"
},
"nodeType": "YulExpressionStatement",
"src": "16615:62:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16697:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16708:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16693:3:1"
},
"nodeType": "YulFunctionCall",
"src": "16693:18:1"
},
{
"hexValue": "6c6c656374696f6e20616d6f756e742e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "16713:18:1",
"type": "",
"value": "llection amount."
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16686:6:1"
},
"nodeType": "YulFunctionCall",
"src": "16686:46:1"
},
"nodeType": "YulExpressionStatement",
"src": "16686:46:1"
},
{
"nodeType": "YulAssignment",
"src": "16741:27:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16753:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16764:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16749:3:1"
},
"nodeType": "YulFunctionCall",
"src": "16749:19:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16741:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_d0425e0a98b6efaf6c232ea8e8a4b30c0c43903b7afcbb064e4ef2a7d10a90bf__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16513:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16527:4:1",
"type": ""
}
],
"src": "16362:412:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16953:161:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16970:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16981:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16963:6:1"
},
"nodeType": "YulFunctionCall",
"src": "16963:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "16963:21:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17004:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17015:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17000:3:1"
},
"nodeType": "YulFunctionCall",
"src": "17000:18:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17020:2:1",
"type": "",
"value": "11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16993:6:1"
},
"nodeType": "YulFunctionCall",
"src": "16993:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "16993:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17043:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17054:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17039:3:1"
},
"nodeType": "YulFunctionCall",
"src": "17039:18:1"
},
{
"hexValue": "6e6f742073746172746564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "17059:13:1",
"type": "",
"value": "not started"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17032:6:1"
},
"nodeType": "YulFunctionCall",
"src": "17032:41:1"
},
"nodeType": "YulExpressionStatement",
"src": "17032:41:1"
},
{
"nodeType": "YulAssignment",
"src": "17082:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17094:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17105:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17090:3:1"
},
"nodeType": "YulFunctionCall",
"src": "17090:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17082:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_e77010d1cd84746d4d55bc64a3553056b308493098e3085151b4455976f44694__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16930:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16944:4:1",
"type": ""
}
],
"src": "16779:335:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17293:181:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17310:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17321:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17303:6:1"
},
"nodeType": "YulFunctionCall",
"src": "17303:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "17303:21:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17344:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17355:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17340:3:1"
},
"nodeType": "YulFunctionCall",
"src": "17340:18:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17360:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17333:6:1"
},
"nodeType": "YulFunctionCall",
"src": "17333:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "17333:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17383:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17394:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17379:3:1"
},
"nodeType": "YulFunctionCall",
"src": "17379:18:1"
},
{
"hexValue": "48616e67206f6e20626f79732c20796f756c6c2067657420696e20736f6f6e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "17399:33:1",
"type": "",
"value": "Hang on boys, youll get in soon"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17372:6:1"
},
"nodeType": "YulFunctionCall",
"src": "17372:61:1"
},
"nodeType": "YulExpressionStatement",
"src": "17372:61:1"
},
{
"nodeType": "YulAssignment",
"src": "17442:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17454:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17465:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17450:3:1"
},
"nodeType": "YulFunctionCall",
"src": "17450:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17442:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_f2b6d2422a7432b235969e5363faab423147609d7bbd9b5b04dd3cf7c391a1fa__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17270:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17284:4:1",
"type": ""
}
],
"src": "17119:355:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17580:76:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17590:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17602:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17613:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17598:3:1"
},
"nodeType": "YulFunctionCall",
"src": "17598:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17590:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17632:9:1"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "17643:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17625:6:1"
},
"nodeType": "YulFunctionCall",
"src": "17625:25:1"
},
"nodeType": "YulExpressionStatement",
"src": "17625:25:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17549:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "17560:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17571:4:1",
"type": ""
}
],
"src": "17479:177:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17798:119:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17808:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17820:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17831:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17816:3:1"
},
"nodeType": "YulFunctionCall",
"src": "17816:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17808:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17850:9:1"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "17861:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17843:6:1"
},
"nodeType": "YulFunctionCall",
"src": "17843:25:1"
},
"nodeType": "YulExpressionStatement",
"src": "17843:25:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17888:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17899:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17884:3:1"
},
"nodeType": "YulFunctionCall",
"src": "17884:18:1"
},
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "17904:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17877:6:1"
},
"nodeType": "YulFunctionCall",
"src": "17877:34:1"
},
"nodeType": "YulExpressionStatement",
"src": "17877:34:1"
}
]
},
"name": "abi_encode_tuple_t_uint256_t_rational_1_by_1__to_t_uint256_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17759:9:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "17770:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "17778:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17789:4:1",
"type": ""
}
],
"src": "17661:256:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18051:119:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18061:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18073:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18084:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18069:3:1"
},
"nodeType": "YulFunctionCall",
"src": "18069:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18061:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18103:9:1"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "18114:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18096:6:1"
},
"nodeType": "YulFunctionCall",
"src": "18096:25:1"
},
"nodeType": "YulExpressionStatement",
"src": "18096:25:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18141:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18152:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18137:3:1"
},
"nodeType": "YulFunctionCall",
"src": "18137:18:1"
},
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "18157:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18130:6:1"
},
"nodeType": "YulFunctionCall",
"src": "18130:34:1"
},
"nodeType": "YulExpressionStatement",
"src": "18130:34:1"
}
]
},
"name": "abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18012:9:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "18023:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "18031:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18042:4:1",
"type": ""
}
],
"src": "17922:248:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18220:230:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18230:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18246:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "18240:5:1"
},
"nodeType": "YulFunctionCall",
"src": "18240:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18230:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "18258:58:1",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18280:6:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "18296:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18302:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18292:3:1"
},
"nodeType": "YulFunctionCall",
"src": "18292:13:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18311:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "18307:3:1"
},
"nodeType": "YulFunctionCall",
"src": "18307:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "18288:3:1"
},
"nodeType": "YulFunctionCall",
"src": "18288:27:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18276:3:1"
},
"nodeType": "YulFunctionCall",
"src": "18276:40:1"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "18262:10:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "18391:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "18393:16:1"
},
"nodeType": "YulFunctionCall",
"src": "18393:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "18393:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "18334:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18346:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "18331:2:1"
},
"nodeType": "YulFunctionCall",
"src": "18331:34:1"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "18370:10:1"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18382:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "18367:2:1"
},
"nodeType": "YulFunctionCall",
"src": "18367:22:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "18328:2:1"
},
"nodeType": "YulFunctionCall",
"src": "18328:62:1"
},
"nodeType": "YulIf",
"src": "18325:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18429:2:1",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "18433:10:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18422:6:1"
},
"nodeType": "YulFunctionCall",
"src": "18422:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "18422:22:1"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "18200:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "18209:6:1",
"type": ""
}
],
"src": "18175:275:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18503:80:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "18530:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "18532:16:1"
},
"nodeType": "YulFunctionCall",
"src": "18532:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "18532:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "18519:1:1"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "18526:1:1"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "18522:3:1"
},
"nodeType": "YulFunctionCall",
"src": "18522:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "18516:2:1"
},
"nodeType": "YulFunctionCall",
"src": "18516:13:1"
},
"nodeType": "YulIf",
"src": "18513:39:1"
},
{
"nodeType": "YulAssignment",
"src": "18561:16:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "18572:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "18575:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18568:3:1"
},
"nodeType": "YulFunctionCall",
"src": "18568:9:1"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "18561:3:1"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "18486:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "18489:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "18495:3:1",
"type": ""
}
],
"src": "18455:128:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18634:74:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "18657:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "18659:16:1"
},
"nodeType": "YulFunctionCall",
"src": "18659:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "18659:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "18654:1:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "18647:6:1"
},
"nodeType": "YulFunctionCall",
"src": "18647:9:1"
},
"nodeType": "YulIf",
"src": "18644:35:1"
},
{
"nodeType": "YulAssignment",
"src": "18688:14:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "18697:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "18700:1:1"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "18693:3:1"
},
"nodeType": "YulFunctionCall",
"src": "18693:9:1"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "18688:1:1"
}
]
}
]
},
"name": "checked_div_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "18619:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "18622:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "18628:1:1",
"type": ""
}
],
"src": "18588:120:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18765:116:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "18824:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "18826:16:1"
},
"nodeType": "YulFunctionCall",
"src": "18826:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "18826:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "18796:1:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "18789:6:1"
},
"nodeType": "YulFunctionCall",
"src": "18789:9:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "18782:6:1"
},
"nodeType": "YulFunctionCall",
"src": "18782:17:1"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "18804:1:1"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18815:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "18811:3:1"
},
"nodeType": "YulFunctionCall",
"src": "18811:6:1"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "18819:1:1"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "18807:3:1"
},
"nodeType": "YulFunctionCall",
"src": "18807:14:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "18801:2:1"
},
"nodeType": "YulFunctionCall",
"src": "18801:21:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "18778:3:1"
},
"nodeType": "YulFunctionCall",
"src": "18778:45:1"
},
"nodeType": "YulIf",
"src": "18775:71:1"
},
{
"nodeType": "YulAssignment",
"src": "18855:20:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "18870:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "18873:1:1"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "18866:3:1"
},
"nodeType": "YulFunctionCall",
"src": "18866:9:1"
},
"variableNames": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "18855:7:1"
}
]
}
]
},
"name": "checked_mul_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "18744:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "18747:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nodeType": "YulTypedName",
"src": "18753:7:1",
"type": ""
}
],
"src": "18713:168:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18935:76:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "18957:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "18959:16:1"
},
"nodeType": "YulFunctionCall",
"src": "18959:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "18959:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "18951:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "18954:1:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "18948:2:1"
},
"nodeType": "YulFunctionCall",
"src": "18948:8:1"
},
"nodeType": "YulIf",
"src": "18945:34:1"
},
{
"nodeType": "YulAssignment",
"src": "18988:17:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "19000:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "19003:1:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "18996:3:1"
},
"nodeType": "YulFunctionCall",
"src": "18996:9:1"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "18988:4:1"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "18917:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "18920:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "18926:4:1",
"type": ""
}
],
"src": "18886:125:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19069:205:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "19079:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "19088:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "19083:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "19148:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "19173:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "19178:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19169:3:1"
},
"nodeType": "YulFunctionCall",
"src": "19169:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "19192:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "19197:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19188:3:1"
},
"nodeType": "YulFunctionCall",
"src": "19188:11:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "19182:5:1"
},
"nodeType": "YulFunctionCall",
"src": "19182:18:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19162:6:1"
},
"nodeType": "YulFunctionCall",
"src": "19162:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "19162:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "19109:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "19112:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "19106:2:1"
},
"nodeType": "YulFunctionCall",
"src": "19106:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "19120:19:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19122:15:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "19131:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19134:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19127:3:1"
},
"nodeType": "YulFunctionCall",
"src": "19127:10:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "19122:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "19102:3:1",
"statements": []
},
"src": "19098:113:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19237:31:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "19250:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "19255:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19246:3:1"
},
"nodeType": "YulFunctionCall",
"src": "19246:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19264:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19239:6:1"
},
"nodeType": "YulFunctionCall",
"src": "19239:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "19239:27:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "19226:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "19229:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "19223:2:1"
},
"nodeType": "YulFunctionCall",
"src": "19223:13:1"
},
"nodeType": "YulIf",
"src": "19220:48:1"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "19047:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "19052:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "19057:6:1",
"type": ""
}
],
"src": "19016:258:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19334:325:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19344:22:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19358:1:1",
"type": "",
"value": "1"
},
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "19361:4:1"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "19354:3:1"
},
"nodeType": "YulFunctionCall",
"src": "19354:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "19344:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "19375:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "19405:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19411:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "19401:3:1"
},
"nodeType": "YulFunctionCall",
"src": "19401:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "19379:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "19452:31:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19454:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "19468:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19476:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "19464:3:1"
},
"nodeType": "YulFunctionCall",
"src": "19464:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "19454:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "19432:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "19425:6:1"
},
"nodeType": "YulFunctionCall",
"src": "19425:26:1"
},
"nodeType": "YulIf",
"src": "19422:61:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19542:111:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19563:1:1",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19570:3:1",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19575:10:1",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "19566:3:1"
},
"nodeType": "YulFunctionCall",
"src": "19566:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19556:6:1"
},
"nodeType": "YulFunctionCall",
"src": "19556:31:1"
},
"nodeType": "YulExpressionStatement",
"src": "19556:31:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19607:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19610:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19600:6:1"
},
"nodeType": "YulFunctionCall",
"src": "19600:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "19600:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19635:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19638:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "19628:6:1"
},
"nodeType": "YulFunctionCall",
"src": "19628:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "19628:15:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "19498:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "19521:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19529:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "19518:2:1"
},
"nodeType": "YulFunctionCall",
"src": "19518:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "19495:2:1"
},
"nodeType": "YulFunctionCall",
"src": "19495:38:1"
},
"nodeType": "YulIf",
"src": "19492:161:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "19314:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "19323:6:1",
"type": ""
}
],
"src": "19279:380:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19711:88:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "19742:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "19744:16:1"
},
"nodeType": "YulFunctionCall",
"src": "19744:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "19744:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "19727:5:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19738:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "19734:3:1"
},
"nodeType": "YulFunctionCall",
"src": "19734:6:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "19724:2:1"
},
"nodeType": "YulFunctionCall",
"src": "19724:17:1"
},
"nodeType": "YulIf",
"src": "19721:43:1"
},
{
"nodeType": "YulAssignment",
"src": "19773:20:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "19784:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19791:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19780:3:1"
},
"nodeType": "YulFunctionCall",
"src": "19780:13:1"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "19773:3:1"
}
]
}
]
},
"name": "increment_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "19693:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "19703:3:1",
"type": ""
}
],
"src": "19664:135:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19842:74:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "19865:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "19867:16:1"
},
"nodeType": "YulFunctionCall",
"src": "19867:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "19867:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "19862:1:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "19855:6:1"
},
"nodeType": "YulFunctionCall",
"src": "19855:9:1"
},
"nodeType": "YulIf",
"src": "19852:35:1"
},
{
"nodeType": "YulAssignment",
"src": "19896:14:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "19905:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "19908:1:1"
}
],
"functionName": {
"name": "mod",
"nodeType": "YulIdentifier",
"src": "19901:3:1"
},
"nodeType": "YulFunctionCall",
"src": "19901:9:1"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "19896:1:1"
}
]
}
]
},
"name": "mod_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "19827:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "19830:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "19836:1:1",
"type": ""
}
],
"src": "19804:112:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19953:95:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19970:1:1",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19977:3:1",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19982:10:1",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "19973:3:1"
},
"nodeType": "YulFunctionCall",
"src": "19973:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19963:6:1"
},
"nodeType": "YulFunctionCall",
"src": "19963:31:1"
},
"nodeType": "YulExpressionStatement",
"src": "19963:31:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20010:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20013:4:1",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20003:6:1"
},
"nodeType": "YulFunctionCall",
"src": "20003:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "20003:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20034:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20037:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "20027:6:1"
},
"nodeType": "YulFunctionCall",
"src": "20027:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "20027:15:1"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "19921:127:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20085:95:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20102:1:1",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20109:3:1",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20114:10:1",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "20105:3:1"
},
"nodeType": "YulFunctionCall",
"src": "20105:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20095:6:1"
},
"nodeType": "YulFunctionCall",
"src": "20095:31:1"
},
"nodeType": "YulExpressionStatement",
"src": "20095:31:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20142:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20145:4:1",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20135:6:1"
},
"nodeType": "YulFunctionCall",
"src": "20135:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "20135:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20166:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20169:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "20159:6:1"
},
"nodeType": "YulFunctionCall",
"src": "20159:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "20159:15:1"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "20053:127:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20217:95:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20234:1:1",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20241:3:1",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20246:10:1",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "20237:3:1"
},
"nodeType": "YulFunctionCall",
"src": "20237:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20227:6:1"
},
"nodeType": "YulFunctionCall",
"src": "20227:31:1"
},
"nodeType": "YulExpressionStatement",
"src": "20227:31:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20274:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20277:4:1",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20267:6:1"
},
"nodeType": "YulFunctionCall",
"src": "20267:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "20267:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20298:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20301:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "20291:6:1"
},
"nodeType": "YulFunctionCall",
"src": "20291:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "20291:15:1"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "20185:127:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20349:95:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20366:1:1",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20373:3:1",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20378:10:1",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "20369:3:1"
},
"nodeType": "YulFunctionCall",
"src": "20369:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20359:6:1"
},
"nodeType": "YulFunctionCall",
"src": "20359:31:1"
},
"nodeType": "YulExpressionStatement",
"src": "20359:31:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20406:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20409:4:1",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20399:6:1"
},
"nodeType": "YulFunctionCall",
"src": "20399:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "20399:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20430:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20433:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "20423:6:1"
},
"nodeType": "YulFunctionCall",
"src": "20423:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "20423:15:1"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "20317:127:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20493:87:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "20558:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20567:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20570:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "20560:6:1"
},
"nodeType": "YulFunctionCall",
"src": "20560:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "20560:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "20516:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "20527:5:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20538:3:1",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20543:10:1",
"type": "",
"value": "0xffffffff"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "20534:3:1"
},
"nodeType": "YulFunctionCall",
"src": "20534:20:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "20523:3:1"
},
"nodeType": "YulFunctionCall",
"src": "20523:32:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "20513:2:1"
},
"nodeType": "YulFunctionCall",
"src": "20513:43:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "20506:6:1"
},
"nodeType": "YulFunctionCall",
"src": "20506:51:1"
},
"nodeType": "YulIf",
"src": "20503:71:1"
}
]
},
"name": "validator_revert_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "20482:5:1",
"type": ""
}
],
"src": "20449:131:1"
}
]
},
"contents": "{\n { }\n function abi_decode_available_length_bytes(src, length, end) -> array\n {\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n array := allocate_memory(add(and(add(length, 31), not(31)), 0x20))\n mstore(array, length)\n if gt(add(src, length), end) { revert(0, 0) }\n calldatacopy(add(array, 0x20), src, length)\n mstore(add(add(array, 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_string(offset, end) -> array\n {\n if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n array := abi_decode_available_length_bytes(add(offset, 0x20), calldataload(offset), end)\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_array$_t_address_$dyn_memory_ptr(headStart, dataEnd) -> value0\n {\n let _1 := 32\n if slt(sub(dataEnd, headStart), _1) { revert(0, 0) }\n let offset := calldataload(headStart)\n let _2 := 0xffffffffffffffff\n if gt(offset, _2) { revert(0, 0) }\n let _3 := add(headStart, offset)\n if iszero(slt(add(_3, 0x1f), dataEnd)) { revert(0, 0) }\n let _4 := calldataload(_3)\n if gt(_4, _2) { panic_error_0x41() }\n let _5 := shl(5, _4)\n let dst := allocate_memory(add(_5, _1))\n let dst_1 := dst\n mstore(dst, _4)\n dst := add(dst, _1)\n let src := add(_3, _1)\n if gt(add(add(_3, _5), _1), dataEnd) { revert(0, 0) }\n let i := 0\n for { } lt(i, _4) { i := add(i, 1) }\n {\n mstore(dst, abi_decode_address(src))\n dst := add(dst, _1)\n src := add(src, _1)\n }\n value0 := dst_1\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 value0 := abi_decode_string(add(headStart, offset), 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_decode_tuple_t_uint256t_string_memory_ptr(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n value0 := calldataload(headStart)\n let offset := calldataload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n value1 := abi_decode_string(add(headStart, offset), dataEnd)\n }\n function abi_encode_bytes(value, pos) -> end\n {\n let length := mload(value)\n mstore(pos, length)\n copy_memory_to_memory(add(value, 0x20), add(pos, 0x20), length)\n end := add(add(pos, and(add(length, 31), not(31))), 0x20)\n }\n function abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value1, value0) -> end\n {\n let length := mload(value0)\n copy_memory_to_memory(add(value0, 0x20), pos, length)\n let end_1 := add(pos, length)\n let length_1 := mload(value1)\n copy_memory_to_memory(add(value1, 0x20), end_1, length_1)\n end := add(end_1, length_1)\n }\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n }\n function abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n {\n let _1 := sub(shl(160, 1), 1)\n mstore(headStart, and(value0, _1))\n mstore(add(headStart, 32), and(value1, _1))\n mstore(add(headStart, 64), value2)\n mstore(add(headStart, 96), 128)\n tail := abi_encode_bytes(value3, add(headStart, 128))\n }\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, iszero(iszero(value0)))\n }\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n {\n mstore(headStart, 32)\n tail := abi_encode_bytes(value0, add(headStart, 32))\n }\n function abi_encode_tuple_t_stringliteral_067c50f8312c22d4d76506f779d0d987d72d3c84fe7a279349bdfbfdff8d7cfc__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 23)\n mstore(add(headStart, 64), \"you cannot mint anymore\")\n tail := add(headStart, 96)\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_3979fbb51cad1266c29cb01123e89f428c21bf17c7e4d70beef867e118c63458__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 17)\n mstore(add(headStart, 64), \"mint wrong number\")\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_48218c17f8ce04088299f105a32a3abe13bc2ca0ddd13a4ffbad0000fe8922f0__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), \"Over mint limit for address.\")\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_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 46)\n mstore(add(headStart, 64), \"ERC721URIStorage: URI set of non\")\n mstore(add(headStart, 96), \"existent token\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_7cc07477a380c491e5da46ef78bf24773cbe5d269c981510fb6946973248cdcd__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), \"Incorrect transaction value.\")\n tail := add(headStart, 96)\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_8e9ed1638ba7e2d59e03d0957c9339381732ac84d73f65c86c45db1467eafa2a__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), \"ERC721URIStorage: URI query for \")\n mstore(add(headStart, 96), \"nonexistent token\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 44)\n mstore(add(headStart, 64), \"ERC721: approved query for nonex\")\n mstore(add(headStart, 96), \"istent token\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_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_c88123b477b8135a6ca89b2aa816414bb71bee7e49ef39b1a45fff7c13e91e85__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 16)\n mstore(add(headStart, 64), \"Not whitelisted.\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_d0425e0a98b6efaf6c232ea8e8a4b30c0c43903b7afcbb064e4ef2a7d10a90bf__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 48)\n mstore(add(headStart, 64), \"Mint amount will exceed total co\")\n mstore(add(headStart, 96), \"llection amount.\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_e77010d1cd84746d4d55bc64a3553056b308493098e3085151b4455976f44694__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 11)\n mstore(add(headStart, 64), \"not started\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_f2b6d2422a7432b235969e5363faab423147609d7bbd9b5b04dd3cf7c391a1fa__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 31)\n mstore(add(headStart, 64), \"Hang on boys, youll get in soon\")\n tail := add(headStart, 96)\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 abi_encode_tuple_t_uint256_t_rational_1_by_1__to_t_uint256_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n {\n tail := add(headStart, 64)\n mstore(headStart, value0)\n mstore(add(headStart, 32), value1)\n }\n function abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n {\n tail := add(headStart, 64)\n mstore(headStart, value0)\n mstore(add(headStart, 32), value1)\n }\n function allocate_memory(size) -> memPtr\n {\n memPtr := mload(64)\n let newFreePtr := add(memPtr, and(add(size, 31), not(31)))\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\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_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": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "6080604052600436106102515760003560e01c80636c0360eb116101395780639afdf2f3116100b6578063b88d4fde1161007a578063b88d4fde146106c4578063c87b56dd146106e4578063e43252d714610704578063e985e9c514610724578063f2fde38b1461076d578063fc1a1c361461078d57600080fd5b80639afdf2f314610618578063a035b1fe1461064e578063a22cb46514610664578063a2b40d1914610684578063a81c804e146106a457600080fd5b806388eae705116100fd57806388eae705146105685780638da5cb5b14610587578063917bb57f146105a557806395d89b41146105c55780639a313299146105da57600080fd5b80636c0360eb146104eb57806370a0823114610500578063715018a6146105205780637bd6f0cc14610535578063868ff4a21461055557600080fd5b8063308d6c47116101d257806349274ec11161019657806349274ec11461043557806355f804b31461045557806357df110a146104755780635f4f603d146104955780636352211e146104b557806367765b87146104d557600080fd5b8063308d6c47146103b357806334eafb11146103c95780633c49a8a9146103df5780633e427f90146103ff57806342842e0e1461041557600080fd5b806318160ddd1161021957806318160ddd146103275780631f2698ab1461034657806323b872dd146103605780632db1154414610380578063300b23d81461039357600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e5578063162094c414610307575b600080fd5b34801561026257600080fd5b50610276610271366004612439565b6107a3565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a06107f5565b60405161028291906125a0565b3480156102b957600080fd5b506102cd6102c83660046124a8565b610887565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b50610305610300366004612340565b610914565b005b34801561031357600080fd5b506103056103223660046124c1565b610a2a565b34801561033357600080fd5b506008545b604051908152602001610282565b34801561035257600080fd5b50600f546102769060ff1681565b34801561036c57600080fd5b5061030561037b36600461225e565b610a62565b61030561038e3660046124a8565b610a93565b34801561039f57600080fd5b506103056103ae3660046124a8565b610cd3565b3480156103bf57600080fd5b5061033860085481565b3480156103d557600080fd5b5061033860095481565b3480156103eb57600080fd5b506103056103fa366004612210565b610d02565b34801561040b57600080fd5b50610338600a5481565b34801561042157600080fd5b5061030561043036600461225e565b610dc5565b34801561044157600080fd5b506103056104503660046124a8565b610de0565b34801561046157600080fd5b50610305610470366004612473565b610e0f565b34801561048157600080fd5b506103056104903660046124a8565b610e4c565b3480156104a157600080fd5b506103056104b036600461241e565b610e7b565b3480156104c157600080fd5b506102cd6104d03660046124a8565b610ebf565b3480156104e157600080fd5b50610338600b5481565b3480156104f757600080fd5b506102a0610f36565b34801561050c57600080fd5b5061033861051b366004612210565b610fc4565b34801561052c57600080fd5b5061030561104b565b34801561054157600080fd5b506103056105503660046124a8565b611081565b6103056105633660046124a8565b6110b0565b34801561057457600080fd5b50600f5461027690610100900460ff1681565b34801561059357600080fd5b506007546001600160a01b03166102cd565b3480156105b157600080fd5b506103056105c036600461241e565b6113cb565b3480156105d157600080fd5b506102a0611408565b3480156105e657600080fd5b506102766105f5366004612210565b6001600160a01b031660009081526010602052604090205460ff16151560011490565b34801561062457600080fd5b50610338610633366004612210565b6001600160a01b031660009081526011602052604090205490565b34801561065a57600080fd5b50610338600c5481565b34801561067057600080fd5b5061030561067f366004612316565b611417565b34801561069057600080fd5b5061030561069f3660046124a8565b611422565b3480156106b057600080fd5b506103056106bf36600461236a565b611451565b3480156106d057600080fd5b506103056106df36600461229a565b611535565b3480156106f057600080fd5b506102a06106ff3660046124a8565b61156d565b34801561071057600080fd5b5061030561071f366004612210565b6116d7565b34801561073057600080fd5b5061027661073f36600461222b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561077957600080fd5b50610305610788366004612210565b611733565b34801561079957600080fd5b50610338600d5481565b60006001600160e01b031982166380ac58cd60e01b14806107d457506001600160e01b03198216635b5e139f60e01b145b806107ef57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546108049061279a565b80601f01602080910402602001604051908101604052809291908181526020018280546108309061279a565b801561087d5780601f106108525761010080835404028352916020019161087d565b820191906000526020600020905b81548152906001019060200180831161086057829003601f168201915b5050505050905090565b6000610892826117cb565b6108f85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061091f82610ebf565b9050806001600160a01b0316836001600160a01b0316141561098d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108ef565b336001600160a01b03821614806109a957506109a9813361073f565b610a1b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108ef565b610a2583836117e8565b505050565b6007546001600160a01b03163314610a545760405162461bcd60e51b81526004016108ef90612605565b610a5e8282611856565b5050565b610a6c33826118e1565b610a885760405162461bcd60e51b81526004016108ef9061263a565b610a258383836119c7565b600f54819060ff16610ad55760405162461bcd60e51b815260206004820152600b60248201526a1b9bdd081cdd185c9d195960aa1b60448201526064016108ef565b600081118015610ae75750600b548111155b610b275760405162461bcd60e51b815260206004820152601160248201527036b4b73a103bb937b73390373ab6b132b960791b60448201526064016108ef565b600a5481600854610b38919061270c565b1115610b805760405162461bcd60e51b8152602060048201526017602482015276796f752063616e6e6f74206d696e7420616e796d6f726560481b60448201526064016108ef565b60095481600854610b91919061270c565b1115610baf5760405162461bcd60e51b81526004016108ef9061268b565b600c54610bbc9082612738565b3414610c0a5760405162461bcd60e51b815260206004820152601c60248201527f496e636f7272656374207472616e73616374696f6e2076616c75652e0000000060448201526064016108ef565b6007546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015610c43573d6000803e3d6000fd5b5060085433907f6347dea908e37b572d7afa6e86e42abd1597e56020d130ff21c3f4a0b115393790610c7690600161270c565b60408051918252602082018690520160405180910390a260005b82811015610a2557610cc1335b60088054906000610cad836127d5565b90915550610cbc90600161270c565b611b67565b80610ccb816127d5565b915050610c90565b6007546001600160a01b03163314610cfd5760405162461bcd60e51b81526004016108ef90612605565b600b55565b6007546001600160a01b03163314610d2c5760405162461bcd60e51b81526004016108ef90612605565b600954600854610d3d90600161270c565b1115610d5b5760405162461bcd60e51b81526004016108ef9061268b565b806001600160a01b03167f6347dea908e37b572d7afa6e86e42abd1597e56020d130ff21c3f4a0b11539376008546001610d95919061270c565b60408051918252600160208301520160405180910390a260088054610dc2918391906000610cad836127d5565b50565b610a2583838360405180602001604052806000815250611535565b6007546001600160a01b03163314610e0a5760405162461bcd60e51b81526004016108ef90612605565b600a55565b6007546001600160a01b03163314610e395760405162461bcd60e51b81526004016108ef90612605565b8051610a5e90600e9060208401906120d3565b6007546001600160a01b03163314610e765760405162461bcd60e51b81526004016108ef90612605565b600955565b6007546001600160a01b03163314610ea55760405162461bcd60e51b81526004016108ef90612605565b600f80549115156101000261ff0019909216919091179055565b6000818152600260205260408120546001600160a01b0316806107ef5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108ef565b600e8054610f439061279a565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6f9061279a565b8015610fbc5780601f10610f9157610100808354040283529160200191610fbc565b820191906000526020600020905b815481529060010190602001808311610f9f57829003601f168201915b505050505081565b60006001600160a01b03821661102f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108ef565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b031633146110755760405162461bcd60e51b81526004016108ef90612605565b61107f6000611c9a565b565b6007546001600160a01b031633146110ab5760405162461bcd60e51b81526004016108ef90612605565b600d55565b600f548190610100900460ff166111095760405162461bcd60e51b815260206004820152601f60248201527f48616e67206f6e20626f79732c20796f756c6c2067657420696e20736f6f6e0060448201526064016108ef565b3360009081526010602052604090205460ff1615156001146111605760405162461bcd60e51b815260206004820152601060248201526f2737ba103bb434ba32b634b9ba32b21760811b60448201526064016108ef565b600a5481600854611171919061270c565b11156111b95760405162461bcd60e51b8152602060048201526017602482015276796f752063616e6e6f74206d696e7420616e796d6f726560481b60448201526064016108ef565b336000908152601160205260408120546111d4908390612757565b10156112225760405162461bcd60e51b815260206004820152601c60248201527f4f766572206d696e74206c696d697420666f7220616464726573732e0000000060448201526064016108ef565b60095481600854611233919061270c565b11156112515760405162461bcd60e51b81526004016108ef9061268b565b6000811180156112635750600b548111155b6112a35760405162461bcd60e51b815260206004820152601160248201527036b4b73a103bb937b73390373ab6b132b960791b60448201526064016108ef565b600d546112b09082612738565b34146112fe5760405162461bcd60e51b815260206004820152601c60248201527f496e636f7272656374207472616e73616374696f6e2076616c75652e0000000060448201526064016108ef565b6007546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015611337573d6000803e3d6000fd5b503360009081526011602052604081208054849290611357908490612757565b909155505060085433907f6347dea908e37b572d7afa6e86e42abd1597e56020d130ff21c3f4a0b11539379061138e90600161270c565b60408051918252602082018690520160405180910390a260005b82811015610a25576113b933610c9d565b806113c3816127d5565b9150506113a8565b6007546001600160a01b031633146113f55760405162461bcd60e51b81526004016108ef90612605565b600f805460ff1916911515919091179055565b6060600180546108049061279a565b610a5e338383611cec565b6007546001600160a01b0316331461144c5760405162461bcd60e51b81526004016108ef90612605565b600c55565b6007546001600160a01b0316331461147b5760405162461bcd60e51b81526004016108ef90612605565b60005b8151811015610a5e5760016010600084848151811061149f5761149f612830565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055506003601160008484815181106114f6576114f6612830565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550808061152d906127d5565b91505061147e565b61153f33836118e1565b61155b5760405162461bcd60e51b81526004016108ef9061263a565b61156784848484611dbb565b50505050565b6060611578826117cb565b6115de5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b60648201526084016108ef565b600082815260066020526040812080546115f79061279a565b80601f01602080910402602001604051908101604052809291908181526020018280546116239061279a565b80156116705780601f1061164557610100808354040283529160200191611670565b820191906000526020600020905b81548152906001019060200180831161165357829003601f168201915b505050505090506000611681611dee565b9050805160001415611694575092915050565b8151156116c65780826040516020016116ae929190612534565b60405160208183030381529060405292505050919050565b6116cf84611dfd565b949350505050565b6007546001600160a01b031633146117015760405162461bcd60e51b81526004016108ef90612605565b6001600160a01b03166000908152601060209081526040808320805460ff191660011790556011909152902060039055565b6007546001600160a01b0316331461175d5760405162461bcd60e51b81526004016108ef90612605565b6001600160a01b0381166117c25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ef565b610dc281611c9a565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061181d82610ebf565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61185f826117cb565b6118c25760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b60648201526084016108ef565b60008281526006602090815260409091208251610a25928401906120d3565b60006118ec826117cb565b61194d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108ef565b600061195883610ebf565b9050806001600160a01b0316846001600160a01b031614806119935750836001600160a01b031661198884610887565b6001600160a01b0316145b806116cf57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff166116cf565b826001600160a01b03166119da82610ebf565b6001600160a01b031614611a425760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108ef565b6001600160a01b038216611aa45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108ef565b611aaf6000826117e8565b6001600160a01b0383166000908152600360205260408120805460019290611ad8908490612757565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b0690849061270c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b038216611bbd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108ef565b611bc6816117cb565b15611c135760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108ef565b6001600160a01b0382166000908152600360205260408120805460019290611c3c90849061270c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611d4e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108ef565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611dc68484846119c7565b611dd284848484611ec8565b6115675760405162461bcd60e51b81526004016108ef906125b3565b6060600e80546108049061279a565b6060611e08826117cb565b611e6c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108ef565b6000611e76611dee565b90506000815111611e965760405180602001604052806000815250611ec1565b80611ea084611fd5565b604051602001611eb1929190612534565b6040516020818303038152906040525b9392505050565b60006001600160a01b0384163b15611fca57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f0c903390899088908890600401612563565b602060405180830381600087803b158015611f2657600080fd5b505af1925050508015611f56575060408051601f3d908101601f19168201909252611f5391810190612456565b60015b611fb0573d808015611f84576040519150601f19603f3d011682016040523d82523d6000602084013e611f89565b606091505b508051611fa85760405162461bcd60e51b81526004016108ef906125b3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116cf565b506001949350505050565b606081611ff95750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612023578061200d816127d5565b915061201c9050600a83612724565b9150611ffd565b60008167ffffffffffffffff81111561203e5761203e612846565b6040519080825280601f01601f191660200182016040528015612068576020820181803683370190505b5090505b84156116cf5761207d600183612757565b915061208a600a866127f0565b61209590603061270c565b60f81b8183815181106120aa576120aa612830565b60200101906001600160f81b031916908160001a9053506120cc600a86612724565b945061206c565b8280546120df9061279a565b90600052602060002090601f0160209004810192826121015760008555612147565b82601f1061211a57805160ff1916838001178555612147565b82800160010185558215612147579182015b8281111561214757825182559160200191906001019061212c565b50612153929150612157565b5090565b5b808211156121535760008155600101612158565b600067ffffffffffffffff83111561218657612186612846565b612199601f8401601f19166020016126db565b90508281528383830111156121ad57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146121db57600080fd5b919050565b803580151581146121db57600080fd5b600082601f83011261220157600080fd5b611ec18383356020850161216c565b60006020828403121561222257600080fd5b611ec1826121c4565b6000806040838503121561223e57600080fd5b612247836121c4565b9150612255602084016121c4565b90509250929050565b60008060006060848603121561227357600080fd5b61227c846121c4565b925061228a602085016121c4565b9150604084013590509250925092565b600080600080608085870312156122b057600080fd5b6122b9856121c4565b93506122c7602086016121c4565b925060408501359150606085013567ffffffffffffffff8111156122ea57600080fd5b8501601f810187136122fb57600080fd5b61230a8782356020840161216c565b91505092959194509250565b6000806040838503121561232957600080fd5b612332836121c4565b9150612255602084016121e0565b6000806040838503121561235357600080fd5b61235c836121c4565b946020939093013593505050565b6000602080838503121561237d57600080fd5b823567ffffffffffffffff8082111561239557600080fd5b818501915085601f8301126123a957600080fd5b8135818111156123bb576123bb612846565b8060051b91506123cc8483016126db565b8181528481019084860184860187018a10156123e757600080fd5b600095505b83861015612411576123fd816121c4565b8352600195909501949186019186016123ec565b5098975050505050505050565b60006020828403121561243057600080fd5b611ec1826121e0565b60006020828403121561244b57600080fd5b8135611ec18161285c565b60006020828403121561246857600080fd5b8151611ec18161285c565b60006020828403121561248557600080fd5b813567ffffffffffffffff81111561249c57600080fd5b6116cf848285016121f0565b6000602082840312156124ba57600080fd5b5035919050565b600080604083850312156124d457600080fd5b82359150602083013567ffffffffffffffff8111156124f257600080fd5b6124fe858286016121f0565b9150509250929050565b6000815180845261252081602086016020860161276e565b601f01601f19169290920160200192915050565b6000835161254681846020880161276e565b83519083019061255a81836020880161276e565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061259690830184612508565b9695505050505050565b602081526000611ec16020830184612508565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526030908201527f4d696e7420616d6f756e742077696c6c2065786365656420746f74616c20636f60408201526f363632b1ba34b7b71030b6b7bab73a1760811b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561270457612704612846565b604052919050565b6000821982111561271f5761271f612804565b500190565b6000826127335761273361281a565b500490565b600081600019048311821515161561275257612752612804565b500290565b60008282101561276957612769612804565b500390565b60005b83811015612789578181015183820152602001612771565b838111156115675750506000910152565b600181811c908216806127ae57607f821691505b602082108114156127cf57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127e9576127e9612804565b5060010190565b6000826127ff576127ff61281a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610dc257600080fdfea2646970667358221220b0ebf5513bed54c230b15662c72670d990bfea847590146e05196928661f500664736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x251 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6C0360EB GT PUSH2 0x139 JUMPI DUP1 PUSH4 0x9AFDF2F3 GT PUSH2 0xB6 JUMPI DUP1 PUSH4 0xB88D4FDE GT PUSH2 0x7A JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x6C4 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x6E4 JUMPI DUP1 PUSH4 0xE43252D7 EQ PUSH2 0x704 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x724 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x76D JUMPI DUP1 PUSH4 0xFC1A1C36 EQ PUSH2 0x78D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x9AFDF2F3 EQ PUSH2 0x618 JUMPI DUP1 PUSH4 0xA035B1FE EQ PUSH2 0x64E JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x664 JUMPI DUP1 PUSH4 0xA2B40D19 EQ PUSH2 0x684 JUMPI DUP1 PUSH4 0xA81C804E EQ PUSH2 0x6A4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x88EAE705 GT PUSH2 0xFD JUMPI DUP1 PUSH4 0x88EAE705 EQ PUSH2 0x568 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x587 JUMPI DUP1 PUSH4 0x917BB57F EQ PUSH2 0x5A5 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x5C5 JUMPI DUP1 PUSH4 0x9A313299 EQ PUSH2 0x5DA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6C0360EB EQ PUSH2 0x4EB JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x500 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x520 JUMPI DUP1 PUSH4 0x7BD6F0CC EQ PUSH2 0x535 JUMPI DUP1 PUSH4 0x868FF4A2 EQ PUSH2 0x555 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x308D6C47 GT PUSH2 0x1D2 JUMPI DUP1 PUSH4 0x49274EC1 GT PUSH2 0x196 JUMPI DUP1 PUSH4 0x49274EC1 EQ PUSH2 0x435 JUMPI DUP1 PUSH4 0x55F804B3 EQ PUSH2 0x455 JUMPI DUP1 PUSH4 0x57DF110A EQ PUSH2 0x475 JUMPI DUP1 PUSH4 0x5F4F603D EQ PUSH2 0x495 JUMPI DUP1 PUSH4 0x6352211E EQ PUSH2 0x4B5 JUMPI DUP1 PUSH4 0x67765B87 EQ PUSH2 0x4D5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x308D6C47 EQ PUSH2 0x3B3 JUMPI DUP1 PUSH4 0x34EAFB11 EQ PUSH2 0x3C9 JUMPI DUP1 PUSH4 0x3C49A8A9 EQ PUSH2 0x3DF JUMPI DUP1 PUSH4 0x3E427F90 EQ PUSH2 0x3FF JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x415 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x18160DDD GT PUSH2 0x219 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x327 JUMPI DUP1 PUSH4 0x1F2698AB EQ PUSH2 0x346 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x360 JUMPI DUP1 PUSH4 0x2DB11544 EQ PUSH2 0x380 JUMPI DUP1 PUSH4 0x300B23D8 EQ PUSH2 0x393 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x256 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x28B JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x2AD JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x2E5 JUMPI DUP1 PUSH4 0x162094C4 EQ PUSH2 0x307 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x262 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x276 PUSH2 0x271 CALLDATASIZE PUSH1 0x4 PUSH2 0x2439 JUMP JUMPDEST PUSH2 0x7A3 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 0x297 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2A0 PUSH2 0x7F5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x282 SWAP2 SWAP1 PUSH2 0x25A0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2B9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2CD PUSH2 0x2C8 CALLDATASIZE PUSH1 0x4 PUSH2 0x24A8 JUMP JUMPDEST PUSH2 0x887 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x282 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2F1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x305 PUSH2 0x300 CALLDATASIZE PUSH1 0x4 PUSH2 0x2340 JUMP JUMPDEST PUSH2 0x914 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x313 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x305 PUSH2 0x322 CALLDATASIZE PUSH1 0x4 PUSH2 0x24C1 JUMP JUMPDEST PUSH2 0xA2A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x333 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x8 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x282 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x352 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0xF SLOAD PUSH2 0x276 SWAP1 PUSH1 0xFF AND DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x36C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x305 PUSH2 0x37B CALLDATASIZE PUSH1 0x4 PUSH2 0x225E JUMP JUMPDEST PUSH2 0xA62 JUMP JUMPDEST PUSH2 0x305 PUSH2 0x38E CALLDATASIZE PUSH1 0x4 PUSH2 0x24A8 JUMP JUMPDEST PUSH2 0xA93 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x39F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x305 PUSH2 0x3AE CALLDATASIZE PUSH1 0x4 PUSH2 0x24A8 JUMP JUMPDEST PUSH2 0xCD3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3BF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x338 PUSH1 0x8 SLOAD DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3D5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x338 PUSH1 0x9 SLOAD DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3EB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x305 PUSH2 0x3FA CALLDATASIZE PUSH1 0x4 PUSH2 0x2210 JUMP JUMPDEST PUSH2 0xD02 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x40B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x338 PUSH1 0xA SLOAD DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x421 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x305 PUSH2 0x430 CALLDATASIZE PUSH1 0x4 PUSH2 0x225E JUMP JUMPDEST PUSH2 0xDC5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x441 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x305 PUSH2 0x450 CALLDATASIZE PUSH1 0x4 PUSH2 0x24A8 JUMP JUMPDEST PUSH2 0xDE0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x461 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x305 PUSH2 0x470 CALLDATASIZE PUSH1 0x4 PUSH2 0x2473 JUMP JUMPDEST PUSH2 0xE0F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x481 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x305 PUSH2 0x490 CALLDATASIZE PUSH1 0x4 PUSH2 0x24A8 JUMP JUMPDEST PUSH2 0xE4C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4A1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x305 PUSH2 0x4B0 CALLDATASIZE PUSH1 0x4 PUSH2 0x241E JUMP JUMPDEST PUSH2 0xE7B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4C1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2CD PUSH2 0x4D0 CALLDATASIZE PUSH1 0x4 PUSH2 0x24A8 JUMP JUMPDEST PUSH2 0xEBF JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4E1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x338 PUSH1 0xB SLOAD DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4F7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2A0 PUSH2 0xF36 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x50C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x338 PUSH2 0x51B CALLDATASIZE PUSH1 0x4 PUSH2 0x2210 JUMP JUMPDEST PUSH2 0xFC4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x52C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x305 PUSH2 0x104B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x541 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x305 PUSH2 0x550 CALLDATASIZE PUSH1 0x4 PUSH2 0x24A8 JUMP JUMPDEST PUSH2 0x1081 JUMP JUMPDEST PUSH2 0x305 PUSH2 0x563 CALLDATASIZE PUSH1 0x4 PUSH2 0x24A8 JUMP JUMPDEST PUSH2 0x10B0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x574 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0xF SLOAD PUSH2 0x276 SWAP1 PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x593 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2CD JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5B1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x305 PUSH2 0x5C0 CALLDATASIZE PUSH1 0x4 PUSH2 0x241E JUMP JUMPDEST PUSH2 0x13CB JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5D1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2A0 PUSH2 0x1408 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5E6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x276 PUSH2 0x5F5 CALLDATASIZE PUSH1 0x4 PUSH2 0x2210 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x10 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND ISZERO ISZERO PUSH1 0x1 EQ SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x624 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x338 PUSH2 0x633 CALLDATASIZE PUSH1 0x4 PUSH2 0x2210 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x11 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x65A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x338 PUSH1 0xC SLOAD DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x670 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x305 PUSH2 0x67F CALLDATASIZE PUSH1 0x4 PUSH2 0x2316 JUMP JUMPDEST PUSH2 0x1417 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x690 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x305 PUSH2 0x69F CALLDATASIZE PUSH1 0x4 PUSH2 0x24A8 JUMP JUMPDEST PUSH2 0x1422 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6B0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x305 PUSH2 0x6BF CALLDATASIZE PUSH1 0x4 PUSH2 0x236A JUMP JUMPDEST PUSH2 0x1451 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6D0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x305 PUSH2 0x6DF CALLDATASIZE PUSH1 0x4 PUSH2 0x229A JUMP JUMPDEST PUSH2 0x1535 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6F0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2A0 PUSH2 0x6FF CALLDATASIZE PUSH1 0x4 PUSH2 0x24A8 JUMP JUMPDEST PUSH2 0x156D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x710 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x305 PUSH2 0x71F CALLDATASIZE PUSH1 0x4 PUSH2 0x2210 JUMP JUMPDEST PUSH2 0x16D7 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x730 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x276 PUSH2 0x73F CALLDATASIZE PUSH1 0x4 PUSH2 0x222B 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 0x779 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x305 PUSH2 0x788 CALLDATASIZE PUSH1 0x4 PUSH2 0x2210 JUMP JUMPDEST PUSH2 0x1733 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x799 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x338 PUSH1 0xD SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x80AC58CD PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x7D4 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x5B5E139F PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x7EF JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x804 SWAP1 PUSH2 0x279A 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 0x830 SWAP1 PUSH2 0x279A JUMP JUMPDEST DUP1 ISZERO PUSH2 0x87D JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x852 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x87D 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 0x860 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x892 DUP3 PUSH2 0x17CB JUMP JUMPDEST PUSH2 0x8F8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76656420717565727920666F72206E6F6E6578 PUSH1 0x44 DUP3 ADD MSTORE PUSH12 0x34B9BA32B73A103A37B5B2B7 PUSH1 0xA1 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x91F DUP3 PUSH2 0xEBF 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 0x98D 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 0x8EF JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND EQ DUP1 PUSH2 0x9A9 JUMPI POP PUSH2 0x9A9 DUP2 CALLER PUSH2 0x73F JUMP JUMPDEST PUSH2 0xA1B 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 0x8EF JUMP JUMPDEST PUSH2 0xA25 DUP4 DUP4 PUSH2 0x17E8 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xA54 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP1 PUSH2 0x2605 JUMP JUMPDEST PUSH2 0xA5E DUP3 DUP3 PUSH2 0x1856 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0xA6C CALLER DUP3 PUSH2 0x18E1 JUMP JUMPDEST PUSH2 0xA88 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP1 PUSH2 0x263A JUMP JUMPDEST PUSH2 0xA25 DUP4 DUP4 DUP4 PUSH2 0x19C7 JUMP JUMPDEST PUSH1 0xF SLOAD DUP2 SWAP1 PUSH1 0xFF AND PUSH2 0xAD5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xB PUSH1 0x24 DUP3 ADD MSTORE PUSH11 0x1B9BDD081CDD185C9D1959 PUSH1 0xAA SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x8EF JUMP JUMPDEST PUSH1 0x0 DUP2 GT DUP1 ISZERO PUSH2 0xAE7 JUMPI POP PUSH1 0xB SLOAD DUP2 GT ISZERO JUMPDEST PUSH2 0xB27 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x36B4B73A103BB937B73390373AB6B132B9 PUSH1 0x79 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x8EF JUMP JUMPDEST PUSH1 0xA SLOAD DUP2 PUSH1 0x8 SLOAD PUSH2 0xB38 SWAP2 SWAP1 PUSH2 0x270C JUMP JUMPDEST GT ISZERO PUSH2 0xB80 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x17 PUSH1 0x24 DUP3 ADD MSTORE PUSH23 0x796F752063616E6E6F74206D696E7420616E796D6F7265 PUSH1 0x48 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x8EF JUMP JUMPDEST PUSH1 0x9 SLOAD DUP2 PUSH1 0x8 SLOAD PUSH2 0xB91 SWAP2 SWAP1 PUSH2 0x270C JUMP JUMPDEST GT ISZERO PUSH2 0xBAF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP1 PUSH2 0x268B JUMP JUMPDEST PUSH1 0xC SLOAD PUSH2 0xBBC SWAP1 DUP3 PUSH2 0x2738 JUMP JUMPDEST CALLVALUE EQ PUSH2 0xC0A 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 0x496E636F7272656374207472616E73616374696F6E2076616C75652E00000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x8EF JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 CALLVALUE DUP1 ISZERO PUSH2 0x8FC MUL SWAP2 PUSH1 0x0 DUP2 DUP2 DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP ISZERO DUP1 ISZERO PUSH2 0xC43 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP PUSH1 0x8 SLOAD CALLER SWAP1 PUSH32 0x6347DEA908E37B572D7AFA6E86E42ABD1597E56020D130FF21C3F4A0B1153937 SWAP1 PUSH2 0xC76 SWAP1 PUSH1 0x1 PUSH2 0x270C JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP7 SWAP1 MSTORE ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0xA25 JUMPI PUSH2 0xCC1 CALLER JUMPDEST PUSH1 0x8 DUP1 SLOAD SWAP1 PUSH1 0x0 PUSH2 0xCAD DUP4 PUSH2 0x27D5 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0xCBC SWAP1 PUSH1 0x1 PUSH2 0x270C JUMP JUMPDEST PUSH2 0x1B67 JUMP JUMPDEST DUP1 PUSH2 0xCCB DUP2 PUSH2 0x27D5 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xC90 JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xCFD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP1 PUSH2 0x2605 JUMP JUMPDEST PUSH1 0xB SSTORE JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xD2C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP1 PUSH2 0x2605 JUMP JUMPDEST PUSH1 0x9 SLOAD PUSH1 0x8 SLOAD PUSH2 0xD3D SWAP1 PUSH1 0x1 PUSH2 0x270C JUMP JUMPDEST GT ISZERO PUSH2 0xD5B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP1 PUSH2 0x268B JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x6347DEA908E37B572D7AFA6E86E42ABD1597E56020D130FF21C3F4A0B1153937 PUSH1 0x8 SLOAD PUSH1 0x1 PUSH2 0xD95 SWAP2 SWAP1 PUSH2 0x270C JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP2 DUP3 MSTORE PUSH1 0x1 PUSH1 0x20 DUP4 ADD MSTORE ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH1 0x8 DUP1 SLOAD PUSH2 0xDC2 SWAP2 DUP4 SWAP2 SWAP1 PUSH1 0x0 PUSH2 0xCAD DUP4 PUSH2 0x27D5 JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0xA25 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x1535 JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xE0A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP1 PUSH2 0x2605 JUMP JUMPDEST PUSH1 0xA SSTORE JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xE39 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP1 PUSH2 0x2605 JUMP JUMPDEST DUP1 MLOAD PUSH2 0xA5E SWAP1 PUSH1 0xE SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH2 0x20D3 JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xE76 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP1 PUSH2 0x2605 JUMP JUMPDEST PUSH1 0x9 SSTORE JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xEA5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP1 PUSH2 0x2605 JUMP JUMPDEST PUSH1 0xF DUP1 SLOAD SWAP2 ISZERO ISZERO PUSH2 0x100 MUL PUSH2 0xFF00 NOT SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE 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 0x7EF 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 0x8EF JUMP JUMPDEST PUSH1 0xE DUP1 SLOAD PUSH2 0xF43 SWAP1 PUSH2 0x279A 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 0xF6F SWAP1 PUSH2 0x279A JUMP JUMPDEST DUP1 ISZERO PUSH2 0xFBC JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xF91 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xFBC 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 0xF9F JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x102F 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 0x8EF 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 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x1075 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP1 PUSH2 0x2605 JUMP JUMPDEST PUSH2 0x107F PUSH1 0x0 PUSH2 0x1C9A JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x10AB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP1 PUSH2 0x2605 JUMP JUMPDEST PUSH1 0xD SSTORE JUMP JUMPDEST PUSH1 0xF SLOAD DUP2 SWAP1 PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND PUSH2 0x1109 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x48616E67206F6E20626F79732C20796F756C6C2067657420696E20736F6F6E00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x8EF JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x10 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND ISZERO ISZERO PUSH1 0x1 EQ PUSH2 0x1160 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x10 PUSH1 0x24 DUP3 ADD MSTORE PUSH16 0x2737BA103BB434BA32B634B9BA32B217 PUSH1 0x81 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x8EF JUMP JUMPDEST PUSH1 0xA SLOAD DUP2 PUSH1 0x8 SLOAD PUSH2 0x1171 SWAP2 SWAP1 PUSH2 0x270C JUMP JUMPDEST GT ISZERO PUSH2 0x11B9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x17 PUSH1 0x24 DUP3 ADD MSTORE PUSH23 0x796F752063616E6E6F74206D696E7420616E796D6F7265 PUSH1 0x48 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x8EF JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x11 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH2 0x11D4 SWAP1 DUP4 SWAP1 PUSH2 0x2757 JUMP JUMPDEST LT ISZERO PUSH2 0x1222 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 0x4F766572206D696E74206C696D697420666F7220616464726573732E00000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x8EF JUMP JUMPDEST PUSH1 0x9 SLOAD DUP2 PUSH1 0x8 SLOAD PUSH2 0x1233 SWAP2 SWAP1 PUSH2 0x270C JUMP JUMPDEST GT ISZERO PUSH2 0x1251 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP1 PUSH2 0x268B JUMP JUMPDEST PUSH1 0x0 DUP2 GT DUP1 ISZERO PUSH2 0x1263 JUMPI POP PUSH1 0xB SLOAD DUP2 GT ISZERO JUMPDEST PUSH2 0x12A3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x36B4B73A103BB937B73390373AB6B132B9 PUSH1 0x79 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x8EF JUMP JUMPDEST PUSH1 0xD SLOAD PUSH2 0x12B0 SWAP1 DUP3 PUSH2 0x2738 JUMP JUMPDEST CALLVALUE EQ PUSH2 0x12FE 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 0x496E636F7272656374207472616E73616374696F6E2076616C75652E00000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x8EF JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 CALLVALUE DUP1 ISZERO PUSH2 0x8FC MUL SWAP2 PUSH1 0x0 DUP2 DUP2 DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP ISZERO DUP1 ISZERO PUSH2 0x1337 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x11 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x1357 SWAP1 DUP5 SWAP1 PUSH2 0x2757 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x8 SLOAD CALLER SWAP1 PUSH32 0x6347DEA908E37B572D7AFA6E86E42ABD1597E56020D130FF21C3F4A0B1153937 SWAP1 PUSH2 0x138E SWAP1 PUSH1 0x1 PUSH2 0x270C JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP7 SWAP1 MSTORE ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0xA25 JUMPI PUSH2 0x13B9 CALLER PUSH2 0xC9D JUMP JUMPDEST DUP1 PUSH2 0x13C3 DUP2 PUSH2 0x27D5 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x13A8 JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x13F5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP1 PUSH2 0x2605 JUMP JUMPDEST PUSH1 0xF DUP1 SLOAD PUSH1 0xFF NOT AND SWAP2 ISZERO ISZERO SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x804 SWAP1 PUSH2 0x279A JUMP JUMPDEST PUSH2 0xA5E CALLER DUP4 DUP4 PUSH2 0x1CEC JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x144C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP1 PUSH2 0x2605 JUMP JUMPDEST PUSH1 0xC SSTORE JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x147B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP1 PUSH2 0x2605 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 MLOAD DUP2 LT ISZERO PUSH2 0xA5E JUMPI PUSH1 0x1 PUSH1 0x10 PUSH1 0x0 DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x149F JUMPI PUSH2 0x149F PUSH2 0x2830 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x3 PUSH1 0x11 PUSH1 0x0 DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x14F6 JUMPI PUSH2 0x14F6 PUSH2 0x2830 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP1 DUP1 PUSH2 0x152D SWAP1 PUSH2 0x27D5 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x147E JUMP JUMPDEST PUSH2 0x153F CALLER DUP4 PUSH2 0x18E1 JUMP JUMPDEST PUSH2 0x155B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP1 PUSH2 0x263A JUMP JUMPDEST PUSH2 0x1567 DUP5 DUP5 DUP5 DUP5 PUSH2 0x1DBB JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x1578 DUP3 PUSH2 0x17CB JUMP JUMPDEST PUSH2 0x15DE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x31 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524337323155524953746F726167653A2055524920717565727920666F7220 PUSH1 0x44 DUP3 ADD MSTORE PUSH17 0x3737B732BC34B9BA32B73A103A37B5B2B7 PUSH1 0x79 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x8EF JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH2 0x15F7 SWAP1 PUSH2 0x279A 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 0x1623 SWAP1 PUSH2 0x279A JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1670 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1645 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x1670 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 0x1653 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP PUSH1 0x0 PUSH2 0x1681 PUSH2 0x1DEE JUMP JUMPDEST SWAP1 POP DUP1 MLOAD PUSH1 0x0 EQ ISZERO PUSH2 0x1694 JUMPI POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP2 MLOAD ISZERO PUSH2 0x16C6 JUMPI DUP1 DUP3 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x16AE SWAP3 SWAP2 SWAP1 PUSH2 0x2534 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP3 POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x16CF DUP5 PUSH2 0x1DFD JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x1701 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP1 PUSH2 0x2605 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x10 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE PUSH1 0x11 SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 PUSH1 0x3 SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x175D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP1 PUSH2 0x2605 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x17C2 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 0x8EF JUMP JUMPDEST PUSH2 0xDC2 DUP2 PUSH2 0x1C9A JUMP JUMPDEST PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO ISZERO SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE DUP2 SWAP1 PUSH2 0x181D DUP3 PUSH2 0xEBF 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 PUSH2 0x185F DUP3 PUSH2 0x17CB JUMP JUMPDEST PUSH2 0x18C2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524337323155524953746F726167653A2055524920736574206F66206E6F6E PUSH1 0x44 DUP3 ADD MSTORE PUSH14 0x32BC34B9BA32B73A103A37B5B2B7 PUSH1 0x91 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x8EF JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 DUP3 MLOAD PUSH2 0xA25 SWAP3 DUP5 ADD SWAP1 PUSH2 0x20D3 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x18EC DUP3 PUSH2 0x17CB JUMP JUMPDEST PUSH2 0x194D 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 0x8EF JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1958 DUP4 PUSH2 0xEBF 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 0x1993 JUMPI POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1988 DUP5 PUSH2 0x887 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST DUP1 PUSH2 0x16CF 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 PUSH2 0x16CF JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x19DA DUP3 PUSH2 0xEBF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1A42 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 0x8EF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1AA4 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 0x8EF JUMP JUMPDEST PUSH2 0x1AAF PUSH1 0x0 DUP3 PUSH2 0x17E8 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 0x1AD8 SWAP1 DUP5 SWAP1 PUSH2 0x2757 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 0x1B06 SWAP1 DUP5 SWAP1 PUSH2 0x270C 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 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1BBD 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 0x8EF JUMP JUMPDEST PUSH2 0x1BC6 DUP2 PUSH2 0x17CB JUMP JUMPDEST ISZERO PUSH2 0x1C13 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 0x8EF 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 0x1C3C SWAP1 DUP5 SWAP1 PUSH2 0x270C JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP1 MLOAD DUP4 SWAP3 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 DUP3 SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x7 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 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x1D4E 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 0x8EF 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 0x1DC6 DUP5 DUP5 DUP5 PUSH2 0x19C7 JUMP JUMPDEST PUSH2 0x1DD2 DUP5 DUP5 DUP5 DUP5 PUSH2 0x1EC8 JUMP JUMPDEST PUSH2 0x1567 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP1 PUSH2 0x25B3 JUMP JUMPDEST PUSH1 0x60 PUSH1 0xE DUP1 SLOAD PUSH2 0x804 SWAP1 PUSH2 0x279A JUMP JUMPDEST PUSH1 0x60 PUSH2 0x1E08 DUP3 PUSH2 0x17CB JUMP JUMPDEST PUSH2 0x1E6C 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 0x8EF JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E76 PUSH2 0x1DEE JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x1E96 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x1EC1 JUMP JUMPDEST DUP1 PUSH2 0x1EA0 DUP5 PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x1EB1 SWAP3 SWAP2 SWAP1 PUSH2 0x2534 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO PUSH2 0x1FCA 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 0x1F0C SWAP1 CALLER SWAP1 DUP10 SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH2 0x2563 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1F26 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1F56 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x1F53 SWAP2 DUP2 ADD SWAP1 PUSH2 0x2456 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x1FB0 JUMPI RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0x1F84 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 0x1F89 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP DUP1 MLOAD PUSH2 0x1FA8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8EF SWAP1 PUSH2 0x25B3 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 0x16CF JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH2 0x1FF9 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 0x2023 JUMPI DUP1 PUSH2 0x200D DUP2 PUSH2 0x27D5 JUMP JUMPDEST SWAP2 POP PUSH2 0x201C SWAP1 POP PUSH1 0xA DUP4 PUSH2 0x2724 JUMP JUMPDEST SWAP2 POP PUSH2 0x1FFD JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x203E JUMPI PUSH2 0x203E PUSH2 0x2846 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 0x2068 JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP JUMPDEST DUP5 ISZERO PUSH2 0x16CF JUMPI PUSH2 0x207D PUSH1 0x1 DUP4 PUSH2 0x2757 JUMP JUMPDEST SWAP2 POP PUSH2 0x208A PUSH1 0xA DUP7 PUSH2 0x27F0 JUMP JUMPDEST PUSH2 0x2095 SWAP1 PUSH1 0x30 PUSH2 0x270C JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x20AA JUMPI PUSH2 0x20AA PUSH2 0x2830 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 0x20CC PUSH1 0xA DUP7 PUSH2 0x2724 JUMP JUMPDEST SWAP5 POP PUSH2 0x206C JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x20DF SWAP1 PUSH2 0x279A JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x2101 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x2147 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x211A JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x2147 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x2147 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x2147 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x212C JUMP JUMPDEST POP PUSH2 0x2153 SWAP3 SWAP2 POP PUSH2 0x2157 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x2153 JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x2158 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP4 GT ISZERO PUSH2 0x2186 JUMPI PUSH2 0x2186 PUSH2 0x2846 JUMP JUMPDEST PUSH2 0x2199 PUSH1 0x1F DUP5 ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD PUSH2 0x26DB JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE DUP4 DUP4 DUP4 ADD GT ISZERO PUSH2 0x21AD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 DUP3 PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH1 0x0 PUSH1 0x20 DUP5 DUP4 ADD ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x21DB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x21DB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x2201 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1EC1 DUP4 DUP4 CALLDATALOAD PUSH1 0x20 DUP6 ADD PUSH2 0x216C JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2222 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1EC1 DUP3 PUSH2 0x21C4 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x223E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2247 DUP4 PUSH2 0x21C4 JUMP JUMPDEST SWAP2 POP PUSH2 0x2255 PUSH1 0x20 DUP5 ADD PUSH2 0x21C4 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2273 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x227C DUP5 PUSH2 0x21C4 JUMP JUMPDEST SWAP3 POP PUSH2 0x228A PUSH1 0x20 DUP6 ADD PUSH2 0x21C4 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 0x22B0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x22B9 DUP6 PUSH2 0x21C4 JUMP JUMPDEST SWAP4 POP PUSH2 0x22C7 PUSH1 0x20 DUP7 ADD PUSH2 0x21C4 JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x22EA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 ADD PUSH1 0x1F DUP2 ADD DUP8 SGT PUSH2 0x22FB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x230A DUP8 DUP3 CALLDATALOAD PUSH1 0x20 DUP5 ADD PUSH2 0x216C 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 0x2329 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2332 DUP4 PUSH2 0x21C4 JUMP JUMPDEST SWAP2 POP PUSH2 0x2255 PUSH1 0x20 DUP5 ADD PUSH2 0x21E0 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2353 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x235C DUP4 PUSH2 0x21C4 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x237D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x2395 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x23A9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x23BB JUMPI PUSH2 0x23BB PUSH2 0x2846 JUMP JUMPDEST DUP1 PUSH1 0x5 SHL SWAP2 POP PUSH2 0x23CC DUP5 DUP4 ADD PUSH2 0x26DB JUMP JUMPDEST DUP2 DUP2 MSTORE DUP5 DUP2 ADD SWAP1 DUP5 DUP7 ADD DUP5 DUP7 ADD DUP8 ADD DUP11 LT ISZERO PUSH2 0x23E7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP6 POP JUMPDEST DUP4 DUP7 LT ISZERO PUSH2 0x2411 JUMPI PUSH2 0x23FD DUP2 PUSH2 0x21C4 JUMP JUMPDEST DUP4 MSTORE PUSH1 0x1 SWAP6 SWAP1 SWAP6 ADD SWAP5 SWAP2 DUP7 ADD SWAP2 DUP7 ADD PUSH2 0x23EC JUMP JUMPDEST POP SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2430 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1EC1 DUP3 PUSH2 0x21E0 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x244B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1EC1 DUP2 PUSH2 0x285C JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2468 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x1EC1 DUP2 PUSH2 0x285C JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2485 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x249C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x16CF DUP5 DUP3 DUP6 ADD PUSH2 0x21F0 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x24BA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x24D4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x24F2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x24FE DUP6 DUP3 DUP7 ADD PUSH2 0x21F0 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x2520 DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x276E JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP4 MLOAD PUSH2 0x2546 DUP2 DUP5 PUSH1 0x20 DUP9 ADD PUSH2 0x276E JUMP JUMPDEST DUP4 MLOAD SWAP1 DUP4 ADD SWAP1 PUSH2 0x255A DUP2 DUP4 PUSH1 0x20 DUP9 ADD PUSH2 0x276E JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND DUP3 MSTORE DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x80 PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH2 0x2596 SWAP1 DUP4 ADD DUP5 PUSH2 0x2508 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x1EC1 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x2508 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 0x20 DUP1 DUP3 MSTORE PUSH1 0x30 SWAP1 DUP3 ADD MSTORE PUSH32 0x4D696E7420616D6F756E742077696C6C2065786365656420746F74616C20636F PUSH1 0x40 DUP3 ADD MSTORE PUSH16 0x363632B1BA34B7B71030B6B7BAB73A17 PUSH1 0x81 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x2704 JUMPI PUSH2 0x2704 PUSH2 0x2846 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x271F JUMPI PUSH2 0x271F PUSH2 0x2804 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x2733 JUMPI PUSH2 0x2733 PUSH2 0x281A JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 NOT DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x2752 JUMPI PUSH2 0x2752 PUSH2 0x2804 JUMP JUMPDEST POP MUL SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x2769 JUMPI PUSH2 0x2769 PUSH2 0x2804 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x2789 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x2771 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x1567 JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x27AE JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x27CF 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 0x27E9 JUMPI PUSH2 0x27E9 PUSH2 0x2804 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x27FF JUMPI PUSH2 0x27FF PUSH2 0x281A JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0xDC2 JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xB0 0xEB CREATE2 MLOAD EXTCODESIZE 0xED SLOAD 0xC2 ADDRESS 0xB1 JUMP PUSH3 0xC72670 0xD9 SWAP1 0xBF 0xEA DUP5 PUSH22 0x90146E05196928661F500664736F6C63430008070033 ",
"sourceMap": "37128:4822:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23064:300;;;;;;;;;;-1:-1:-1;23064:300:0;;;;;:::i;:::-;;:::i;:::-;;;7139:14:1;;7132:22;7114:41;;7102:2;7087:18;23064:300:0;;;;;;;;23982:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25493:217::-;;;;;;;;;;-1:-1:-1;25493:217:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6437:32:1;;;6419:51;;6407:2;6392:18;25493:217:0;6273:203:1;25031:401:0;;;;;;;;;;-1:-1:-1;25031:401:0;;;;;:::i;:::-;;:::i;:::-;;39874:151;;;;;;;;;;-1:-1:-1;39874:151:0;;;;;:::i;:::-;;:::i;38981:94::-;;;;;;;;;;-1:-1:-1;39059:9:0;;38981:94;;;17625:25:1;;;17613:2;17598:18;38981:94:0;17479:177:1;37530:19:0;;;;;;;;;;-1:-1:-1;37530:19:0;;;;;;;;26220:330;;;;;;;;;;-1:-1:-1;26220:330:0;;;;;:::i;:::-;;:::i;40399:290::-;;;;;;:::i;:::-;;:::i;39654:100::-;;;;;;;;;;-1:-1:-1;39654:100:0;;;;;:::i;:::-;;:::i;37260:24::-;;;;;;;;;;;;;;;;37290:32;;;;;;;;;;;;;;;;41053:286;;;;;;;;;;-1:-1:-1;41053:286:0;;;;;:::i;:::-;;:::i;37328:40::-;;;;;;;;;;;;;;;;26616:179;;;;;;;;;;-1:-1:-1;26616:179:0;;;;;:::i;:::-;;:::i;39398:134::-;;;;;;;;;;-1:-1:-1;39398:134:0;;;;;:::i;:::-;;:::i;39191:94::-;;;;;;;;;;-1:-1:-1;39191:94:0;;;;;:::i;:::-;;:::i;39290:102::-;;;;;;;;;;-1:-1:-1;39290:102:0;;;;;:::i;:::-;;:::i;40122:97::-;;;;;;;;;;-1:-1:-1;40122:97:0;;;;;:::i;:::-;;:::i;23685:235::-;;;;;;;;;;-1:-1:-1;23685:235:0;;;;;:::i;:::-;;:::i;37374:27::-;;;;;;;;;;;;;;;;37503:21;;;;;;;;;;;;;:::i;23423:205::-;;;;;;;;;;-1:-1:-1;23423:205:0;;;;;:::i;:::-;;:::i;4611:101::-;;;;;;;;;;;;;:::i;39760:109::-;;;;;;;;;;-1:-1:-1;39760:109:0;;;;;:::i;:::-;;:::i;40697:351::-;;;;;;:::i;:::-;;:::i;37555:26::-;;;;;;;;;;-1:-1:-1;37555:26:0;;;;;;;;;;;3979:85;;;;;;;;;;-1:-1:-1;4051:6:0;;-1:-1:-1;;;;;4051:6:0;3979:85;;40030:87;;;;;;;;;;-1:-1:-1;40030:87:0;;;;;:::i;:::-;;:::i;24144:102::-;;;;;;;;;;;;;:::i;41784:164::-;;;;;;;;;;-1:-1:-1;41784:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;41917:16:0;41890:4;41917:16;;;:9;:16;;;;;;;;:24;;:16;:24;;41784:164;40224:170;;;;;;;;;;-1:-1:-1;40224:170:0;;;;;:::i;:::-;-1:-1:-1;;;;;40362:25:0;40332:7;40362:25;;;:18;:25;;;;;;;40224:170;37407:33;;;;;;;;;;;;;;;;25777:153;;;;;;;;;;-1:-1:-1;25777:153:0;;;;;:::i;:::-;;:::i;39542:91::-;;;;;;;;;;-1:-1:-1;39542:91:0;;;;;:::i;:::-;;:::i;41504:239::-;;;;;;;;;;-1:-1:-1;41504:239:0;;;;;:::i;:::-;;:::i;26861:320::-;;;;;;;;;;-1:-1:-1;26861:320:0;;;;;:::i;:::-;;:::i;35621:663::-;;;;;;;;;;-1:-1:-1;35621:663:0;;;;;:::i;:::-;;:::i;41344:155::-;;;;;;;;;;-1:-1:-1;41344:155:0;;;;;:::i;:::-;;:::i;25996:162::-;;;;;;;;;;-1:-1:-1;25996:162:0;;;;;:::i;:::-;-1:-1:-1;;;;;26116:25:0;;;26093:4;26116:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25996:162;4861:198;;;;;;;;;;-1:-1:-1;4861:198:0;;;;;:::i;:::-;;:::i;37455:42::-;;;;;;;;;;;;;;;;23064:300;23166:4;-1:-1:-1;;;;;;23201:40:0;;-1:-1:-1;;;23201:40:0;;:104;;-1:-1:-1;;;;;;;23257:48:0;;-1:-1:-1;;;23257:48:0;23201:104;:156;;;-1:-1:-1;;;;;;;;;;16172:40:0;;;23321:36;23182:175;23064:300;-1:-1:-1;;23064:300:0:o;23982:98::-;24036:13;24068:5;24061:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23982:98;:::o;25493:217::-;25569:7;25596:16;25604:7;25596;:16::i;:::-;25588:73;;;;-1:-1:-1;;;25588:73:0;;13799:2:1;25588:73:0;;;13781:21:1;13838:2;13818:18;;;13811:30;13877:34;13857:18;;;13850:62;-1:-1:-1;;;13928:18:1;;;13921:42;13980:19;;25588:73:0;;;;;;;;;-1:-1:-1;25679:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25679:24:0;;25493:217::o;25031:401::-;25111:13;25127:23;25142:7;25127:14;:23::i;:::-;25111:39;;25174:5;-1:-1:-1;;;;;25168:11:0;:2;-1:-1:-1;;;;;25168:11:0;;;25160:57;;;;-1:-1:-1;;;25160:57:0;;15399:2:1;25160:57:0;;;15381:21:1;15438:2;15418:18;;;15411:30;15477:34;15457:18;;;15450:62;-1:-1:-1;;;15528:18:1;;;15521:31;15569:19;;25160:57:0;15197:397:1;25160:57:0;2826:10;-1:-1:-1;;;;;25249:21:0;;;;:62;;-1:-1:-1;25274:37:0;25291:5;2826:10;25996:162;:::i;25274:37::-;25228:165;;;;-1:-1:-1;;;25228:165:0;;11002:2:1;25228:165:0;;;10984:21:1;11041:2;11021:18;;;11014:30;11080:34;11060:18;;;11053:62;11151:26;11131:18;;;11124:54;11195:19;;25228:165:0;10800:420:1;25228:165:0;25404:21;25413:2;25417:7;25404:8;:21::i;:::-;25101:331;25031:401;;:::o;39874:151::-;4051:6;;-1:-1:-1;;;;;4051:6:0;2826:10;4191:23;4183:68;;;;-1:-1:-1;;;4183:68:0;;;;;;;:::i;:::-;39985:33:::1;39998:8;40008:9;39985:12;:33::i;:::-;39874:151:::0;;:::o;26220:330::-;26409:41;2826:10;26442:7;26409:18;:41::i;:::-;26401:103;;;;-1:-1:-1;;;26401:103:0;;;;;;;:::i;:::-;26515:28;26525:4;26531:2;26535:7;26515:9;:28::i;40399:290::-;38593:7;;40462:6;;38593:7;;38585:31;;;;-1:-1:-1;;;38585:31:0;;16981:2:1;38585:31:0;;;16963:21:1;17020:2;17000:18;;;16993:30;-1:-1:-1;;;17039:18:1;;;17032:41;17090:18;;38585:31:0;16779:335:1;38585:31:0;38643:1;38634:6;:10;:32;;;;;38658:8;;38648:6;:18;;38634:32;38626:62;;;;-1:-1:-1;;;38626:62:0;;9127:2:1;38626:62:0;;;9109:21:1;9166:2;9146:18;;;9139:30;-1:-1:-1;;;9185:18:1;;;9178:47;9242:18;;38626:62:0;8925:341:1;38626:62:0;38728:18;;38718:6;38706:9;;:18;;;;:::i;:::-;:40;;38698:76;;;;-1:-1:-1;;;38698:76:0;;7592:2:1;38698:76:0;;;7574:21:1;7631:2;7611:18;;;7604:30;-1:-1:-1;;;7650:18:1;;;7643:53;7713:18;;38698:76:0;7390:347:1;38698:76:0;38814:10;;38804:6;38792:9;;:18;;;;:::i;:::-;:32;;38784:93;;;;-1:-1:-1;;;38784:93:0;;;;;;;:::i;:::-;38917:5;;38908:14;;:6;:14;:::i;:::-;38895:9;:27;38887:68;;;;-1:-1:-1;;;38887:68:0;;12663:2:1;38887:68:0;;;12645:21:1;12702:2;12682:18;;;12675:30;12741;12721:18;;;12714:58;12789:18;;38887:68:0;12461:352:1;38887:68:0;4051:6;;40479:36:::1;::::0;-1:-1:-1;;;;;4051:6:0;;;;40505:9:::1;40479:36:::0;::::1;;;::::0;::::1;::::0;;;40505:9;4051:6;40479:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;40553:9:0::1;::::0;2826:10;;40530:45:::1;::::0;40553:13:::1;::::0;40565:1:::1;40553:13;:::i;:::-;40530:45;::::0;;17843:25:1;;;17899:2;17884:18;;17877:34;;;17816:18;40530:45:0::1;;;;;;;40590:9;40585:98;40609:6;40605:1;:10;40585:98;;;40636:36;2826:10:::0;40642:12:::1;40660:9;:11:::0;;;:9:::1;:11;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;40656:15:0::1;::::0;:1:::1;:15;:::i;:::-;40636:5;:36::i;:::-;40617:3:::0;::::1;::::0;::::1;:::i;:::-;;;;40585:98;;39654:100:::0;4051:6;;-1:-1:-1;;;;;4051:6:0;2826:10;4191:23;4183:68;;;;-1:-1:-1;;;4183:68:0;;;;;;;:::i;:::-;39724:8:::1;:23:::0;39654:100::o;41053:286::-;4051:6;;-1:-1:-1;;;;;4051:6:0;2826:10;4191:23;4183:68;;;;-1:-1:-1;;;4183:68:0;;;;;;;:::i;:::-;41161:10:::1;::::0;41144:9:::1;::::0;:13:::1;::::0;41156:1:::1;41144:13;:::i;:::-;:27;;41123:122;;;;-1:-1:-1::0;;;41123:122:0::1;;;;;;;:::i;:::-;41269:5;-1:-1:-1::0;;;;;41260:33:0::1;;41276:9;;41288:1;41276:13;;;;:::i;:::-;41260:33;::::0;;17843:25:1;;;41291:1:0::1;17899:2:1::0;17884:18;;17877:34;17816:18;41260:33:0::1;;;;;;;41320:9;:11:::0;;41303:29:::1;::::0;41309:5;;41320:11;:9:::1;:11;::::0;::::1;:::i;41303:29::-;41053:286:::0;:::o;26616:179::-;26749:39;26766:4;26772:2;26776:7;26749:39;;;;;;;;;;;;:16;:39::i;39398:134::-;4051:6;;-1:-1:-1;;;;;4051:6:0;2826:10;4191:23;4183:68;;;;-1:-1:-1;;;4183:68:0;;;;;;;:::i;:::-;39485:18:::1;:40:::0;39398:134::o;39191:94::-;4051:6;;-1:-1:-1;;;;;4051:6:0;2826:10;4191:23;4183:68;;;;-1:-1:-1;;;4183:68:0;;;;;;;:::i;:::-;39261:17;;::::1;::::0;:7:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;39290:102::-:0;4051:6;;-1:-1:-1;;;;;4051:6:0;2826:10;4191:23;4183:68;;;;-1:-1:-1;;;4183:68:0;;;;;;;:::i;:::-;39361:10:::1;:24:::0;39290:102::o;40122:97::-;4051:6;;-1:-1:-1;;;;;4051:6:0;2826:10;4191:23;4183:68;;;;-1:-1:-1;;;4183:68:0;;;;;;;:::i;:::-;40189:14:::1;:23:::0;;;::::1;;;;-1:-1:-1::0;;40189:23:0;;::::1;::::0;;;::::1;::::0;;40122:97::o;23685:235::-;23757:7;23792:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23792:16:0;23826:19;23818:73;;;;-1:-1:-1;;;23818:73:0;;11838:2:1;23818:73:0;;;11820:21:1;11877:2;11857:18;;;11850:30;11916:34;11896:18;;;11889:62;-1:-1:-1;;;11967:18:1;;;11960:39;12016:19;;23818:73:0;11636:405:1;37503:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23423:205::-;23495:7;-1:-1:-1;;;;;23522:19:0;;23514:74;;;;-1:-1:-1;;;23514:74:0;;11427:2:1;23514:74:0;;;11409:21:1;11466:2;11446:18;;;11439:30;11505:34;11485:18;;;11478:62;-1:-1:-1;;;11556:18:1;;;11549:40;11606:19;;23514:74:0;11225:406:1;23514:74:0;-1:-1:-1;;;;;;23605:16:0;;;;;:9;:16;;;;;;;23423:205::o;4611:101::-;4051:6;;-1:-1:-1;;;;;4051:6:0;2826:10;4191:23;4183:68;;;;-1:-1:-1;;;4183:68:0;;;;;;;:::i;:::-;4675:30:::1;4702:1;4675:18;:30::i;:::-;4611:101::o:0;39760:109::-;4051:6;;-1:-1:-1;;;;;4051:6:0;2826:10;4191:23;4183:68;;;;-1:-1:-1;;;4183:68:0;;;;;;;:::i;:::-;39836:14:::1;:26:::0;39760:109::o;40697:351::-;37955:14;;40768:6;;37955:14;;;;;37947:58;;;;-1:-1:-1;;;37947:58:0;;17321:2:1;37947:58:0;;;17303:21:1;17360:2;17340:18;;;17333:30;17399:33;17379:18;;;17372:61;17450:18;;37947:58:0;17119:355:1;37947:58:0;38033:10;38023:21;;;;:9;:21;;;;;;;;:29;;:21;:29;38015:58;;;;-1:-1:-1;;;38015:58:0;;16219:2:1;38015:58:0;;;16201:21:1;16258:2;16238:18;;;16231:30;-1:-1:-1;;;16277:18:1;;;16270:46;16333:18;;38015:58:0;16017:340:1;38015:58:0;38113:18;;38103:6;38091:9;;:18;;;;:::i;:::-;:40;;38083:76;;;;-1:-1:-1;;;38083:76:0;;7592:2:1;38083:76:0;;;7574:21:1;7631:2;7611:18;;;7604:30;-1:-1:-1;;;7650:18:1;;;7643:53;7713:18;;38083:76:0;7390:347:1;38083:76:0;38196:10;38220:1;38177:30;;;:18;:30;;;;;;:39;;38210:6;;38177:39;:::i;:::-;:44;;38169:85;;;;-1:-1:-1;;;38169:85:0;;10232:2:1;38169:85:0;;;10214:21:1;10271:2;10251:18;;;10244:30;10310;10290:18;;;10283:58;10358:18;;38169:85:0;10030:352:1;38169:85:0;38294:10;;38284:6;38272:9;;:18;;;;:::i;:::-;:32;;38264:93;;;;-1:-1:-1;;;38264:93:0;;;;;;;:::i;:::-;38384:1;38375:6;:10;:32;;;;;38399:8;;38389:6;:18;;38375:32;38367:62;;;;-1:-1:-1;;;38367:62:0;;9127:2:1;38367:62:0;;;9109:21:1;9166:2;9146:18;;;9139:30;-1:-1:-1;;;9185:18:1;;;9178:47;9242:18;;38367:62:0;8925:341:1;38367:62:0;38469:14;;38460:23;;:6;:23;:::i;:::-;38447:9;:36;38439:77;;;;-1:-1:-1;;;38439:77:0;;12663:2:1;38439:77:0;;;12645:21:1;12702:2;12682:18;;;12675:30;12741;12721:18;;;12714:58;12789:18;;38439:77:0;12461:352:1;38439:77:0;4051:6;;40786:36:::1;::::0;-1:-1:-1;;;;;4051:6:0;;;;40812:9:::1;40786:36:::0;::::1;;;::::0;::::1;::::0;;;40812:9;4051:6;40786:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;2826:10:0;40832:32:::1;::::0;;;:18:::1;:32;::::0;;;;:42;;40868:6;;40832:32;:42:::1;::::0;40868:6;;40832:42:::1;:::i;:::-;::::0;;;-1:-1:-1;;40912:9:0::1;::::0;2826:10;;40889:45:::1;::::0;40912:13:::1;::::0;40924:1:::1;40912:13;:::i;:::-;40889:45;::::0;;17843:25:1;;;17899:2;17884:18;;17877:34;;;17816:18;40889:45:0::1;;;;;;;40949:9;40944:98;40968:6;40964:1;:10;40944:98;;;40995:36;2826:10:::0;41001:12:::1;2747:96:::0;40995:36:::1;40976:3:::0;::::1;::::0;::::1;:::i;:::-;;;;40944:98;;40030:87:::0;4051:6;;-1:-1:-1;;;;;4051:6:0;2826:10;4191:23;4183:68;;;;-1:-1:-1;;;4183:68:0;;;;;;;:::i;:::-;40094:7:::1;:16:::0;;-1:-1:-1;;40094:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;40030:87::o;24144:102::-;24200:13;24232:7;24225:14;;;;;:::i;25777:153::-;25871:52;2826:10;25904:8;25914;25871:18;:52::i;39542:91::-;4051:6;;-1:-1:-1;;;;;4051:6:0;2826:10;4191:23;4183:68;;;;-1:-1:-1;;;4183:68:0;;;;;;;:::i;:::-;39609:5:::1;:17:::0;39542:91::o;41504:239::-;4051:6;;-1:-1:-1;;;;;4051:6:0;2826:10;4191:23;4183:68;;;;-1:-1:-1;;;4183:68:0;;;;;;;:::i;:::-;41602:9:::1;41597:140;41621:5;:12;41617:1;:16;41597:140;;;41676:4;41654:9;:19;41664:5;41670:1;41664:8;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;41654:19:0::1;-1:-1:-1::0;;;;;41654:19:0::1;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;41725:1;41694:18;:28;41713:5;41719:1;41713:8;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;41694:28:0::1;-1:-1:-1::0;;;;;41694:28:0::1;;;;;;;;;;;;:32;;;;41635:3;;;;;:::i;:::-;;;;41597:140;;26861:320:::0;27030:41;2826:10;27063:7;27030:18;:41::i;:::-;27022:103;;;;-1:-1:-1;;;27022:103:0;;;;;;;:::i;:::-;27135:39;27149:4;27155:2;27159:7;27168:5;27135:13;:39::i;:::-;26861:320;;;;:::o;35621:663::-;35694:13;35727:16;35735:7;35727;:16::i;:::-;35719:78;;;;-1:-1:-1;;;35719:78:0;;13381:2:1;35719:78:0;;;13363:21:1;13420:2;13400:18;;;13393:30;13459:34;13439:18;;;13432:62;-1:-1:-1;;;13510:18:1;;;13503:47;13567:19;;35719:78:0;13179:413:1;35719:78:0;35808:23;35834:19;;;:10;:19;;;;;35808:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35863:18;35884:10;:8;:10::i;:::-;35863:31;;35973:4;35967:18;35989:1;35967:23;35963:70;;;-1:-1:-1;36013:9:0;35621:663;-1:-1:-1;;35621:663:0:o;35963:70::-;36135:23;;:27;36131:106;;36209:4;36215:9;36192:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36178:48;;;;35621:663;;;:::o;36131:106::-;36254:23;36269:7;36254:14;:23::i;:::-;36247:30;35621:663;-1:-1:-1;;;;35621:663:0:o;41344:155::-;4051:6;;-1:-1:-1;;;;;4051:6:0;2826:10;4191:23;4183:68;;;;-1:-1:-1;;;4183:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41430:16:0::1;;::::0;;;:9:::1;:16;::::0;;;;;;;:23;;-1:-1:-1;;41430:23:0::1;41449:4;41430:23;::::0;;41463:18:::1;:25:::0;;;;;41491:1:::1;41463:29:::0;;41344:155::o;4861:198::-;4051:6;;-1:-1:-1;;;;;4051:6:0;2826:10;4191:23;4183:68;;;;-1:-1:-1;;;4183:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4949:22:0;::::1;4941:73;;;::::0;-1:-1:-1;;;4941:73:0;;8363:2:1;4941:73:0::1;::::0;::::1;8345:21:1::0;8402:2;8382:18;;;8375:30;8441:34;8421:18;;;8414:62;-1:-1:-1;;;8492:18:1;;;8485:36;8538:19;;4941:73:0::1;8161:402:1::0;4941:73:0::1;5024:28;5043:8;5024:18;:28::i;28653:125::-:0;28718:4;28741:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28741:16:0;:30;;;28653:125::o;32504:171::-;32578:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32578:29:0;-1:-1:-1;;;;;32578:29:0;;;;;;;;:24;;32631:23;32578:24;32631:14;:23::i;:::-;-1:-1:-1;;;;;32622:46:0;;;;;;;;;;;32504:171;;:::o;36431:214::-;36530:16;36538:7;36530;:16::i;:::-;36522:75;;;;-1:-1:-1;;;36522:75:0;;12248:2:1;36522:75:0;;;12230:21:1;12287:2;12267:18;;;12260:30;12326:34;12306:18;;;12299:62;-1:-1:-1;;;12377:18:1;;;12370:44;12431:19;;36522:75:0;12046:410:1;36522:75:0;36607:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;28936:344::-;29029:4;29053:16;29061:7;29053;:16::i;:::-;29045:73;;;;-1:-1:-1;;;29045:73:0;;10589:2:1;29045:73:0;;;10571:21:1;10628:2;10608:18;;;10601:30;10667:34;10647:18;;;10640:62;-1:-1:-1;;;10718:18:1;;;10711:42;10770:19;;29045:73:0;10387:408:1;29045:73:0;29128:13;29144:23;29159:7;29144:14;:23::i;:::-;29128:39;;29196:5;-1:-1:-1;;;;;29185:16:0;:7;-1:-1:-1;;;;;29185:16:0;;:51;;;;29229:7;-1:-1:-1;;;;;29205:31:0;:20;29217:7;29205:11;:20::i;:::-;-1:-1:-1;;;;;29205:31:0;;29185:51;:87;;;-1:-1:-1;;;;;;26116:25:0;;;26093:4;26116:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;29240:32;25996:162;31833:560;31987:4;-1:-1:-1;;;;;31960:31:0;:23;31975:7;31960:14;:23::i;:::-;-1:-1:-1;;;;;31960:31:0;;31952:85;;;;-1:-1:-1;;;31952:85:0;;14573:2:1;31952:85:0;;;14555:21:1;14612:2;14592:18;;;14585:30;14651:34;14631:18;;;14624:62;-1:-1:-1;;;14702:18:1;;;14695:39;14751:19;;31952:85:0;14371:405:1;31952:85:0;-1:-1:-1;;;;;32055:16:0;;32047:65;;;;-1:-1:-1;;;32047:65:0;;9473:2:1;32047:65:0;;;9455:21:1;9512:2;9492:18;;;9485:30;9551:34;9531:18;;;9524:62;-1:-1:-1;;;9602:18:1;;;9595:34;9646:19;;32047:65:0;9271:400:1;32047:65:0;32224:29;32241:1;32245:7;32224:8;:29::i;:::-;-1:-1:-1;;;;;32264:15:0;;;;;;:9;:15;;;;;:20;;32283:1;;32264:15;:20;;32283:1;;32264:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32294:13:0;;;;;;:9;:13;;;;;:18;;32311:1;;32294:13;:18;;32311:1;;32294:18;:::i;:::-;;;;-1:-1:-1;;32322:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32322:21:0;-1:-1:-1;;;;;32322:21:0;;;;;;;;;32359:27;;32322:16;;32359:27;;;;;;;31833:560;;;:::o;30572:372::-;-1:-1:-1;;;;;30651:16:0;;30643:61;;;;-1:-1:-1;;;30643:61:0;;13020:2:1;30643:61:0;;;13002:21:1;;;13039:18;;;13032:30;13098:34;13078:18;;;13071:62;13150:18;;30643:61:0;12818:356:1;30643:61:0;30723:16;30731:7;30723;:16::i;:::-;30722:17;30714:58;;;;-1:-1:-1;;;30714:58:0;;8770:2:1;30714:58:0;;;8752:21:1;8809:2;8789:18;;;8782:30;8848;8828:18;;;8821:58;8896:18;;30714:58:0;8568:352:1;30714:58:0;-1:-1:-1;;;;;30839:13:0;;;;;;:9;:13;;;;;:18;;30856:1;;30839:13;:18;;30856:1;;30839:18;:::i;:::-;;;;-1:-1:-1;;30867:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30867:21:0;-1:-1:-1;;;;;30867:21:0;;;;;;;;30904:33;;30867:16;;;30904:33;;30867:16;;30904:33;30572:372;;:::o;5213:187::-;5305:6;;;-1:-1:-1;;;;;5321:17:0;;;-1:-1:-1;;;;;;5321:17:0;;;;;;;5353:40;;5305:6;;;5321:17;5305:6;;5353:40;;5286:16;;5353:40;5276:124;5213:187;:::o;32810:307::-;32960:8;-1:-1:-1;;;;;32951:17:0;:5;-1:-1:-1;;;;;32951:17:0;;;32943:55;;;;-1:-1:-1;;;32943:55:0;;9878:2:1;32943:55:0;;;9860:21:1;9917:2;9897:18;;;9890:30;9956:27;9936:18;;;9929:55;10001:18;;32943:55:0;9676:349:1;32943:55:0;-1:-1:-1;;;;;33008:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;33008:46:0;;;;;;;;;;33069:41;;7114::1;;;33069::0;;7087:18:1;33069:41:0;;;;;;;32810:307;;;:::o;28043:::-;28194:28;28204:4;28210:2;28214:7;28194:9;:28::i;:::-;28240:48;28263:4;28269:2;28273:7;28282:5;28240:22;:48::i;:::-;28232:111;;;;-1:-1:-1;;;28232:111:0;;;;;;;:::i;39080:106::-;39140:13;39172:7;39165:14;;;;;:::i;24312:329::-;24385:13;24418:16;24426:7;24418;:16::i;:::-;24410:76;;;;-1:-1:-1;;;24410:76:0;;14983:2:1;24410:76:0;;;14965:21:1;15022:2;15002:18;;;14995:30;15061:34;15041:18;;;15034:62;-1:-1:-1;;;15112:18:1;;;15105:45;15167:19;;24410:76:0;14781:411:1;24410:76:0;24497:21;24521:10;:8;:10::i;:::-;24497:34;;24572:1;24554:7;24548:21;:25;:86;;;;;;;;;;;;;;;;;24600:7;24609:18;:7;:16;:18::i;:::-;24583:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24548:86;24541:93;24312:329;-1:-1:-1;;;24312:329:0:o;33670:778::-;33820:4;-1:-1:-1;;;;;33840:13:0;;6512:20;6558:8;33836:606;;33875:72;;-1:-1:-1;;;33875:72:0;;-1:-1:-1;;;;;33875:36:0;;;;;:72;;2826:10;;33926:4;;33932:7;;33941:5;;33875:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33875:72:0;;;;;;;;-1:-1:-1;;33875:72:0;;;;;;;;;;;;:::i;:::-;;;33871:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34114:13:0;;34110:266;;34156:60;;-1:-1:-1;;;34156:60:0;;;;;;;:::i;34110:266::-;34328:6;34322:13;34313:6;34309:2;34305:15;34298:38;33871:519;-1:-1:-1;;;;;;33997:51:0;-1:-1:-1;;;33997:51:0;;-1:-1:-1;33990:58:0;;33836:606;-1:-1:-1;34427:4:0;33670:778;;;;;;:::o;381:703::-;437:13;654:10;650:51;;-1:-1:-1;;680:10:0;;;;;;;;;;;;-1:-1:-1;;;680:10:0;;;;;381:703::o;650:51::-;725:5;710:12;764:75;771:9;;764:75;;796:8;;;;:::i;:::-;;-1:-1:-1;818:10:0;;-1:-1:-1;826:2:0;818:10;;:::i;:::-;;;764:75;;;848:19;880:6;870:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;870:17:0;;848:39;;897:150;904:10;;897:150;;930:11;940:1;930:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1025:11:0;1034:2;1025:11;;:::i;:::-;;;897:150;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:221;811:5;864:3;857:4;849:6;845:17;841:27;831:55;;882:1;879;872:12;831:55;904:79;979:3;970:6;957:20;950:4;942:6;938:17;904:79;:::i;994:186::-;1053:6;1106:2;1094:9;1085:7;1081:23;1077:32;1074:52;;;1122:1;1119;1112:12;1074:52;1145:29;1164:9;1145:29;:::i;1185:260::-;1253:6;1261;1314:2;1302:9;1293:7;1289:23;1285:32;1282:52;;;1330:1;1327;1320:12;1282:52;1353:29;1372:9;1353:29;:::i;:::-;1343:39;;1401:38;1435:2;1424:9;1420:18;1401:38;:::i;:::-;1391:48;;1185:260;;;;;:::o;1450:328::-;1527:6;1535;1543;1596:2;1584:9;1575:7;1571:23;1567:32;1564:52;;;1612:1;1609;1602:12;1564:52;1635:29;1654:9;1635:29;:::i;:::-;1625:39;;1683:38;1717:2;1706:9;1702:18;1683:38;:::i;:::-;1673:48;;1768:2;1757:9;1753:18;1740:32;1730:42;;1450:328;;;;;:::o;1783:666::-;1878:6;1886;1894;1902;1955:3;1943:9;1934:7;1930:23;1926:33;1923:53;;;1972:1;1969;1962:12;1923:53;1995:29;2014:9;1995:29;:::i;:::-;1985:39;;2043:38;2077:2;2066:9;2062:18;2043:38;:::i;:::-;2033:48;;2128:2;2117:9;2113:18;2100:32;2090:42;;2183:2;2172:9;2168:18;2155:32;2210:18;2202:6;2199:30;2196:50;;;2242:1;2239;2232:12;2196:50;2265:22;;2318:4;2310:13;;2306:27;-1:-1:-1;2296:55:1;;2347:1;2344;2337:12;2296:55;2370:73;2435:7;2430:2;2417:16;2412:2;2408;2404:11;2370:73;:::i;:::-;2360:83;;;1783:666;;;;;;;:::o;2454:254::-;2519:6;2527;2580:2;2568:9;2559:7;2555:23;2551:32;2548:52;;;2596:1;2593;2586:12;2548:52;2619:29;2638:9;2619:29;:::i;:::-;2609:39;;2667:35;2698:2;2687:9;2683:18;2667:35;:::i;2713:254::-;2781:6;2789;2842:2;2830:9;2821:7;2817:23;2813:32;2810:52;;;2858:1;2855;2848:12;2810:52;2881:29;2900:9;2881:29;:::i;:::-;2871:39;2957:2;2942:18;;;;2929:32;;-1:-1:-1;;;2713:254:1:o;2972:963::-;3056:6;3087:2;3130;3118:9;3109:7;3105:23;3101:32;3098:52;;;3146:1;3143;3136:12;3098:52;3186:9;3173:23;3215:18;3256:2;3248:6;3245:14;3242:34;;;3272:1;3269;3262:12;3242:34;3310:6;3299:9;3295:22;3285:32;;3355:7;3348:4;3344:2;3340:13;3336:27;3326:55;;3377:1;3374;3367:12;3326:55;3413:2;3400:16;3435:2;3431;3428:10;3425:36;;;3441:18;;:::i;:::-;3487:2;3484:1;3480:10;3470:20;;3510:28;3534:2;3530;3526:11;3510:28;:::i;:::-;3572:15;;;3603:12;;;;3635:11;;;3665;;;3661:20;;3658:33;-1:-1:-1;3655:53:1;;;3704:1;3701;3694:12;3655:53;3726:1;3717:10;;3736:169;3750:2;3747:1;3744:9;3736:169;;;3807:23;3826:3;3807:23;:::i;:::-;3795:36;;3768:1;3761:9;;;;;3851:12;;;;3883;;3736:169;;;-1:-1:-1;3924:5:1;2972:963;-1:-1:-1;;;;;;;;2972:963:1:o;3940:180::-;3996:6;4049:2;4037:9;4028:7;4024:23;4020:32;4017:52;;;4065:1;4062;4055:12;4017:52;4088:26;4104:9;4088:26;:::i;4125:245::-;4183:6;4236:2;4224:9;4215:7;4211:23;4207:32;4204:52;;;4252:1;4249;4242:12;4204:52;4291:9;4278:23;4310:30;4334:5;4310:30;:::i;4375:249::-;4444:6;4497:2;4485:9;4476:7;4472:23;4468:32;4465:52;;;4513:1;4510;4503:12;4465:52;4545:9;4539:16;4564:30;4588:5;4564:30;:::i;4629:322::-;4698:6;4751:2;4739:9;4730:7;4726:23;4722:32;4719:52;;;4767:1;4764;4757:12;4719:52;4807:9;4794:23;4840:18;4832:6;4829:30;4826:50;;;4872:1;4869;4862:12;4826:50;4895;4937:7;4928:6;4917:9;4913:22;4895:50;:::i;4956:180::-;5015:6;5068:2;5056:9;5047:7;5043:23;5039:32;5036:52;;;5084:1;5081;5074:12;5036:52;-1:-1:-1;5107:23:1;;4956:180;-1:-1:-1;4956:180:1:o;5141:390::-;5219:6;5227;5280:2;5268:9;5259:7;5255:23;5251:32;5248:52;;;5296:1;5293;5286:12;5248:52;5332:9;5319:23;5309:33;;5393:2;5382:9;5378:18;5365:32;5420:18;5412:6;5409:30;5406:50;;;5452:1;5449;5442:12;5406:50;5475;5517:7;5508:6;5497:9;5493:22;5475:50;:::i;:::-;5465:60;;;5141:390;;;;;:::o;5536:257::-;5577:3;5615:5;5609:12;5642:6;5637:3;5630:19;5658:63;5714:6;5707:4;5702:3;5698:14;5691:4;5684:5;5680:16;5658:63;:::i;:::-;5775:2;5754:15;-1:-1:-1;;5750:29:1;5741:39;;;;5782:4;5737:50;;5536:257;-1:-1:-1;;5536:257:1:o;5798:470::-;5977:3;6015:6;6009:13;6031:53;6077:6;6072:3;6065:4;6057:6;6053:17;6031:53;:::i;:::-;6147:13;;6106:16;;;;6169:57;6147:13;6106:16;6203:4;6191:17;;6169:57;:::i;:::-;6242:20;;5798:470;-1:-1:-1;;;;5798:470:1:o;6481:488::-;-1:-1:-1;;;;;6750:15:1;;;6732:34;;6802:15;;6797:2;6782:18;;6775:43;6849:2;6834:18;;6827:34;;;6897:3;6892:2;6877:18;;6870:31;;;6675:4;;6918:45;;6943:19;;6935:6;6918:45;:::i;:::-;6910:53;6481:488;-1:-1:-1;;;;;;6481:488:1:o;7166:219::-;7315:2;7304:9;7297:21;7278:4;7335:44;7375:2;7364:9;7360:18;7352:6;7335:44;:::i;7742:414::-;7944:2;7926:21;;;7983:2;7963:18;;;7956:30;8022:34;8017:2;8002:18;;7995:62;-1:-1:-1;;;8088:2:1;8073:18;;8066:48;8146:3;8131:19;;7742:414::o;14010:356::-;14212:2;14194:21;;;14231:18;;;14224:30;14290:34;14285:2;14270:18;;14263:62;14357:2;14342:18;;14010:356::o;15599:413::-;15801:2;15783:21;;;15840:2;15820:18;;;15813:30;15879:34;15874:2;15859:18;;15852:62;-1:-1:-1;;;15945:2:1;15930:18;;15923:47;16002:3;15987:19;;15599:413::o;16362:412::-;16564:2;16546:21;;;16603:2;16583:18;;;16576:30;16642:34;16637:2;16622:18;;16615:62;-1:-1:-1;;;16708:2:1;16693:18;;16686:46;16764:3;16749:19;;16362:412::o;18175:275::-;18246:2;18240:9;18311:2;18292:13;;-1:-1:-1;;18288:27:1;18276:40;;18346:18;18331:34;;18367:22;;;18328:62;18325:88;;;18393:18;;:::i;:::-;18429:2;18422:22;18175:275;;-1:-1:-1;18175:275:1:o;18455:128::-;18495:3;18526:1;18522:6;18519:1;18516:13;18513:39;;;18532:18;;:::i;:::-;-1:-1:-1;18568:9:1;;18455:128::o;18588:120::-;18628:1;18654;18644:35;;18659:18;;:::i;:::-;-1:-1:-1;18693:9:1;;18588:120::o;18713:168::-;18753:7;18819:1;18815;18811:6;18807:14;18804:1;18801:21;18796:1;18789:9;18782:17;18778:45;18775:71;;;18826:18;;:::i;:::-;-1:-1:-1;18866:9:1;;18713:168::o;18886:125::-;18926:4;18954:1;18951;18948:8;18945:34;;;18959:18;;:::i;:::-;-1:-1:-1;18996:9:1;;18886:125::o;19016:258::-;19088:1;19098:113;19112:6;19109:1;19106:13;19098:113;;;19188:11;;;19182:18;19169:11;;;19162:39;19134:2;19127:10;19098:113;;;19229:6;19226:1;19223:13;19220:48;;;-1:-1:-1;;19264:1:1;19246:16;;19239:27;19016:258::o;19279:380::-;19358:1;19354:12;;;;19401;;;19422:61;;19476:4;19468:6;19464:17;19454:27;;19422:61;19529:2;19521:6;19518:14;19498:18;19495:38;19492:161;;;19575:10;19570:3;19566:20;19563:1;19556:31;19610:4;19607:1;19600:15;19638:4;19635:1;19628:15;19492:161;;19279:380;;;:::o;19664:135::-;19703:3;-1:-1:-1;;19724:17:1;;19721:43;;;19744:18;;:::i;:::-;-1:-1:-1;19791:1:1;19780:13;;19664:135::o;19804:112::-;19836:1;19862;19852:35;;19867:18;;:::i;:::-;-1:-1:-1;19901:9:1;;19804:112::o;19921:127::-;19982:10;19977:3;19973:20;19970:1;19963:31;20013:4;20010:1;20003:15;20037:4;20034:1;20027:15;20053:127;20114:10;20109:3;20105:20;20102:1;20095:31;20145:4;20142:1;20135:15;20169:4;20166:1;20159:15;20185:127;20246:10;20241:3;20237:20;20234:1;20227:31;20277:4;20274:1;20267:15;20301:4;20298:1;20291:15;20317:127;20378:10;20373:3;20369:20;20366:1;20359:31;20409:4;20406:1;20399:15;20433:4;20430:1;20423:15;20449:131;-1:-1:-1;;;;;;20523:32:1;;20513:43;;20503:71;;20570:1;20567;20560:12"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "2081600",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"addToWhitelist(address)": "49010",
"addToWhitelistBulk(address[])": "infinite",
"adminMintGiveaways(address)": "infinite",
"allowedMintedToken()": "2407",
"approve(address,uint256)": "infinite",
"balanceOf(address)": "2657",
"baseURI()": "infinite",
"changePrice(uint256)": "24575",
"changeWhiteListPrice(uint256)": "24576",
"getApproved(uint256)": "4822",
"getWhitelistMintAmount(address)": "2582",
"isAddressInWhitelist(address)": "2683",
"isApprovedForAll(address,address)": "infinite",
"maxBatch()": "2450",
"name()": "infinite",
"owner()": "2398",
"ownerOf(uint256)": "2689",
"price()": "2362",
"publicMint(uint256)": "infinite",
"renounceOwnership()": "28207",
"safeTransferFrom(address,address,uint256)": "infinite",
"safeTransferFrom(address,address,uint256,bytes)": "infinite",
"setAllowedMintedToken(uint256)": "24509",
"setApprovalForAll(address,bool)": "infinite",
"setBaseURI(string)": "infinite",
"setMaxBatch(uint256)": "24598",
"setNormalStart(bool)": "26758",
"setTokenURI(uint256,string)": "infinite",
"setTotalCount(uint256)": "24553",
"setWhiteListStart(bool)": "26794",
"started()": "2367",
"supportsInterface(bytes4)": "557",
"symbol()": "infinite",
"tokenURI(uint256)": "infinite",
"totalCount()": "2363",
"totalDogs()": "2341",
"totalSupply()": "2327",
"transferFrom(address,address,uint256)": "infinite",
"transferOwnership(address)": "28444",
"whiteListStart()": "2355",
"whitelistMint(uint256)": "infinite",
"whitelistPrice()": "2449"
},
"internal": {
"_baseURI()": "infinite"
}
},
"methodIdentifiers": {
"addToWhitelist(address)": "e43252d7",
"addToWhitelistBulk(address[])": "a81c804e",
"adminMintGiveaways(address)": "3c49a8a9",
"allowedMintedToken()": "3e427f90",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"baseURI()": "6c0360eb",
"changePrice(uint256)": "a2b40d19",
"changeWhiteListPrice(uint256)": "7bd6f0cc",
"getApproved(uint256)": "081812fc",
"getWhitelistMintAmount(address)": "9afdf2f3",
"isAddressInWhitelist(address)": "9a313299",
"isApprovedForAll(address,address)": "e985e9c5",
"maxBatch()": "67765b87",
"name()": "06fdde03",
"owner()": "8da5cb5b",
"ownerOf(uint256)": "6352211e",
"price()": "a035b1fe",
"publicMint(uint256)": "2db11544",
"renounceOwnership()": "715018a6",
"safeTransferFrom(address,address,uint256)": "42842e0e",
"safeTransferFrom(address,address,uint256,bytes)": "b88d4fde",
"setAllowedMintedToken(uint256)": "49274ec1",
"setApprovalForAll(address,bool)": "a22cb465",
"setBaseURI(string)": "55f804b3",
"setMaxBatch(uint256)": "300b23d8",
"setNormalStart(bool)": "917bb57f",
"setTokenURI(uint256,string)": "162094c4",
"setTotalCount(uint256)": "57df110a",
"setWhiteListStart(bool)": "5f4f603d",
"started()": "1f2698ab",
"supportsInterface(bytes4)": "01ffc9a7",
"symbol()": "95d89b41",
"tokenURI(uint256)": "c87b56dd",
"totalCount()": "34eafb11",
"totalDogs()": "308d6c47",
"totalSupply()": "18160ddd",
"transferFrom(address,address,uint256)": "23b872dd",
"transferOwnership(address)": "f2fde38b",
"whiteListStart()": "88eae705",
"whitelistMint(uint256)": "868ff4a2",
"whitelistPrice()": "fc1a1c36"
}
},
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "name_",
"type": "string"
},
{
"internalType": "string",
"name": "symbol_",
"type": "string"
},
{
"internalType": "string",
"name": "baseURI_",
"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": "minter",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "startWith",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint256",
"name": "times",
"type": "uint256"
}
],
"name": "MintDogs",
"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": "_addr",
"type": "address"
}
],
"name": "addToWhitelist",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address[]",
"name": "_addr",
"type": "address[]"
}
],
"name": "addToWhitelistBulk",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_addr",
"type": "address"
}
],
"name": "adminMintGiveaways",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "allowedMintedToken",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "approve",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "baseURI",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_newPrice",
"type": "uint256"
}
],
"name": "changePrice",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_newPrice",
"type": "uint256"
}
],
"name": "changeWhiteListPrice",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "getApproved",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_addr",
"type": "address"
}
],
"name": "getWhitelistMintAmount",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_addr",
"type": "address"
}
],
"name": "isAddressInWhitelist",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"name": "isApprovedForAll",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "maxBatch",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "name",
"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": [],
"name": "price",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_times",
"type": "uint256"
}
],
"name": "publicMint",
"outputs": [],
"stateMutability": "payable",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "_data",
"type": "bytes"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_AllowedTokenAmount",
"type": "uint256"
}
],
"name": "setAllowedMintedToken",
"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": "_newURI",
"type": "string"
}
],
"name": "setBaseURI",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_newMaxBatch",
"type": "uint256"
}
],
"name": "setMaxBatch",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bool",
"name": "_start",
"type": "bool"
}
],
"name": "setNormalStart",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_tokenId",
"type": "uint256"
},
{
"internalType": "string",
"name": "_tokenURI",
"type": "string"
}
],
"name": "setTokenURI",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_totalCount",
"type": "uint256"
}
],
"name": "setTotalCount",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bool",
"name": "_start",
"type": "bool"
}
],
"name": "setWhiteListStart",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "started",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "tokenURI",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalCount",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalDogs",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"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": [],
"name": "whiteListStart",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_times",
"type": "uint256"
}
],
"name": "whitelistMint",
"outputs": [],
"stateMutability": "payable",
"type": "function"
},
{
"inputs": [],
"name": "whitelistPrice",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"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": "baseURI_",
"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": "minter",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "startWith",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint256",
"name": "times",
"type": "uint256"
}
],
"name": "MintDogs",
"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": "_addr",
"type": "address"
}
],
"name": "addToWhitelist",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address[]",
"name": "_addr",
"type": "address[]"
}
],
"name": "addToWhitelistBulk",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_addr",
"type": "address"
}
],
"name": "adminMintGiveaways",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "allowedMintedToken",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "approve",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "baseURI",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_newPrice",
"type": "uint256"
}
],
"name": "changePrice",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_newPrice",
"type": "uint256"
}
],
"name": "changeWhiteListPrice",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "getApproved",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_addr",
"type": "address"
}
],
"name": "getWhitelistMintAmount",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_addr",
"type": "address"
}
],
"name": "isAddressInWhitelist",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"name": "isApprovedForAll",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "maxBatch",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "name",
"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": [],
"name": "price",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_times",
"type": "uint256"
}
],
"name": "publicMint",
"outputs": [],
"stateMutability": "payable",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "_data",
"type": "bytes"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_AllowedTokenAmount",
"type": "uint256"
}
],
"name": "setAllowedMintedToken",
"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": "_newURI",
"type": "string"
}
],
"name": "setBaseURI",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_newMaxBatch",
"type": "uint256"
}
],
"name": "setMaxBatch",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bool",
"name": "_start",
"type": "bool"
}
],
"name": "setNormalStart",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_tokenId",
"type": "uint256"
},
{
"internalType": "string",
"name": "_tokenURI",
"type": "string"
}
],
"name": "setTokenURI",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_totalCount",
"type": "uint256"
}
],
"name": "setTotalCount",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bool",
"name": "_start",
"type": "bool"
}
],
"name": "setWhiteListStart",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "started",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "tokenURI",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalCount",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalDogs",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"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": [],
"name": "whiteListStart",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_times",
"type": "uint256"
}
],
"name": "whitelistMint",
"outputs": [],
"stateMutability": "payable",
"type": "function"
},
{
"inputs": [],
"name": "whitelistPrice",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"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}."
},
"tokenURI(uint256)": {
"details": "See {IERC721Metadata-tokenURI}."
},
"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/DegenDogs.sol": "DegenDogs"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/DegenDogs.sol": {
"keccak256": "0x7e872bf9a2f0ff9b2ca8a2d26bb35ab71f7d693e9485edad22a0c7762db4f99c",
"license": "MIT",
"urls": [
"bzz-raw://d037f6cc900622e80fe49ceb70a89a021b432f73f2b35854acfd4208984d20d3",
"dweb:/ipfs/QmS6ZdmkH9P8J5wZnpamTYWPntojn476QrkQPKTDjqqoDo"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {
"supportsInterface(bytes4)": "01ffc9a7"
}
},
"abi": [
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"details": "Implementation of the {IERC165} interface. Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check for the additional interface id that will be supported. For example: ```solidity function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); } ``` Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.",
"kind": "dev",
"methods": {
"supportsInterface(bytes4)": {
"details": "See {IERC165-supportsInterface}."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/DegenDogs.sol": "ERC165"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/DegenDogs.sol": {
"keccak256": "0x7e872bf9a2f0ff9b2ca8a2d26bb35ab71f7d693e9485edad22a0c7762db4f99c",
"license": "MIT",
"urls": [
"bzz-raw://d037f6cc900622e80fe49ceb70a89a021b432f73f2b35854acfd4208984d20d3",
"dweb:/ipfs/QmS6ZdmkH9P8J5wZnpamTYWPntojn476QrkQPKTDjqqoDo"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol
// 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);
}
}
// File: @openzeppelin/contracts/utils/Context.sol
// 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;
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @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);
}
}
// File: @openzeppelin/contracts/utils/Address.sol
// 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);
}
}
}
}
// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
// 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);
}
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
// 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);
}
// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
// OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
/**
* @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;
}
}
// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
/**
* @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;
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;
/**
* @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);
}
// File: @openzeppelin/contracts/token/ERC721/ERC721.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)
pragma solidity ^0.8.0;
/**
* @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 {}
}
// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721URIStorage.sol)
pragma solidity ^0.8.0;
/**
* @dev ERC721 token with storage based token URI management.
*/
abstract contract ERC721URIStorage is ERC721 {
using Strings for uint256;
// Optional mapping for token URIs
mapping(uint256 => string) private _tokenURIs;
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token");
string memory _tokenURI = _tokenURIs[tokenId];
string memory base = _baseURI();
// If there is no base URI, return the token URI.
if (bytes(base).length == 0) {
return _tokenURI;
}
// If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
if (bytes(_tokenURI).length > 0) {
return string(abi.encodePacked(base, _tokenURI));
}
return super.tokenURI(tokenId);
}
/**
* @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
_tokenURIs[tokenId] = _tokenURI;
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual override {
super._burn(tokenId);
if (bytes(_tokenURIs[tokenId]).length != 0) {
delete _tokenURIs[tokenId];
}
}
}
// File: contracts/DegenDogs.sol
pragma solidity ^0.8.7;
contract DegenDogs is ERC721URIStorage, Ownable {
event MintDogs(address indexed minter, uint256 startWith, uint256 times);
uint256 public totalDogs;
uint256 public totalCount = 5555;
uint256 public allowedMintedToken = 1500;
uint256 public maxBatch = 5;
uint256 public price = 0.05 ether; // 1 eth
uint256 public whitelistPrice = 0.04 ether;
string public baseURI;
bool public started;
bool public whiteListStart;
mapping(address => bool) whiteList;
mapping(address => uint256) whiteListMintCount;
constructor(
string memory name_,
string memory symbol_,
string memory baseURI_
) ERC721(name_, symbol_) {
baseURI = baseURI_;
_mint(owner(), 1 + totalDogs++);
}
modifier canWhitelistMint(uint256 _times) {
require(whiteListStart, "Hang on boys, youll get in soon");
require(whiteList[msg.sender] == true, "Not whitelisted.");
require(totalDogs + _times <= allowedMintedToken, "you cannot mint anymore");
require(whiteListMintCount[msg.sender] - _times >= 0, "Over mint limit for address.");
require(totalDogs + _times <= totalCount, "Mint amount will exceed total collection amount.");
require(_times > 0 && _times <= maxBatch, "mint wrong number");
require(msg.value == _times * whitelistPrice, "Incorrect transaction value.");
_;
}
modifier canMintMain(uint256 _times){
require(started, "not started");
require(_times > 0 && _times <= maxBatch, "mint wrong number");
require(totalDogs + _times <= allowedMintedToken, "you cannot mint anymore");
require(totalDogs + _times <= totalCount, "Mint amount will exceed total collection amount.");
require(msg.value == _times * price, "Incorrect transaction value.");
_;
}
function totalSupply() public view virtual returns (uint256) {
return totalDogs;
}
function _baseURI() internal view virtual override returns (string memory) {
return baseURI;
}
function setBaseURI(string memory _newURI) public onlyOwner {
baseURI = _newURI;
}
function setTotalCount(uint256 _totalCount) public onlyOwner {
totalCount = _totalCount;
}
function setAllowedMintedToken(uint256 _AllowedTokenAmount) public onlyOwner {
allowedMintedToken = _AllowedTokenAmount;
}
function changePrice(uint256 _newPrice) public onlyOwner {
price = _newPrice;
}
// maxBatch
function setMaxBatch(uint256 _newMaxBatch) public onlyOwner {
maxBatch = _newMaxBatch;
}
function changeWhiteListPrice(uint256 _newPrice) public onlyOwner {
whitelistPrice = _newPrice;
}
function setTokenURI(uint256 _tokenId, string memory _tokenURI)
public
onlyOwner
{
_setTokenURI(_tokenId, _tokenURI);
}
function setNormalStart(bool _start) public onlyOwner {
started = _start;
}
function setWhiteListStart(bool _start) public onlyOwner {
whiteListStart = _start;
}
function getWhitelistMintAmount(address _addr)
public
view
virtual
returns (uint256)
{
return whiteListMintCount[_addr];
}
function publicMint(uint256 _times) public payable canMintMain(_times){
payable(owner()).transfer(msg.value);
emit MintDogs(_msgSender(), totalDogs + 1, _times);
for (uint256 i = 0; i < _times; i++) {
_mint(_msgSender(), 1 + totalDogs++);
}
}
function whitelistMint(uint256 _times) public payable canWhitelistMint(_times) {
payable(owner()).transfer(msg.value);
whiteListMintCount[_msgSender()] -= _times;
emit MintDogs(_msgSender(), totalDogs + 1, _times);
for (uint256 i = 0; i < _times; i++) {
_mint(_msgSender(), 1 + totalDogs++);
}
}
function adminMintGiveaways(address _addr) public onlyOwner {
require(
totalDogs + 1 <= totalCount,
"Mint amount will exceed total collection amount."
);
emit MintDogs(_addr, totalDogs + 1, 1);
_mint(_addr, 1 + totalDogs++);
}
function addToWhitelist(address _addr)
public
onlyOwner
{
whiteList[_addr] = true;
whiteListMintCount[_addr] = 3;
}
function addToWhitelistBulk(
address[] memory _addr
) public onlyOwner {
for (uint256 i = 0; i < _addr.length; i++) {
whiteList[_addr[i]] = true;
whiteListMintCount[_addr[i]] = 3;
}
}
//Check address is in whiteList
function isAddressInWhitelist(address _addr)
public
view
virtual
returns (bool)
{
return whiteList[_addr] == true;
}
}
This file has been truncated, but you can view the full file.
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_866": {
"entryPoint": null,
"id": 866,
"parameterSlots": 2,
"retur
View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

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