ETH Price: $2,446.25 (+3.44%)

Token

Crazy Pumpkin (Halloween)
 

Overview

Max Total Supply

531 Halloween

Holders

516

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Halloween
0xdafe9399ad9f641bcd386959052d649df3dbba4f
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Crazypumpkin

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-30
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/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/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/IERC721Enumerable.sol
pragma solidity ^0.8.0;
/**
 * @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);
}


// File: @openzeppelin/contracts/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/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/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/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/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/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/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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol



pragma solidity ^0.8.0;



/**
 * @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();
    }
}


// File: @openzeppelin/contracts/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() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.0;
/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

pragma solidity >=0.7.0 <0.9.0;

contract Crazypumpkin is ERC721Enumerable, Ownable {
  using Strings for uint256;

  string baseURI;
  uint256 public cost = 0.0098 ether;
  uint256 public maxSupply = 4646;
  uint public maxFree = 2000;
  uint public wlMaxPerTx = 5;
  uint public wlMaxPerWallet = 5;
  uint public publicMaxPerTx = 1;
  uint public publicMaxPerWallet = 1;
  uint public totalFree = 0;

  uint public freeMints = 1;    //NOTE → How many free mints you want 

  
    mapping (address => uint) internal wlMintWallet;
    mapping (address => uint) internal publicMintWallet;
    bool public paused;
    bytes32 public merkleRoot;


    mapping (address => uint) public claimedAmount; 

  enum Step {
    Before,
    WhitelistSale,
    PublicSale,
    SoldOut,
    Reveal
  }


  Step public sellingStep;
  constructor(
    string memory _name,
    string memory _symbol,
    string memory _baseURI,
    bytes32 _merkleRoot
  ) ERC721(_name, _symbol) {
    baseURI = _baseURI;
    merkleRoot = _merkleRoot;
  }

  // public
  function mint(uint256 _mintAmount) public payable {
    require(!paused, "Contract paused.");
    require(sellingStep == Step.PublicSale, "Public sale is not running");
    require(_mintAmount > 0, "You can't mint less than 1 NFT.");
    require(_mintAmount <= publicMaxPerTx, "You can't mint more than 5 NFT in one transaction.");
    uint supply = totalSupply();
    require(supply + _mintAmount <= maxSupply, "Max supply exceeded.");

    if (msg.sender != owner()) {
        require(msg.value >= cost * _mintAmount, "Sorry you did not send enough ether");
        if(publicMaxPerWallet != 0) {
            require(publicMintWallet[msg.sender] + _mintAmount <= publicMaxPerWallet, "Max per wallet exceeded");
            publicMintWallet[msg.sender] += _mintAmount;
        }
    }

    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(msg.sender, supply + i);
    }
  }

  function whitelistMint (uint _mintAmount, bytes32[] calldata _proof) public payable {

    // BASIS REQUIRES ___________________________________________________________________________________________________

    require(!paused, "Contract paused.");
    require(sellingStep == Step.WhitelistSale, "Whitelist sale is not running.");
    require(isWhitelisted(msg.sender, _proof), "You're not whitelisted.");
    require(_mintAmount > 0, "You can't mint less than 1 NFT.");
    require(_mintAmount <= wlMaxPerTx, "You can't mint more than limit in one transaction.");
    uint supply = totalSupply();
    require(supply + _mintAmount <= maxSupply, "Max supply exceeded");


    // USER LEFT MINTS __________________________________________________________________________________________________

    uint leftMints = freeMints - claimedAmount[msg.sender];
    //NOTE ↪ Free mints left to use

    uint toPay;
    //NOTE ↪ How many mints are we going to pay?

    uint freeUsed;

    // HOW MANY MINTS IS HE GOING TO PAY ? _____________________________________________________________________________

    if (_mintAmount <= leftMints) {//NOTE ↪ If we have more free mints than mintAmount → Pay nothing
        toPay = 0;
        claimedAmount[msg.sender] += _mintAmount;
        freeUsed = _mintAmount;
    }
    else {//NOTE ↪ If we dont, then reduce only the amount of free mints we have left
        toPay = _mintAmount - leftMints;
        claimedAmount[msg.sender] += leftMints;
        freeUsed = leftMints;
    }

    // FREE MINTS INCLUDED? _____________________________________________________________________________________________

    if (msg.sender != owner()) {
        if (totalFree + _mintAmount <= maxFree) {

            require(msg.value >= cost * toPay, "You did not pay enough");

        } else { //NOTE → If we go beyond free mints

            uint freeLeft = maxFree - totalFree;    //NOTE → How many free mints left
    
            if (leftMints >= freeLeft) {freeLeft = freeLeft;} //NOTE → If we have enough mints left for the mints left
            else {freeLeft -= freeLeft - leftMints;}    //NOTE → If we dont, use the remaining ones
            require(msg.value >= cost * (_mintAmount - freeLeft), "You did not pay enough");
            freeUsed = _mintAmount - freeLeft;
        }
    }

    totalFree += freeUsed;
    
    // EXCEEDING WALLET LIMIT? __________________________________________________________________________________________

    if(wlMaxPerWallet != 0) {
        require(wlMintWallet[msg.sender] + _mintAmount <= wlMaxPerWallet, "Max per wallet exceeded");
        wlMintWallet[msg.sender] += _mintAmount;

    // MINTING PHASE ____________________________________________________________________________________________________

    }
    for (uint256 i = 1; i <= _mintAmount; i++) {
        _safeMint(msg.sender, supply + i);
      }
    }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

    /**
     * @notice Get the token URI of an NFT by his ID
     *
     * @param _tokenId The ID of the NFT you want to have the URI of the metadatas
     *
     * @return string Token URI of an NFT by his ID
     */
    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(_tokenId), "URI query for nonexistent token");

        return string(abi.encodePacked(baseURI, _tokenId.toString(), ".json"));
    }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }
  function pause(bool _state) public onlyOwner {
    paused = _state;
  }

      /**
     * @notice Change the step of the sale
     *
     * @param _step The new step of the sale
     */
    function setStep(uint256 _step) external onlyOwner {
        sellingStep = Step(_step);
    }

    function setMaxFree(uint256 _maxfree) public onlyOwner {
        maxFree = _maxfree;
    }

    function setWlMaxPerTx(uint _wlMaxPerTx) public onlyOwner {
        wlMaxPerTx = _wlMaxPerTx;
    }

    function setWlMaxPerWallet(uint _wlMaxPerWallet) public onlyOwner {
        wlMaxPerWallet = _wlMaxPerWallet;
    }

    function setPublicMaxPerTx(uint _publicMaxPerTx) public onlyOwner {
        publicMaxPerTx = _publicMaxPerTx;   
    }

    function setPublicMaxPerWallet(uint _publicMaxPerWallet) public onlyOwner {
        wlMaxPerWallet = _publicMaxPerWallet;
    }

    function getMintInfos(address _account) external view returns(uint[12] memory) {
        uint[12] memory infos = [
            wlMaxPerTx, 
            wlMaxPerWallet, 
            wlMintWallet[_account], 
            publicMaxPerTx, 
            publicMaxPerWallet, 
            publicMintWallet[_account], 
            claimedAmount[_account], 
            totalSupply(), 
            maxFree, 
            uint(sellingStep), 
            totalFree,
            freeMints
        ];
        return infos;
    }

      /**
     * @notice Change the merkle root
     *
     * @param _merkleRoot The new merkle root
     */
    function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;
    }

    /**
     * @notice Hash an address
     *
     * @param _account The address to be hashed
     *
     * @return bytes32 The hashed address
     */
    function leaf(address _account) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked(_account));
    }

    /**
     * @notice Returns true if a leaf can be proved to be a part of a merkle tree defined by root
     *
     * @param _leaf The leaf
     * @param _proof The Merkle Proof
     *
     * @return bool return true if a leaf can be proved to be a part of a merkle tree defined by root, false othewise
     */
    function _verify(bytes32 _leaf, bytes32[] memory _proof)
        internal
        view
        returns (bool)
    {
        return MerkleProof.verify(_proof, merkleRoot, _leaf);
    }

    /**
     * @notice Check if an address is whitelisted or not
     *
     * @param _account The account checked
     * @param _proof The Merkle Proof
     *
     * @return bool return true if an address is whitelisted, false otherwise
     */
    function isWhitelisted(address _account, bytes32[] calldata _proof)
        public
        view
        returns (bool)
    {
        return _verify(leaf(_account), _proof);
    }

    //NOTE: Calculates percentages ⤵
    function basisPoint (uint input, uint per) 
    internal
    pure 
    returns (uint) {
        
        return input * per / 1000;
    }

    //NOTE: TEAM WALLETS ⤵
    address[] private teamAddresses = [
        0x2f373e535e7ddeCc2178e8019EF017645cC6ccF6,
        0x90B011B9395E7B4434013dEB29B8763643A9FF85
    ];

    //NOTE: TEAM SHARES ⤵
    uint16[] private teamShares = [
        900,
        100
    ];

    //NOTE: Change wallet addreses ⤵ 
    function changeWallets (address[] memory newWallets)
    external {
        for (uint i; i < newWallets.length; i++) {
            teamAddresses[i] = newWallets[i];
        }
    }


    //NOTE: Withdraws money from contract to each member
    function withdraw() 
    external
    onlyOwner {

        uint totalBalance = address(this).balance; //NOTE → Total contract balance

        for (uint i; i < teamAddresses.length; i++) {
            payable(teamAddresses[i]).transfer(
                basisPoint (
                    totalBalance,
                    teamShares[i]
                )
            );
        }
    }

    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"newWallets","type":"address[]"}],"name":"changeWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getMintInfos","outputs":[{"internalType":"uint256[12]","name":"","type":"uint256[12]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMaxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMaxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"sellingStep","outputs":[{"internalType":"enum Crazypumpkin.Step","name":"","type":"uint8"}],"stateMutability":"view","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxfree","type":"uint256"}],"name":"setMaxFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicMaxPerTx","type":"uint256"}],"name":"setPublicMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicMaxPerWallet","type":"uint256"}],"name":"setPublicMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_step","type":"uint256"}],"name":"setStep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wlMaxPerTx","type":"uint256"}],"name":"setWlMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wlMaxPerWallet","type":"uint256"}],"name":"setWlMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlMaxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlMaxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

6622d10c4ecc8000600c55611226600d556107d0600e556005600f819055601055600160118190556012819055600060135560145560c0604052732f373e535e7ddecc2178e8019ef017645cc6ccf660809081527390b011b9395e7b4434013deb29b8763643a9ff8560a0526200007b90601b90600262000198565b5060408051808201909152610384815260646020820152620000a290601c90600262000202565b50348015620000b057600080fd5b506040516200360038038062003600833981016040819052620000d391620003f8565b835184908490620000ec906000906020850190620002ad565b50805162000102906001906020840190620002ad565b5050506200011f620001196200014260201b60201c565b62000146565b81516200013490600b906020850190620002ad565b5060185550620004e4915050565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054828255906000526020600020908101928215620001f0579160200282015b82811115620001f057825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620001b9565b50620001fe9291506200032a565b5090565b82805482825590600052602060002090600f01601090048101928215620001f05791602002820160005b838211156200026e57835183826101000a81548161ffff021916908361ffff16021790555092602001926002016020816001010492830192600103026200022c565b80156200029e5782816101000a81549061ffff02191690556002016020816001010492830192600103026200026e565b5050620001fe9291506200032a565b828054620002bb9062000491565b90600052602060002090601f016020900481019282620002df5760008555620001f0565b82601f10620002fa57805160ff1916838001178555620001f0565b82800160010185558215620001f0579182015b82811115620001f05782518255916020019190600101906200030d565b5b80821115620001fe57600081556001016200032b565b600082601f8301126200035357600080fd5b81516001600160401b0380821115620003705762000370620004ce565b604051601f8301601f19908116603f011681019082821181831017156200039b576200039b620004ce565b81604052838152602092508683858801011115620003b857600080fd5b600091505b83821015620003dc5785820183015181830184015290820190620003bd565b83821115620003ee5760008385830101525b9695505050505050565b600080600080608085870312156200040f57600080fd5b84516001600160401b03808211156200042757600080fd5b620004358883890162000341565b955060208701519150808211156200044c57600080fd5b6200045a8883890162000341565b945060408701519150808211156200047157600080fd5b50620004808782880162000341565b606096909601519497939650505050565b600181811c90821680620004a657607f821691505b60208210811415620004c857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61310c80620004f46000396000f3fe6080604052600436106102ae5760003560e01c80636352211e11610175578063bafd95c3116100dc578063d755bf9911610095578063efe8c4ac1161006f578063efe8c4ac1461082b578063f2fde38b14610841578063f89dd6c814610861578063f8dcbddb1461087757600080fd5b8063d755bf99146107c2578063e985e9c5146107e2578063ed75fbe41461073257600080fd5b8063bafd95c314610705578063bde0608a14610732578063c87b56dd14610752578063cbccefb214610772578063d2cab05614610799578063d5abeb01146107ac57600080fd5b806395d89b411161012e57806395d89b411461066757806397e886531461067c578063a0712d681461069c578063a22cb465146106af578063b0895f64146106cf578063b88d4fde146106e557600080fd5b80636352211e146105be57806370a08231146105de578063715018a6146105fe5780637cb647591461061357806380b17335146106335780638da5cb5b1461064957600080fd5b80632f745c591161021957806344a0d68a116101d257806344a0d68a1461050e578063485a68a31461052e5780634f6ccce71461054457806355f804b3146105645780635a23dd99146105845780635c975abb146105a457600080fd5b80632f745c5914610456578063333e44e61461047657806334aa3dfa1461048c5780633ccfd60b146104ac57806342842e0e146104c1578063438b6300146104e157600080fd5b8063095ea7b31161026b578063095ea7b3146103b557806313faede6146103d557806316a529cb146103eb57806318160ddd1461040b57806323b872dd146104205780632eb4a7ab1461044057600080fd5b806301ffc9a7146102b357806302329a29146102e857806304e4beb81461030a57806304e869031461032e57806306fdde031461035b578063081812fc1461037d575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612b94565b610897565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b50610308610303366004612b60565b6108c2565b005b34801561031657600080fd5b5061032060105481565b6040519081526020016102df565b34801561033a57600080fd5b506103206103493660046128ff565b60196020526000908152604090205481565b34801561036757600080fd5b50610370610908565b6040516102df9190612e28565b34801561038957600080fd5b5061039d610398366004612b7b565b61099a565b6040516001600160a01b0390911681526020016102df565b3480156103c157600080fd5b506103086103d0366004612a82565b610a2f565b3480156103e157600080fd5b50610320600c5481565b3480156103f757600080fd5b50610308610406366004612b7b565b610b45565b34801561041757600080fd5b50600854610320565b34801561042c57600080fd5b5061030861043b36600461294d565b610b74565b34801561044c57600080fd5b5061032060185481565b34801561046257600080fd5b50610320610471366004612a82565b610ba5565b34801561048257600080fd5b5061032060135481565b34801561049857600080fd5b506103086104a7366004612b7b565b610c3b565b3480156104b857600080fd5b50610308610c6a565b3480156104cd57600080fd5b506103086104dc36600461294d565b610d5c565b3480156104ed57600080fd5b506105016104fc3660046128ff565b610d77565b6040516102df9190612dbc565b34801561051a57600080fd5b50610308610529366004612b7b565b610e19565b34801561053a57600080fd5b50610320600e5481565b34801561055057600080fd5b5061032061055f366004612b7b565b610e48565b34801561057057600080fd5b5061030861057f366004612bce565b610edb565b34801561059057600080fd5b506102d361059f366004612a05565b610f18565b3480156105b057600080fd5b506017546102d39060ff1681565b3480156105ca57600080fd5b5061039d6105d9366004612b7b565b610fa1565b3480156105ea57600080fd5b506103206105f93660046128ff565b611018565b34801561060a57600080fd5b5061030861109f565b34801561061f57600080fd5b5061030861062e366004612b7b565b6110d5565b34801561063f57600080fd5b5061032060145481565b34801561065557600080fd5b50600a546001600160a01b031661039d565b34801561067357600080fd5b50610370611104565b34801561068857600080fd5b50610308610697366004612aac565b611113565b6103086106aa366004612b7b565b611187565b3480156106bb57600080fd5b506103086106ca366004612a58565b61148d565b3480156106db57600080fd5b5061032060125481565b3480156106f157600080fd5b50610308610700366004612989565b611552565b34801561071157600080fd5b506107256107203660046128ff565b61158a565b6040516102df9190612d8a565b34801561073e57600080fd5b5061030861074d366004612b7b565b611648565b34801561075e57600080fd5b5061037061076d366004612b7b565b611677565b34801561077e57600080fd5b50601a5461078c9060ff1681565b6040516102df9190612e00565b6103086107a7366004612c17565b611710565b3480156107b857600080fd5b50610320600d5481565b3480156107ce57600080fd5b506103086107dd366004612b7b565b611bc5565b3480156107ee57600080fd5b506102d36107fd36600461291a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561083757600080fd5b5061032060115481565b34801561084d57600080fd5b5061030861085c3660046128ff565b611bf4565b34801561086d57600080fd5b50610320600f5481565b34801561088357600080fd5b50610308610892366004612b7b565b611c8f565b60006001600160e01b0319821663780e9d6360e01b14806108bc57506108bc82611cef565b92915050565b600a546001600160a01b031633146108f55760405162461bcd60e51b81526004016108ec90612e8d565b60405180910390fd5b6017805460ff1916911515919091179055565b60606000805461091790612fd2565b80601f016020809104026020016040519081016040528092919081815260200182805461094390612fd2565b80156109905780601f1061096557610100808354040283529160200191610990565b820191906000526020600020905b81548152906001019060200180831161097357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a135760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108ec565b506000908152600460205260409020546001600160a01b031690565b6000610a3a82610fa1565b9050806001600160a01b0316836001600160a01b03161415610aa85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108ec565b336001600160a01b0382161480610ac45750610ac481336107fd565b610b365760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108ec565b610b408383611d3f565b505050565b600a546001600160a01b03163314610b6f5760405162461bcd60e51b81526004016108ec90612e8d565b601155565b610b7e3382611dad565b610b9a5760405162461bcd60e51b81526004016108ec90612ec2565b610b40838383611ea0565b6000610bb083611018565b8210610c125760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016108ec565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610c655760405162461bcd60e51b81526004016108ec90612e8d565b600f55565b600a546001600160a01b03163314610c945760405162461bcd60e51b81526004016108ec90612e8d565b4760005b601b54811015610d5857601b8181548110610cb557610cb5613094565b9060005260206000200160009054906101000a90046001600160a01b03166001600160a01b03166108fc610d1d84601c8581548110610cf657610cf6613094565b60009182526020909120601082040154600f9091166002026101000a900461ffff1661204b565b6040518115909202916000818181858888f19350505050158015610d45573d6000803e3d6000fd5b5080610d508161300d565b915050610c98565b5050565b610b4083838360405180602001604052806000815250611552565b60606000610d8483611018565b905060008167ffffffffffffffff811115610da157610da16130aa565b604051908082528060200260200182016040528015610dca578160200160208202803683370190505b50905060005b82811015610e1157610de28582610ba5565b828281518110610df457610df4613094565b602090810291909101015280610e098161300d565b915050610dd0565b509392505050565b600a546001600160a01b03163314610e435760405162461bcd60e51b81526004016108ec90612e8d565b600c55565b6000610e5360085490565b8210610eb65760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108ec565b60088281548110610ec957610ec9613094565b90600052602060002001549050919050565b600a546001600160a01b03163314610f055760405162461bcd60e51b81526004016108ec90612e8d565b8051610d5890600b906020840190612777565b6000610f99610f60856040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050919050565b84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061206b92505050565b949350505050565b6000818152600260205260408120546001600160a01b0316806108bc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108ec565b60006001600160a01b0382166110835760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108ec565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110c95760405162461bcd60e51b81526004016108ec90612e8d565b6110d3600061207a565b565b600a546001600160a01b031633146110ff5760405162461bcd60e51b81526004016108ec90612e8d565b601855565b60606001805461091790612fd2565b60005b8151811015610d585781818151811061113157611131613094565b6020026020010151601b828154811061114c5761114c613094565b600091825260209091200180546001600160a01b0319166001600160a01b03929092169190911790558061117f8161300d565b915050611116565b60175460ff16156111cd5760405162461bcd60e51b815260206004820152601060248201526f21b7b73a3930b1ba103830bab9b2b21760811b60448201526064016108ec565b6002601a5460ff1660048111156111e6576111e6613068565b146112335760405162461bcd60e51b815260206004820152601a60248201527f5075626c69632073616c65206973206e6f742072756e6e696e6700000000000060448201526064016108ec565b600081116112835760405162461bcd60e51b815260206004820152601f60248201527f596f752063616e2774206d696e74206c657373207468616e2031204e46542e0060448201526064016108ec565b6011548111156112f05760405162461bcd60e51b815260206004820152603260248201527f596f752063616e2774206d696e74206d6f7265207468616e2035204e46542069604482015271371037b732903a3930b739b0b1ba34b7b71760711b60648201526084016108ec565b60006112fb60085490565b600d5490915061130b8383612f44565b11156113505760405162461bcd60e51b815260206004820152601460248201527326b0bc1039bab838363c9032bc31b2b2b232b21760611b60448201526064016108ec565b600a546001600160a01b0316331461145e5781600c546113709190612f70565b3410156113cb5760405162461bcd60e51b815260206004820152602360248201527f536f72727920796f7520646964206e6f742073656e6420656e6f7567682065746044820152623432b960e91b60648201526084016108ec565b6012541561145e57601254336000908152601660205260409020546113f1908490612f44565b11156114395760405162461bcd60e51b815260206004820152601760248201527613585e081c195c881dd85b1b195d08195e18d959591959604a1b60448201526064016108ec565b3360009081526016602052604081208054849290611458908490612f44565b90915550505b60015b828111610b405761147b336114768385612f44565b6120cc565b806114858161300d565b915050611461565b6001600160a01b0382163314156114e65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108ec565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61155c3383611dad565b6115785760405162461bcd60e51b81526004016108ec90612ec2565b611584848484846120e6565b50505050565b6115926127fb565b6040805161018081018252600f5481526010546020808301919091526001600160a01b038516600081815260158352848120548486015260115460608501526012546080850152818152601683528481205460a085015290815260199091529182205460c082015260e0810161160760085490565b8152600e546020820152601a5460409091019060ff16600481111561162e5761162e613068565b815260135460208201526014546040909101529392505050565b600a546001600160a01b031633146116725760405162461bcd60e51b81526004016108ec90612e8d565b601055565b6000818152600260205260409020546060906001600160a01b03166116de5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e0060448201526064016108ec565b600b6116e983612119565b6040516020016116fa929190612c92565b6040516020818303038152906040529050919050565b60175460ff16156117565760405162461bcd60e51b815260206004820152601060248201526f21b7b73a3930b1ba103830bab9b2b21760811b60448201526064016108ec565b6001601a5460ff16600481111561176f5761176f613068565b146117bc5760405162461bcd60e51b815260206004820152601e60248201527f57686974656c6973742073616c65206973206e6f742072756e6e696e672e000060448201526064016108ec565b6117c7338383610f18565b6118135760405162461bcd60e51b815260206004820152601760248201527f596f75277265206e6f742077686974656c69737465642e00000000000000000060448201526064016108ec565b600083116118635760405162461bcd60e51b815260206004820152601f60248201527f596f752063616e2774206d696e74206c657373207468616e2031204e46542e0060448201526064016108ec565b600f548311156118d05760405162461bcd60e51b815260206004820152603260248201527f596f752063616e2774206d696e74206d6f7265207468616e206c696d69742069604482015271371037b732903a3930b739b0b1ba34b7b71760711b60648201526084016108ec565b60006118db60085490565b600d549091506118eb8583612f44565b111561192f5760405162461bcd60e51b815260206004820152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b60448201526064016108ec565b3360009081526019602052604081205460145461194c9190612f8f565b90506000808287116119895733600090815260196020526040812080549193508891849061197b908490612f44565b909155508791506119c09050565b6119938388612f8f565b336000908152601960205260408120805492945085929091906119b7908490612f44565b90915550839150505b600a546001600160a01b03163314611ae757600e54876013546119e39190612f44565b11611a435781600c546119f69190612f70565b341015611a3e5760405162461bcd60e51b81526020600482015260166024820152750b2deea40c8d2c840dcdee840e0c2f240cadcdeeaced60531b60448201526064016108ec565b611ae7565b6000601354600e54611a559190612f8f565b9050808410611a6357611a7a565b611a6d8482612f8f565b611a779082612f8f565b90505b611a848189612f8f565b600c54611a919190612f70565b341015611ad95760405162461bcd60e51b81526020600482015260166024820152750b2deea40c8d2c840dcdee840e0c2f240cadcdeeaced60531b60448201526064016108ec565b611ae38189612f8f565b9150505b8060136000828254611af99190612f44565b909155505060105415611b915760105433600090815260156020526040902054611b24908990612f44565b1115611b6c5760405162461bcd60e51b815260206004820152601760248201527613585e081c195c881dd85b1b195d08195e18d959591959604a1b60448201526064016108ec565b3360009081526015602052604081208054899290611b8b908490612f44565b90915550505b60015b878111611bbb57611ba9336114768388612f44565b80611bb38161300d565b915050611b94565b5050505050505050565b600a546001600160a01b03163314611bef5760405162461bcd60e51b81526004016108ec90612e8d565b600e55565b600a546001600160a01b03163314611c1e5760405162461bcd60e51b81526004016108ec90612e8d565b6001600160a01b038116611c835760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ec565b611c8c8161207a565b50565b600a546001600160a01b03163314611cb95760405162461bcd60e51b81526004016108ec90612e8d565b806004811115611ccb57611ccb613068565b601a805460ff19166001836004811115611ce757611ce7613068565b021790555050565b60006001600160e01b031982166380ac58cd60e01b1480611d2057506001600160e01b03198216635b5e139f60e01b145b806108bc57506301ffc9a760e01b6001600160e01b03198316146108bc565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611d7482610fa1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611e265760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108ec565b6000611e3183610fa1565b9050806001600160a01b0316846001600160a01b03161480611e6c5750836001600160a01b0316611e618461099a565b6001600160a01b0316145b80610f9957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16610f99565b826001600160a01b0316611eb382610fa1565b6001600160a01b031614611f1b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108ec565b6001600160a01b038216611f7d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108ec565b611f88838383612217565b611f93600082611d3f565b6001600160a01b0383166000908152600360205260408120805460019290611fbc908490612f8f565b90915550506001600160a01b0382166000908152600360205260408120805460019290611fea908490612f44565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006103e861205a8385612f70565b6120649190612f5c565b9392505050565b600061206482601854856122cf565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610d588282604051806020016040528060008152506122e5565b6120f1848484611ea0565b6120fd84848484612318565b6115845760405162461bcd60e51b81526004016108ec90612e3b565b60608161213d5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561216757806121518161300d565b91506121609050600a83612f5c565b9150612141565b60008167ffffffffffffffff811115612182576121826130aa565b6040519080825280601f01601f1916602001820160405280156121ac576020820181803683370190505b5090505b8415610f99576121c1600183612f8f565b91506121ce600a86613028565b6121d9906030612f44565b60f81b8183815181106121ee576121ee613094565b60200101906001600160f81b031916908160001a905350612210600a86612f5c565b94506121b0565b6001600160a01b0383166122725761226d81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612295565b816001600160a01b0316836001600160a01b031614612295576122958382612425565b6001600160a01b0382166122ac57610b40816124c2565b826001600160a01b0316826001600160a01b031614610b4057610b408282612571565b6000826122dc85846125b5565b14949350505050565b6122ef83836125fa565b6122fc6000848484612318565b610b405760405162461bcd60e51b81526004016108ec90612e3b565b60006001600160a01b0384163b1561241a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061235c903390899088908890600401612d4d565b602060405180830381600087803b15801561237657600080fd5b505af19250505080156123a6575060408051601f3d908101601f191682019092526123a391810190612bb1565b60015b612400573d8080156123d4576040519150601f19603f3d011682016040523d82523d6000602084013e6123d9565b606091505b5080516123f85760405162461bcd60e51b81526004016108ec90612e3b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f99565b506001949350505050565b6000600161243284611018565b61243c9190612f8f565b60008381526007602052604090205490915080821461248f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906124d490600190612f8f565b600083815260096020526040812054600880549394509092849081106124fc576124fc613094565b90600052602060002001549050806008838154811061251d5761251d613094565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806125555761255561307e565b6001900381819060005260206000200160009055905550505050565b600061257c83611018565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b600081815b8451811015610e11576125e6828683815181106125d9576125d9613094565b6020026020010151612748565b9150806125f28161300d565b9150506125ba565b6001600160a01b0382166126505760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108ec565b6000818152600260205260409020546001600160a01b0316156126b55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108ec565b6126c160008383612217565b6001600160a01b03821660009081526003602052604081208054600192906126ea908490612f44565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000818310612764576000828152602084905260409020612064565b6000838152602083905260409020612064565b82805461278390612fd2565b90600052602060002090601f0160209004810192826127a557600085556127eb565b82601f106127be57805160ff19168380011785556127eb565b828001600101855582156127eb579182015b828111156127eb5782518255916020019190600101906127d0565b506127f792915061281a565b5090565b604051806101800160405280600c906020820280368337509192915050565b5b808211156127f7576000815560010161281b565b600067ffffffffffffffff831115612849576128496130aa565b61285c601f8401601f1916602001612f13565b905082815283838301111561287057600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461289e57600080fd5b919050565b60008083601f8401126128b557600080fd5b50813567ffffffffffffffff8111156128cd57600080fd5b6020830191508360208260051b85010111156128e857600080fd5b9250929050565b8035801515811461289e57600080fd5b60006020828403121561291157600080fd5b61206482612887565b6000806040838503121561292d57600080fd5b61293683612887565b915061294460208401612887565b90509250929050565b60008060006060848603121561296257600080fd5b61296b84612887565b925061297960208501612887565b9150604084013590509250925092565b6000806000806080858703121561299f57600080fd5b6129a885612887565b93506129b660208601612887565b925060408501359150606085013567ffffffffffffffff8111156129d957600080fd5b8501601f810187136129ea57600080fd5b6129f98782356020840161282f565b91505092959194509250565b600080600060408486031215612a1a57600080fd5b612a2384612887565b9250602084013567ffffffffffffffff811115612a3f57600080fd5b612a4b868287016128a3565b9497909650939450505050565b60008060408385031215612a6b57600080fd5b612a7483612887565b9150612944602084016128ef565b60008060408385031215612a9557600080fd5b612a9e83612887565b946020939093013593505050565b60006020808385031215612abf57600080fd5b823567ffffffffffffffff80821115612ad757600080fd5b818501915085601f830112612aeb57600080fd5b813581811115612afd57612afd6130aa565b8060051b9150612b0e848301612f13565b8181528481019084860184860187018a1015612b2957600080fd5b600095505b83861015612b5357612b3f81612887565b835260019590950194918601918601612b2e565b5098975050505050505050565b600060208284031215612b7257600080fd5b612064826128ef565b600060208284031215612b8d57600080fd5b5035919050565b600060208284031215612ba657600080fd5b8135612064816130c0565b600060208284031215612bc357600080fd5b8151612064816130c0565b600060208284031215612be057600080fd5b813567ffffffffffffffff811115612bf757600080fd5b8201601f81018413612c0857600080fd5b610f998482356020840161282f565b600080600060408486031215612c2c57600080fd5b83359250602084013567ffffffffffffffff811115612a3f57600080fd5b60008151808452612c62816020860160208601612fa6565b601f01601f19169290920160200192915050565b60008151612c88818560208601612fa6565b9290920192915050565b600080845481600182811c915080831680612cae57607f831692505b6020808410821415612cce57634e487b7160e01b86526022600452602486fd5b818015612ce25760018114612cf357612d20565b60ff19861689528489019650612d20565b60008b81526020902060005b86811015612d185781548b820152908501908301612cff565b505084890196505b505050505050612d44612d338286612c76565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d8090830184612c4a565b9695505050505050565b6101808101818360005b600c811015612db3578151835260209283019290910190600101612d94565b50505092915050565b6020808252825182820181905260009190848201906040850190845b81811015612df457835183529284019291840191600101612dd8565b50909695505050505050565b6020810160058310612e2257634e487b7160e01b600052602160045260246000fd5b91905290565b6020815260006120646020830184612c4a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612f3c57612f3c6130aa565b604052919050565b60008219821115612f5757612f5761303c565b500190565b600082612f6b57612f6b613052565b500490565b6000816000190483118215151615612f8a57612f8a61303c565b500290565b600082821015612fa157612fa161303c565b500390565b60005b83811015612fc1578181015183820152602001612fa9565b838111156115845750506000910152565b600181811c90821680612fe657607f821691505b6020821081141561300757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156130215761302161303c565b5060010190565b60008261303757613037613052565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611c8c57600080fdfea2646970667358221220f734dce279f998cfd9460a15b5590e04f3c2fc8672bf8be5021ab15263c0f8f364736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100c881560684c28ba901f5c4db117e2aa30edcd356dc82c39457ae1827616cfe67000000000000000000000000000000000000000000000000000000000000000d4372617a792050756d706b696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000948616c6c6f7765656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5054646d6f757742354a536f617531445377666d4a7a6f68526f6445685836785436584347727a6a4a6237702f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102ae5760003560e01c80636352211e11610175578063bafd95c3116100dc578063d755bf9911610095578063efe8c4ac1161006f578063efe8c4ac1461082b578063f2fde38b14610841578063f89dd6c814610861578063f8dcbddb1461087757600080fd5b8063d755bf99146107c2578063e985e9c5146107e2578063ed75fbe41461073257600080fd5b8063bafd95c314610705578063bde0608a14610732578063c87b56dd14610752578063cbccefb214610772578063d2cab05614610799578063d5abeb01146107ac57600080fd5b806395d89b411161012e57806395d89b411461066757806397e886531461067c578063a0712d681461069c578063a22cb465146106af578063b0895f64146106cf578063b88d4fde146106e557600080fd5b80636352211e146105be57806370a08231146105de578063715018a6146105fe5780637cb647591461061357806380b17335146106335780638da5cb5b1461064957600080fd5b80632f745c591161021957806344a0d68a116101d257806344a0d68a1461050e578063485a68a31461052e5780634f6ccce71461054457806355f804b3146105645780635a23dd99146105845780635c975abb146105a457600080fd5b80632f745c5914610456578063333e44e61461047657806334aa3dfa1461048c5780633ccfd60b146104ac57806342842e0e146104c1578063438b6300146104e157600080fd5b8063095ea7b31161026b578063095ea7b3146103b557806313faede6146103d557806316a529cb146103eb57806318160ddd1461040b57806323b872dd146104205780632eb4a7ab1461044057600080fd5b806301ffc9a7146102b357806302329a29146102e857806304e4beb81461030a57806304e869031461032e57806306fdde031461035b578063081812fc1461037d575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612b94565b610897565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b50610308610303366004612b60565b6108c2565b005b34801561031657600080fd5b5061032060105481565b6040519081526020016102df565b34801561033a57600080fd5b506103206103493660046128ff565b60196020526000908152604090205481565b34801561036757600080fd5b50610370610908565b6040516102df9190612e28565b34801561038957600080fd5b5061039d610398366004612b7b565b61099a565b6040516001600160a01b0390911681526020016102df565b3480156103c157600080fd5b506103086103d0366004612a82565b610a2f565b3480156103e157600080fd5b50610320600c5481565b3480156103f757600080fd5b50610308610406366004612b7b565b610b45565b34801561041757600080fd5b50600854610320565b34801561042c57600080fd5b5061030861043b36600461294d565b610b74565b34801561044c57600080fd5b5061032060185481565b34801561046257600080fd5b50610320610471366004612a82565b610ba5565b34801561048257600080fd5b5061032060135481565b34801561049857600080fd5b506103086104a7366004612b7b565b610c3b565b3480156104b857600080fd5b50610308610c6a565b3480156104cd57600080fd5b506103086104dc36600461294d565b610d5c565b3480156104ed57600080fd5b506105016104fc3660046128ff565b610d77565b6040516102df9190612dbc565b34801561051a57600080fd5b50610308610529366004612b7b565b610e19565b34801561053a57600080fd5b50610320600e5481565b34801561055057600080fd5b5061032061055f366004612b7b565b610e48565b34801561057057600080fd5b5061030861057f366004612bce565b610edb565b34801561059057600080fd5b506102d361059f366004612a05565b610f18565b3480156105b057600080fd5b506017546102d39060ff1681565b3480156105ca57600080fd5b5061039d6105d9366004612b7b565b610fa1565b3480156105ea57600080fd5b506103206105f93660046128ff565b611018565b34801561060a57600080fd5b5061030861109f565b34801561061f57600080fd5b5061030861062e366004612b7b565b6110d5565b34801561063f57600080fd5b5061032060145481565b34801561065557600080fd5b50600a546001600160a01b031661039d565b34801561067357600080fd5b50610370611104565b34801561068857600080fd5b50610308610697366004612aac565b611113565b6103086106aa366004612b7b565b611187565b3480156106bb57600080fd5b506103086106ca366004612a58565b61148d565b3480156106db57600080fd5b5061032060125481565b3480156106f157600080fd5b50610308610700366004612989565b611552565b34801561071157600080fd5b506107256107203660046128ff565b61158a565b6040516102df9190612d8a565b34801561073e57600080fd5b5061030861074d366004612b7b565b611648565b34801561075e57600080fd5b5061037061076d366004612b7b565b611677565b34801561077e57600080fd5b50601a5461078c9060ff1681565b6040516102df9190612e00565b6103086107a7366004612c17565b611710565b3480156107b857600080fd5b50610320600d5481565b3480156107ce57600080fd5b506103086107dd366004612b7b565b611bc5565b3480156107ee57600080fd5b506102d36107fd36600461291a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561083757600080fd5b5061032060115481565b34801561084d57600080fd5b5061030861085c3660046128ff565b611bf4565b34801561086d57600080fd5b50610320600f5481565b34801561088357600080fd5b50610308610892366004612b7b565b611c8f565b60006001600160e01b0319821663780e9d6360e01b14806108bc57506108bc82611cef565b92915050565b600a546001600160a01b031633146108f55760405162461bcd60e51b81526004016108ec90612e8d565b60405180910390fd5b6017805460ff1916911515919091179055565b60606000805461091790612fd2565b80601f016020809104026020016040519081016040528092919081815260200182805461094390612fd2565b80156109905780601f1061096557610100808354040283529160200191610990565b820191906000526020600020905b81548152906001019060200180831161097357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a135760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108ec565b506000908152600460205260409020546001600160a01b031690565b6000610a3a82610fa1565b9050806001600160a01b0316836001600160a01b03161415610aa85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108ec565b336001600160a01b0382161480610ac45750610ac481336107fd565b610b365760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108ec565b610b408383611d3f565b505050565b600a546001600160a01b03163314610b6f5760405162461bcd60e51b81526004016108ec90612e8d565b601155565b610b7e3382611dad565b610b9a5760405162461bcd60e51b81526004016108ec90612ec2565b610b40838383611ea0565b6000610bb083611018565b8210610c125760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016108ec565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610c655760405162461bcd60e51b81526004016108ec90612e8d565b600f55565b600a546001600160a01b03163314610c945760405162461bcd60e51b81526004016108ec90612e8d565b4760005b601b54811015610d5857601b8181548110610cb557610cb5613094565b9060005260206000200160009054906101000a90046001600160a01b03166001600160a01b03166108fc610d1d84601c8581548110610cf657610cf6613094565b60009182526020909120601082040154600f9091166002026101000a900461ffff1661204b565b6040518115909202916000818181858888f19350505050158015610d45573d6000803e3d6000fd5b5080610d508161300d565b915050610c98565b5050565b610b4083838360405180602001604052806000815250611552565b60606000610d8483611018565b905060008167ffffffffffffffff811115610da157610da16130aa565b604051908082528060200260200182016040528015610dca578160200160208202803683370190505b50905060005b82811015610e1157610de28582610ba5565b828281518110610df457610df4613094565b602090810291909101015280610e098161300d565b915050610dd0565b509392505050565b600a546001600160a01b03163314610e435760405162461bcd60e51b81526004016108ec90612e8d565b600c55565b6000610e5360085490565b8210610eb65760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108ec565b60088281548110610ec957610ec9613094565b90600052602060002001549050919050565b600a546001600160a01b03163314610f055760405162461bcd60e51b81526004016108ec90612e8d565b8051610d5890600b906020840190612777565b6000610f99610f60856040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050919050565b84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061206b92505050565b949350505050565b6000818152600260205260408120546001600160a01b0316806108bc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108ec565b60006001600160a01b0382166110835760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108ec565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110c95760405162461bcd60e51b81526004016108ec90612e8d565b6110d3600061207a565b565b600a546001600160a01b031633146110ff5760405162461bcd60e51b81526004016108ec90612e8d565b601855565b60606001805461091790612fd2565b60005b8151811015610d585781818151811061113157611131613094565b6020026020010151601b828154811061114c5761114c613094565b600091825260209091200180546001600160a01b0319166001600160a01b03929092169190911790558061117f8161300d565b915050611116565b60175460ff16156111cd5760405162461bcd60e51b815260206004820152601060248201526f21b7b73a3930b1ba103830bab9b2b21760811b60448201526064016108ec565b6002601a5460ff1660048111156111e6576111e6613068565b146112335760405162461bcd60e51b815260206004820152601a60248201527f5075626c69632073616c65206973206e6f742072756e6e696e6700000000000060448201526064016108ec565b600081116112835760405162461bcd60e51b815260206004820152601f60248201527f596f752063616e2774206d696e74206c657373207468616e2031204e46542e0060448201526064016108ec565b6011548111156112f05760405162461bcd60e51b815260206004820152603260248201527f596f752063616e2774206d696e74206d6f7265207468616e2035204e46542069604482015271371037b732903a3930b739b0b1ba34b7b71760711b60648201526084016108ec565b60006112fb60085490565b600d5490915061130b8383612f44565b11156113505760405162461bcd60e51b815260206004820152601460248201527326b0bc1039bab838363c9032bc31b2b2b232b21760611b60448201526064016108ec565b600a546001600160a01b0316331461145e5781600c546113709190612f70565b3410156113cb5760405162461bcd60e51b815260206004820152602360248201527f536f72727920796f7520646964206e6f742073656e6420656e6f7567682065746044820152623432b960e91b60648201526084016108ec565b6012541561145e57601254336000908152601660205260409020546113f1908490612f44565b11156114395760405162461bcd60e51b815260206004820152601760248201527613585e081c195c881dd85b1b195d08195e18d959591959604a1b60448201526064016108ec565b3360009081526016602052604081208054849290611458908490612f44565b90915550505b60015b828111610b405761147b336114768385612f44565b6120cc565b806114858161300d565b915050611461565b6001600160a01b0382163314156114e65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108ec565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61155c3383611dad565b6115785760405162461bcd60e51b81526004016108ec90612ec2565b611584848484846120e6565b50505050565b6115926127fb565b6040805161018081018252600f5481526010546020808301919091526001600160a01b038516600081815260158352848120548486015260115460608501526012546080850152818152601683528481205460a085015290815260199091529182205460c082015260e0810161160760085490565b8152600e546020820152601a5460409091019060ff16600481111561162e5761162e613068565b815260135460208201526014546040909101529392505050565b600a546001600160a01b031633146116725760405162461bcd60e51b81526004016108ec90612e8d565b601055565b6000818152600260205260409020546060906001600160a01b03166116de5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e0060448201526064016108ec565b600b6116e983612119565b6040516020016116fa929190612c92565b6040516020818303038152906040529050919050565b60175460ff16156117565760405162461bcd60e51b815260206004820152601060248201526f21b7b73a3930b1ba103830bab9b2b21760811b60448201526064016108ec565b6001601a5460ff16600481111561176f5761176f613068565b146117bc5760405162461bcd60e51b815260206004820152601e60248201527f57686974656c6973742073616c65206973206e6f742072756e6e696e672e000060448201526064016108ec565b6117c7338383610f18565b6118135760405162461bcd60e51b815260206004820152601760248201527f596f75277265206e6f742077686974656c69737465642e00000000000000000060448201526064016108ec565b600083116118635760405162461bcd60e51b815260206004820152601f60248201527f596f752063616e2774206d696e74206c657373207468616e2031204e46542e0060448201526064016108ec565b600f548311156118d05760405162461bcd60e51b815260206004820152603260248201527f596f752063616e2774206d696e74206d6f7265207468616e206c696d69742069604482015271371037b732903a3930b739b0b1ba34b7b71760711b60648201526084016108ec565b60006118db60085490565b600d549091506118eb8583612f44565b111561192f5760405162461bcd60e51b815260206004820152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b60448201526064016108ec565b3360009081526019602052604081205460145461194c9190612f8f565b90506000808287116119895733600090815260196020526040812080549193508891849061197b908490612f44565b909155508791506119c09050565b6119938388612f8f565b336000908152601960205260408120805492945085929091906119b7908490612f44565b90915550839150505b600a546001600160a01b03163314611ae757600e54876013546119e39190612f44565b11611a435781600c546119f69190612f70565b341015611a3e5760405162461bcd60e51b81526020600482015260166024820152750b2deea40c8d2c840dcdee840e0c2f240cadcdeeaced60531b60448201526064016108ec565b611ae7565b6000601354600e54611a559190612f8f565b9050808410611a6357611a7a565b611a6d8482612f8f565b611a779082612f8f565b90505b611a848189612f8f565b600c54611a919190612f70565b341015611ad95760405162461bcd60e51b81526020600482015260166024820152750b2deea40c8d2c840dcdee840e0c2f240cadcdeeaced60531b60448201526064016108ec565b611ae38189612f8f565b9150505b8060136000828254611af99190612f44565b909155505060105415611b915760105433600090815260156020526040902054611b24908990612f44565b1115611b6c5760405162461bcd60e51b815260206004820152601760248201527613585e081c195c881dd85b1b195d08195e18d959591959604a1b60448201526064016108ec565b3360009081526015602052604081208054899290611b8b908490612f44565b90915550505b60015b878111611bbb57611ba9336114768388612f44565b80611bb38161300d565b915050611b94565b5050505050505050565b600a546001600160a01b03163314611bef5760405162461bcd60e51b81526004016108ec90612e8d565b600e55565b600a546001600160a01b03163314611c1e5760405162461bcd60e51b81526004016108ec90612e8d565b6001600160a01b038116611c835760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ec565b611c8c8161207a565b50565b600a546001600160a01b03163314611cb95760405162461bcd60e51b81526004016108ec90612e8d565b806004811115611ccb57611ccb613068565b601a805460ff19166001836004811115611ce757611ce7613068565b021790555050565b60006001600160e01b031982166380ac58cd60e01b1480611d2057506001600160e01b03198216635b5e139f60e01b145b806108bc57506301ffc9a760e01b6001600160e01b03198316146108bc565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611d7482610fa1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611e265760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108ec565b6000611e3183610fa1565b9050806001600160a01b0316846001600160a01b03161480611e6c5750836001600160a01b0316611e618461099a565b6001600160a01b0316145b80610f9957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16610f99565b826001600160a01b0316611eb382610fa1565b6001600160a01b031614611f1b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108ec565b6001600160a01b038216611f7d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108ec565b611f88838383612217565b611f93600082611d3f565b6001600160a01b0383166000908152600360205260408120805460019290611fbc908490612f8f565b90915550506001600160a01b0382166000908152600360205260408120805460019290611fea908490612f44565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006103e861205a8385612f70565b6120649190612f5c565b9392505050565b600061206482601854856122cf565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610d588282604051806020016040528060008152506122e5565b6120f1848484611ea0565b6120fd84848484612318565b6115845760405162461bcd60e51b81526004016108ec90612e3b565b60608161213d5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561216757806121518161300d565b91506121609050600a83612f5c565b9150612141565b60008167ffffffffffffffff811115612182576121826130aa565b6040519080825280601f01601f1916602001820160405280156121ac576020820181803683370190505b5090505b8415610f99576121c1600183612f8f565b91506121ce600a86613028565b6121d9906030612f44565b60f81b8183815181106121ee576121ee613094565b60200101906001600160f81b031916908160001a905350612210600a86612f5c565b94506121b0565b6001600160a01b0383166122725761226d81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612295565b816001600160a01b0316836001600160a01b031614612295576122958382612425565b6001600160a01b0382166122ac57610b40816124c2565b826001600160a01b0316826001600160a01b031614610b4057610b408282612571565b6000826122dc85846125b5565b14949350505050565b6122ef83836125fa565b6122fc6000848484612318565b610b405760405162461bcd60e51b81526004016108ec90612e3b565b60006001600160a01b0384163b1561241a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061235c903390899088908890600401612d4d565b602060405180830381600087803b15801561237657600080fd5b505af19250505080156123a6575060408051601f3d908101601f191682019092526123a391810190612bb1565b60015b612400573d8080156123d4576040519150601f19603f3d011682016040523d82523d6000602084013e6123d9565b606091505b5080516123f85760405162461bcd60e51b81526004016108ec90612e3b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f99565b506001949350505050565b6000600161243284611018565b61243c9190612f8f565b60008381526007602052604090205490915080821461248f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906124d490600190612f8f565b600083815260096020526040812054600880549394509092849081106124fc576124fc613094565b90600052602060002001549050806008838154811061251d5761251d613094565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806125555761255561307e565b6001900381819060005260206000200160009055905550505050565b600061257c83611018565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b600081815b8451811015610e11576125e6828683815181106125d9576125d9613094565b6020026020010151612748565b9150806125f28161300d565b9150506125ba565b6001600160a01b0382166126505760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108ec565b6000818152600260205260409020546001600160a01b0316156126b55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108ec565b6126c160008383612217565b6001600160a01b03821660009081526003602052604081208054600192906126ea908490612f44565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000818310612764576000828152602084905260409020612064565b6000838152602083905260409020612064565b82805461278390612fd2565b90600052602060002090601f0160209004810192826127a557600085556127eb565b82601f106127be57805160ff19168380011785556127eb565b828001600101855582156127eb579182015b828111156127eb5782518255916020019190600101906127d0565b506127f792915061281a565b5090565b604051806101800160405280600c906020820280368337509192915050565b5b808211156127f7576000815560010161281b565b600067ffffffffffffffff831115612849576128496130aa565b61285c601f8401601f1916602001612f13565b905082815283838301111561287057600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461289e57600080fd5b919050565b60008083601f8401126128b557600080fd5b50813567ffffffffffffffff8111156128cd57600080fd5b6020830191508360208260051b85010111156128e857600080fd5b9250929050565b8035801515811461289e57600080fd5b60006020828403121561291157600080fd5b61206482612887565b6000806040838503121561292d57600080fd5b61293683612887565b915061294460208401612887565b90509250929050565b60008060006060848603121561296257600080fd5b61296b84612887565b925061297960208501612887565b9150604084013590509250925092565b6000806000806080858703121561299f57600080fd5b6129a885612887565b93506129b660208601612887565b925060408501359150606085013567ffffffffffffffff8111156129d957600080fd5b8501601f810187136129ea57600080fd5b6129f98782356020840161282f565b91505092959194509250565b600080600060408486031215612a1a57600080fd5b612a2384612887565b9250602084013567ffffffffffffffff811115612a3f57600080fd5b612a4b868287016128a3565b9497909650939450505050565b60008060408385031215612a6b57600080fd5b612a7483612887565b9150612944602084016128ef565b60008060408385031215612a9557600080fd5b612a9e83612887565b946020939093013593505050565b60006020808385031215612abf57600080fd5b823567ffffffffffffffff80821115612ad757600080fd5b818501915085601f830112612aeb57600080fd5b813581811115612afd57612afd6130aa565b8060051b9150612b0e848301612f13565b8181528481019084860184860187018a1015612b2957600080fd5b600095505b83861015612b5357612b3f81612887565b835260019590950194918601918601612b2e565b5098975050505050505050565b600060208284031215612b7257600080fd5b612064826128ef565b600060208284031215612b8d57600080fd5b5035919050565b600060208284031215612ba657600080fd5b8135612064816130c0565b600060208284031215612bc357600080fd5b8151612064816130c0565b600060208284031215612be057600080fd5b813567ffffffffffffffff811115612bf757600080fd5b8201601f81018413612c0857600080fd5b610f998482356020840161282f565b600080600060408486031215612c2c57600080fd5b83359250602084013567ffffffffffffffff811115612a3f57600080fd5b60008151808452612c62816020860160208601612fa6565b601f01601f19169290920160200192915050565b60008151612c88818560208601612fa6565b9290920192915050565b600080845481600182811c915080831680612cae57607f831692505b6020808410821415612cce57634e487b7160e01b86526022600452602486fd5b818015612ce25760018114612cf357612d20565b60ff19861689528489019650612d20565b60008b81526020902060005b86811015612d185781548b820152908501908301612cff565b505084890196505b505050505050612d44612d338286612c76565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d8090830184612c4a565b9695505050505050565b6101808101818360005b600c811015612db3578151835260209283019290910190600101612d94565b50505092915050565b6020808252825182820181905260009190848201906040850190845b81811015612df457835183529284019291840191600101612dd8565b50909695505050505050565b6020810160058310612e2257634e487b7160e01b600052602160045260246000fd5b91905290565b6020815260006120646020830184612c4a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612f3c57612f3c6130aa565b604052919050565b60008219821115612f5757612f5761303c565b500190565b600082612f6b57612f6b613052565b500490565b6000816000190483118215151615612f8a57612f8a61303c565b500290565b600082821015612fa157612fa161303c565b500390565b60005b83811015612fc1578181015183820152602001612fa9565b838111156115845750506000910152565b600181811c90821680612fe657607f821691505b6020821081141561300757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156130215761302161303c565b5060010190565b60008261303757613037613052565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611c8c57600080fdfea2646970667358221220f734dce279f998cfd9460a15b5590e04f3c2fc8672bf8be5021ab15263c0f8f364736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100c881560684c28ba901f5c4db117e2aa30edcd356dc82c39457ae1827616cfe67000000000000000000000000000000000000000000000000000000000000000d4372617a792050756d706b696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000948616c6c6f7765656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5054646d6f757742354a536f617531445377666d4a7a6f68526f6445685836785436584347727a6a4a6237702f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Crazy Pumpkin
Arg [1] : _symbol (string): Halloween
Arg [2] : _baseURI (string): https://gateway.pinata.cloud/ipfs/QmPTdmouwB5JSoau1DSwfmJzohRodEhX6xT6XCGrzjJb7p/
Arg [3] : _merkleRoot (bytes32): 0xc881560684c28ba901f5c4db117e2aa30edcd356dc82c39457ae1827616cfe67

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : c881560684c28ba901f5c4db117e2aa30edcd356dc82c39457ae1827616cfe67
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [5] : 4372617a792050756d706b696e00000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [7] : 48616c6c6f7765656e0000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [9] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [10] : 732f516d5054646d6f757742354a536f617531445377666d4a7a6f68526f6445
Arg [11] : 685836785436584347727a6a4a6237702f000000000000000000000000000000


Deployed Bytecode Sourcemap

61206:10134:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34666:224;;;;;;;;;;-1:-1:-1;34666:224:0;;;;;:::i;:::-;;:::i;:::-;;;10741:14:1;;10734:22;10716:41;;10704:2;10689:18;34666:224:0;;;;;;;;67235:73;;;;;;;;;;-1:-1:-1;67235:73:0;;;;;:::i;:::-;;:::i;:::-;;61450:30;;;;;;;;;;;;;;;;;;;10914:25:1;;;10902:2;10887:18;61450:30:0;10768:177:1;61846:46:0;;;;;;;;;;-1:-1:-1;61846:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;22558:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24117:221::-;;;;;;;;;;-1:-1:-1;24117:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8900:32:1;;;8882:51;;8870:2;8855:18;24117:221:0;8736:203:1;23640:411:0;;;;;;;;;;-1:-1:-1;23640:411:0;;;;;:::i;:::-;;:::i;61313:34::-;;;;;;;;;;;;;;;;67871:120;;;;;;;;;;-1:-1:-1;67871:120:0;;;;;:::i;:::-;;:::i;35306:113::-;;;;;;;;;;-1:-1:-1;35394:10:0;:17;35306:113;;25007:339;;;;;;;;;;-1:-1:-1;25007:339:0;;;;;:::i;:::-;;:::i;61810:25::-;;;;;;;;;;;;;;;;34974:256;;;;;;;;;;-1:-1:-1;34974:256:0;;;;;:::i;:::-;;:::i;61559:25::-;;;;;;;;;;;;;;;;67637:101;;;;;;;;;;-1:-1:-1;67637:101:0;;;;;:::i;:::-;;:::i;70931:398::-;;;;;;;;;;;;;:::i;25417:185::-;;;;;;;;;;-1:-1:-1;25417:185:0;;;;;:::i;:::-;;:::i;66156:348::-;;;;;;;;;;-1:-1:-1;66156:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;67047:80::-;;;;;;;;;;-1:-1:-1;67047:80:0;;;;;:::i;:::-;;:::i;61388:26::-;;;;;;;;;;;;;;;;35496:233;;;;;;;;;;-1:-1:-1;35496:233:0;;;;;:::i;:::-;;:::i;67133:98::-;;;;;;;;;;-1:-1:-1;67133:98:0;;;;;:::i;:::-;;:::i;69965:184::-;;;;;;;;;;-1:-1:-1;69965:184:0;;;;;:::i;:::-;;:::i;61785:18::-;;;;;;;;;;-1:-1:-1;61785:18:0;;;;;;;;22252:239;;;;;;;;;;-1:-1:-1;22252:239:0;;;;;:::i;:::-;;:::i;21982:208::-;;;;;;;;;;-1:-1:-1;21982:208:0;;;;;:::i;:::-;;:::i;42455:94::-;;;;;;;;;;;;;:::i;68786:106::-;;;;;;;;;;-1:-1:-1;68786:106:0;;;;;:::i;:::-;;:::i;61591:25::-;;;;;;;;;;;;;;;;41804:87;;;;;;;;;;-1:-1:-1;41877:6:0;;-1:-1:-1;;;;;41877:6:0;41804:87;;22727:104;;;;;;;;;;;;;:::i;70678:185::-;;;;;;;;;;-1:-1:-1;70678:185:0;;;;;:::i;:::-;;:::i;62258:904::-;;;;;;:::i;:::-;;:::i;24410:295::-;;;;;;;;;;-1:-1:-1;24410:295:0;;;;;:::i;:::-;;:::i;61520:34::-;;;;;;;;;;;;;;;;25673:328;;;;;;;;;;-1:-1:-1;25673:328:0;;;;;:::i;:::-;;:::i;68136:528::-;;;;;;;;;;-1:-1:-1;68136:528:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;67746:117::-;;;;;;;;;;-1:-1:-1;67746:117:0;;;;;:::i;:::-;;:::i;66737:302::-;;;;;;;;;;-1:-1:-1;66737:302:0;;;;;:::i;:::-;;:::i;62000:23::-;;;;;;;;;;-1:-1:-1;62000:23:0;;;;;;;;;;;;;;;:::i;63168:2982::-;;;;;;:::i;:::-;;:::i;61352:31::-;;;;;;;;;;;;;;;;67537:92;;;;;;;;;;-1:-1:-1;67537:92:0;;;;;:::i;:::-;;:::i;24776:164::-;;;;;;;;;;-1:-1:-1;24776:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24897:25:0;;;24873:4;24897:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24776:164;61485:30;;;;;;;;;;;;;;;;42704:192;;;;;;;;;;-1:-1:-1;42704:192:0;;;;;:::i;:::-;;:::i;61419:26::-;;;;;;;;;;;;;;;;67434:95;;;;;;;;;;-1:-1:-1;67434:95:0;;;;;:::i;:::-;;:::i;34666:224::-;34768:4;-1:-1:-1;;;;;;34792:50:0;;-1:-1:-1;;;34792:50:0;;:90;;;34846:36;34870:11;34846:23;:36::i;:::-;34785:97;34666:224;-1:-1:-1;;34666:224:0:o;67235:73::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;;;;;;;;;67287:6:::1;:15:::0;;-1:-1:-1;;67287:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;67235:73::o;22558:100::-;22612:13;22645:5;22638:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22558:100;:::o;24117:221::-;24193:7;27600:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27600:16:0;24213:73;;;;-1:-1:-1;;;24213:73:0;;18560:2:1;24213:73:0;;;18542:21:1;18599:2;18579:18;;;18572:30;18638:34;18618:18;;;18611:62;-1:-1:-1;;;18689:18:1;;;18682:42;18741:19;;24213:73:0;18358:408:1;24213:73:0;-1:-1:-1;24306:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24306:24:0;;24117:221::o;23640:411::-;23721:13;23737:23;23752:7;23737:14;:23::i;:::-;23721:39;;23785:5;-1:-1:-1;;;;;23779:11:0;:2;-1:-1:-1;;;;;23779:11:0;;;23771:57;;;;-1:-1:-1;;;23771:57:0;;20941:2:1;23771:57:0;;;20923:21:1;20980:2;20960:18;;;20953:30;21019:34;20999:18;;;20992:62;-1:-1:-1;;;21070:18:1;;;21063:31;21111:19;;23771:57:0;20739:397:1;23771:57:0;20167:10;-1:-1:-1;;;;;23863:21:0;;;;:62;;-1:-1:-1;23888:37:0;23905:5;20167:10;24776:164;:::i;23888:37::-;23841:168;;;;-1:-1:-1;;;23841:168:0;;16241:2:1;23841:168:0;;;16223:21:1;16280:2;16260:18;;;16253:30;16319:34;16299:18;;;16292:62;16390:26;16370:18;;;16363:54;16434:19;;23841:168:0;16039:420:1;23841:168:0;24022:21;24031:2;24035:7;24022:8;:21::i;:::-;23710:341;23640:411;;:::o;67871:120::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;67948:14:::1;:32:::0;67871:120::o;25007:339::-;25202:41;20167:10;25235:7;25202:18;:41::i;:::-;25194:103;;;;-1:-1:-1;;;25194:103:0;;;;;;;:::i;:::-;25310:28;25320:4;25326:2;25330:7;25310:9;:28::i;34974:256::-;35071:7;35107:23;35124:5;35107:16;:23::i;:::-;35099:5;:31;35091:87;;;;-1:-1:-1;;;35091:87:0;;12777:2:1;35091:87:0;;;12759:21:1;12816:2;12796:18;;;12789:30;12855:34;12835:18;;;12828:62;-1:-1:-1;;;12906:18:1;;;12899:41;12957:19;;35091:87:0;12575:407:1;35091:87:0;-1:-1:-1;;;;;;35196:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34974:256::o;67637:101::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;67706:10:::1;:24:::0;67637:101::o;70931:398::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;71014:21:::1;70994:17;71082:240;71099:13;:20:::0;71095:24;::::1;71082:240;;;71149:13;71163:1;71149:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;71149:16:0::1;-1:-1:-1::0;;;;;71141:34:0::1;:169;71194:101;71228:12;71263:10;71274:1;71263:13;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;::::1;;::::0;;;;;::::1;;;;::::0;::::1;;;71194:10;:101::i;:::-;71141:169;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;71121:3:0;::::1;::::0;::::1;:::i;:::-;;;;71082:240;;;;70981:348;70931:398::o:0;25417:185::-;25555:39;25572:4;25578:2;25582:7;25555:39;;;;;;;;;;;;:16;:39::i;66156:348::-;66231:16;66259:23;66285:17;66295:6;66285:9;:17::i;:::-;66259:43;;66309:25;66351:15;66337:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;66337:30:0;;66309:58;;66379:9;66374:103;66394:15;66390:1;:19;66374:103;;;66439:30;66459:6;66467:1;66439:19;:30::i;:::-;66425:8;66434:1;66425:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;66411:3;;;;:::i;:::-;;;;66374:103;;;-1:-1:-1;66490:8:0;66156:348;-1:-1:-1;;;66156:348:0:o;67047:80::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;67106:4:::1;:15:::0;67047:80::o;35496:233::-;35571:7;35607:30;35394:10;:17;;35306:113;35607:30;35599:5;:38;35591:95;;;;-1:-1:-1;;;35591:95:0;;22520:2:1;35591:95:0;;;22502:21:1;22559:2;22539:18;;;22532:30;22598:34;22578:18;;;22571:62;-1:-1:-1;;;22649:18:1;;;22642:42;22701:19;;35591:95:0;22318:408:1;35591:95:0;35704:10;35715:5;35704:17;;;;;;;;:::i;:::-;;;;;;;;;35697:24;;35496:233;;;:::o;67133:98::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;67204:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;69965:184::-:0;70081:4;70110:31;70118:14;70123:8;69150:26;;-1:-1:-1;;7345:2:1;7341:15;;;7337:53;69150:26:0;;;7325:66:1;69113:7:0;;7407:12:1;;69150:26:0;;;;;;;;;;;;69140:37;;;;;;69133:44;;69058:127;;;;70118:14;70134:6;;70110:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;70110:7:0;;-1:-1:-1;;;70110:31:0:i;:::-;70103:38;69965:184;-1:-1:-1;;;;69965:184:0:o;22252:239::-;22324:7;22360:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22360:16:0;22395:19;22387:73;;;;-1:-1:-1;;;22387:73:0;;17077:2:1;22387:73:0;;;17059:21:1;17116:2;17096:18;;;17089:30;17155:34;17135:18;;;17128:62;-1:-1:-1;;;17206:18:1;;;17199:39;17255:19;;22387:73:0;16875:405:1;21982:208:0;22054:7;-1:-1:-1;;;;;22082:19:0;;22074:74;;;;-1:-1:-1;;;22074:74:0;;16666:2:1;22074:74:0;;;16648:21:1;16705:2;16685:18;;;16678:30;16744:34;16724:18;;;16717:62;-1:-1:-1;;;16795:18:1;;;16788:40;16845:19;;22074:74:0;16464:406:1;22074:74:0;-1:-1:-1;;;;;;22166:16:0;;;;;:9;:16;;;;;;;21982:208::o;42455:94::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;42520:21:::1;42538:1;42520:9;:21::i;:::-;42455:94::o:0;68786:106::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;68860:10:::1;:24:::0;68786:106::o;22727:104::-;22783:13;22816:7;22809:14;;;;;:::i;70678:185::-;70761:6;70756:100;70773:10;:17;70769:1;:21;70756:100;;;70831:10;70842:1;70831:13;;;;;;;;:::i;:::-;;;;;;;70812;70826:1;70812:16;;;;;;;;:::i;:::-;;;;;;;;;;:32;;-1:-1:-1;;;;;;70812:32:0;-1:-1:-1;;;;;70812:32:0;;;;;;;;;;70792:3;;;;:::i;:::-;;;;70756:100;;62258:904;62324:6;;;;62323:7;62315:36;;;;-1:-1:-1;;;62315:36:0;;15131:2:1;62315:36:0;;;15113:21:1;15170:2;15150:18;;;15143:30;-1:-1:-1;;;15189:18:1;;;15182:46;15245:18;;62315:36:0;14929:340:1;62315:36:0;62381:15;62366:11;;;;:30;;;;;;;;:::i;:::-;;62358:69;;;;-1:-1:-1;;;62358:69:0;;21343:2:1;62358:69:0;;;21325:21:1;21382:2;21362:18;;;21355:30;21421:28;21401:18;;;21394:56;21467:18;;62358:69:0;21141:350:1;62358:69:0;62456:1;62442:11;:15;62434:59;;;;-1:-1:-1;;;62434:59:0;;18200:2:1;62434:59:0;;;18182:21:1;18239:2;18219:18;;;18212:30;18278:33;18258:18;;;18251:61;18329:18;;62434:59:0;17998:355:1;62434:59:0;62523:14;;62508:11;:29;;62500:92;;;;-1:-1:-1;;;62500:92:0;;20103:2:1;62500:92:0;;;20085:21:1;20142:2;20122:18;;;20115:30;20181:34;20161:18;;;20154:62;-1:-1:-1;;;20232:18:1;;;20225:48;20290:19;;62500:92:0;19901:414:1;62500:92:0;62599:11;62613:13;35394:10;:17;;35306:113;62613:13;62665:9;;62599:27;;-1:-1:-1;62641:20:0;62650:11;62599:27;62641:20;:::i;:::-;:33;;62633:66;;;;-1:-1:-1;;;62633:66:0;;22933:2:1;62633:66:0;;;22915:21:1;22972:2;22952:18;;;22945:30;-1:-1:-1;;;22991:18:1;;;22984:50;23051:18;;62633:66:0;22731:344:1;62633:66:0;41877:6;;-1:-1:-1;;;;;41877:6:0;62712:10;:21;62708:348;;62774:11;62767:4;;:18;;;;:::i;:::-;62754:9;:31;;62746:79;;;;-1:-1:-1;;;62746:79:0;;22116:2:1;62746:79:0;;;22098:21:1;22155:2;22135:18;;;22128:30;22194:34;22174:18;;;22167:62;-1:-1:-1;;;22245:18:1;;;22238:33;22288:19;;62746:79:0;21914:399:1;62746:79:0;62839:18;;:23;62836:213;;62933:18;;62904:10;62887:28;;;;:16;:28;;;;;;:42;;62918:11;;62887:42;:::i;:::-;:64;;62879:100;;;;-1:-1:-1;;;62879:100:0;;17487:2:1;62879:100:0;;;17469:21:1;17526:2;17506:18;;;17499:30;-1:-1:-1;;;17545:18:1;;;17538:53;17608:18;;62879:100:0;17285:347:1;62879:100:0;63011:10;62994:28;;;;:16;:28;;;;;:43;;63026:11;;62994:28;:43;;63026:11;;62994:43;:::i;:::-;;;;-1:-1:-1;;62836:213:0;63081:1;63064:93;63089:11;63084:1;:16;63064:93;;63116:33;63126:10;63138;63147:1;63138:6;:10;:::i;:::-;63116:9;:33::i;:::-;63102:3;;;;:::i;:::-;;;;63064:93;;24410:295;-1:-1:-1;;;;;24513:24:0;;20167:10;24513:24;;24505:62;;;;-1:-1:-1;;;24505:62:0;;14777:2:1;24505:62:0;;;14759:21:1;14816:2;14796:18;;;14789:30;14855:27;14835:18;;;14828:55;14900:18;;24505:62:0;14575:349:1;24505:62:0;20167:10;24580:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24580:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24580:53:0;;;;;;;;;;24649:48;;10716:41:1;;;24580:42:0;;20167:10;24649:48;;10689:18:1;24649:48:0;;;;;;;24410:295;;:::o;25673:328::-;25848:41;20167:10;25881:7;25848:18;:41::i;:::-;25840:103;;;;-1:-1:-1;;;25840:103:0;;;;;;;:::i;:::-;25954:39;25968:4;25974:2;25978:7;25987:5;25954:13;:39::i;:::-;25673:328;;;;:::o;68136:528::-;68198:15;;:::i;:::-;68226:407;;;;;;;;68265:10;;68226:407;;68291:14;;68226:407;;;;;;;;-1:-1:-1;;;;;68321:22:0;;68226:21;68321:22;;;:12;:22;;;;;;68226:407;;;;68359:14;;68226:407;;;;68389:18;;68226:407;;;;68423:26;;;:16;:26;;;;;;68226:407;;;;68465:23;;;:13;:23;;;;;;;68226:407;;;;;;;68504:13;35394:10;:17;;35306:113;68504:13;68226:407;;68533:7;;68226:407;;;;68561:11;;68226:407;;;;;68561:11;;68556:17;;;;;;;;:::i;:::-;68226:407;;68589:9;;68226:407;;;;68613:9;;68226:407;;;;;;68136:528;-1:-1:-1;;;68136:528:0:o;67746:117::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;67823:14:::1;:32:::0;67746:117::o;66737:302::-;27576:4;27600:16;;;:7;:16;;;;;;66856:13;;-1:-1:-1;;;;;27600:16:0;66887:61;;;;-1:-1:-1;;;66887:61:0;;12417:2:1;66887:61:0;;;12399:21:1;12456:2;12436:18;;;12429:30;12495:33;12475:18;;;12468:61;12546:18;;66887:61:0;12215:355:1;66887:61:0;66992:7;67001:19;:8;:17;:19::i;:::-;66975:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;66961:70;;66737:302;;;:::o;63168:2982::-;63395:6;;;;63394:7;63386:36;;;;-1:-1:-1;;;63386:36:0;;15131:2:1;63386:36:0;;;15113:21:1;15170:2;15150:18;;;15143:30;-1:-1:-1;;;15189:18:1;;;15182:46;15245:18;;63386:36:0;14929:340:1;63386:36:0;63452:18;63437:11;;;;:33;;;;;;;;:::i;:::-;;63429:76;;;;-1:-1:-1;;;63429:76:0;;18973:2:1;63429:76:0;;;18955:21:1;19012:2;18992:18;;;18985:30;19051:32;19031:18;;;19024:60;19101:18;;63429:76:0;18771:354:1;63429:76:0;63520:33;63534:10;63546:6;;63520:13;:33::i;:::-;63512:69;;;;-1:-1:-1;;;63512:69:0;;15889:2:1;63512:69:0;;;15871:21:1;15928:2;15908:18;;;15901:30;15967:25;15947:18;;;15940:53;16010:18;;63512:69:0;15687:347:1;63512:69:0;63610:1;63596:11;:15;63588:59;;;;-1:-1:-1;;;63588:59:0;;18200:2:1;63588:59:0;;;18182:21:1;18239:2;18219:18;;;18212:30;18278:33;18258:18;;;18251:61;18329:18;;63588:59:0;17998:355:1;63588:59:0;63677:10;;63662:11;:25;;63654:88;;;;-1:-1:-1;;;63654:88:0;;20522:2:1;63654:88:0;;;20504:21:1;20561:2;20541:18;;;20534:30;20600:34;20580:18;;;20573:62;-1:-1:-1;;;20651:18:1;;;20644:48;20709:19;;63654:88:0;20320:414:1;63654:88:0;63749:11;63763:13;35394:10;:17;;35306:113;63763:13;63815:9;;63749:27;;-1:-1:-1;63791:20:0;63800:11;63749:27;63791:20;:::i;:::-;:33;;63783:65;;;;-1:-1:-1;;;63783:65:0;;12069:2:1;63783:65:0;;;12051:21:1;12108:2;12088:18;;;12081:30;-1:-1:-1;;;12127:18:1;;;12120:49;12186:18;;63783:65:0;11867:343:1;63783:65:0;64027:10;63984:14;64013:25;;;:13;:25;;;;;;64001:9;;:37;;64013:25;64001:37;:::i;:::-;63984:54;;64086:10;64157:13;64322:9;64307:11;:24;64303:429;;64447:10;64421:1;64433:25;;;:13;:25;;;;;:40;;64421:1;;-1:-1:-1;64462:11:0;;64421:1;;64433:40;;64462:11;;64433:40;:::i;:::-;;;;-1:-1:-1;64495:11:0;;-1:-1:-1;64303:429:0;;-1:-1:-1;64303:429:0;;64621:23;64635:9;64621:11;:23;:::i;:::-;64669:10;64655:25;;;;:13;:25;;;;;:38;;64613:31;;-1:-1:-1;64684:9:0;;64655:25;;;:38;;64684:9;;64655:38;:::i;:::-;;;;-1:-1:-1;64715:9:0;;-1:-1:-1;;64303:429:0;41877:6;;-1:-1:-1;;;;;41877:6:0;64869:10;:21;64865:696;;64934:7;;64919:11;64907:9;;:23;;;;:::i;:::-;:34;64903:651;;64988:5;64981:4;;:12;;;;:::i;:::-;64968:9;:25;;64960:60;;;;-1:-1:-1;;;64960:60:0;;11718:2:1;64960:60:0;;;11700:21:1;11757:2;11737:18;;;11730:30;-1:-1:-1;;;11776:18:1;;;11769:52;11838:18;;64960:60:0;11516:346:1;64960:60:0;64903:651;;;65095:13;65121:9;;65111:7;;:19;;;;:::i;:::-;65095:35;;65207:8;65194:9;:21;65190:162;;;;;65330:20;65341:9;65330:8;:20;:::i;:::-;65318:32;;;;:::i;:::-;;;65190:162;65444:22;65458:8;65444:11;:22;:::i;:::-;65436:4;;:31;;;;:::i;:::-;65423:9;:44;;65415:79;;;;-1:-1:-1;;;65415:79:0;;11718:2:1;65415:79:0;;;11700:21:1;11757:2;11737:18;;;11730:30;-1:-1:-1;;;11776:18:1;;;11769:52;11838:18;;65415:79:0;11516:346:1;65415:79:0;65520:22;65534:8;65520:11;:22;:::i;:::-;65509:33;;65040:514;64903:651;65582:8;65569:9;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;;65731:14:0;;:19;65728:312;;65813:14;;65784:10;65771:24;;;;:12;:24;;;;;;:38;;65798:11;;65771:38;:::i;:::-;:56;;65763:92;;;;-1:-1:-1;;;65763:92:0;;17487:2:1;65763:92:0;;;17469:21:1;17526:2;17506:18;;;17499:30;-1:-1:-1;;;17545:18:1;;;17538:53;17608:18;;65763:92:0;17285:347:1;65763:92:0;65879:10;65866:24;;;;:12;:24;;;;;:39;;65894:11;;65866:24;:39;;65894:11;;65866:39;:::i;:::-;;;;-1:-1:-1;;65728:312:0;66063:1;66046:97;66071:11;66066:1;:16;66046:97;;66100:33;66110:10;66122;66131:1;66122:6;:10;:::i;66100:33::-;66084:3;;;;:::i;:::-;;;;66046:97;;;;63252:2898;;;;63168:2982;;;:::o;67537:92::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;67603:7:::1;:18:::0;67537:92::o;42704:192::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42793:22:0;::::1;42785:73;;;::::0;-1:-1:-1;;;42785:73:0;;13608:2:1;42785:73:0::1;::::0;::::1;13590:21:1::0;13647:2;13627:18;;;13620:30;13686:34;13666:18;;;13659:62;-1:-1:-1;;;13737:18:1;;;13730:36;13783:19;;42785:73:0::1;13406:402:1::0;42785:73:0::1;42869:19;42879:8;42869:9;:19::i;:::-;42704:192:::0;:::o;67434:95::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;67515:5:::1;67510:11;;;;;;;;:::i;:::-;67496;:25:::0;;-1:-1:-1;;67496:25:0::1;::::0;;::::1;::::0;::::1;;;;;;:::i;:::-;;;;;;67434:95:::0;:::o;21613:305::-;21715:4;-1:-1:-1;;;;;;21752:40:0;;-1:-1:-1;;;21752:40:0;;:105;;-1:-1:-1;;;;;;;21809:48:0;;-1:-1:-1;;;21809:48:0;21752:105;:158;;;-1:-1:-1;;;;;;;;;;7553:40:0;;;21874:36;7444:157;31493:174;31568:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31568:29:0;-1:-1:-1;;;;;31568:29:0;;;;;;;;:24;;31622:23;31568:24;31622:14;:23::i;:::-;-1:-1:-1;;;;;31613:46:0;;;;;;;;;;;31493:174;;:::o;27805:348::-;27898:4;27600:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27600:16:0;27915:73;;;;-1:-1:-1;;;27915:73:0;;15476:2:1;27915:73:0;;;15458:21:1;15515:2;15495:18;;;15488:30;15554:34;15534:18;;;15527:62;-1:-1:-1;;;15605:18:1;;;15598:42;15657:19;;27915:73:0;15274:408:1;27915:73:0;27999:13;28015:23;28030:7;28015:14;:23::i;:::-;27999:39;;28068:5;-1:-1:-1;;;;;28057:16:0;:7;-1:-1:-1;;;;;28057:16:0;;:51;;;;28101:7;-1:-1:-1;;;;;28077:31:0;:20;28089:7;28077:11;:20::i;:::-;-1:-1:-1;;;;;28077:31:0;;28057:51;:87;;;-1:-1:-1;;;;;;24897:25:0;;;24873:4;24897:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28112:32;24776:164;30797:578;30956:4;-1:-1:-1;;;;;30929:31:0;:23;30944:7;30929:14;:23::i;:::-;-1:-1:-1;;;;;30929:31:0;;30921:85;;;;-1:-1:-1;;;30921:85:0;;19693:2:1;30921:85:0;;;19675:21:1;19732:2;19712:18;;;19705:30;19771:34;19751:18;;;19744:62;-1:-1:-1;;;19822:18:1;;;19815:39;19871:19;;30921:85:0;19491:405:1;30921:85:0;-1:-1:-1;;;;;31025:16:0;;31017:65;;;;-1:-1:-1;;;31017:65:0;;14372:2:1;31017:65:0;;;14354:21:1;14411:2;14391:18;;;14384:30;14450:34;14430:18;;;14423:62;-1:-1:-1;;;14501:18:1;;;14494:34;14545:19;;31017:65:0;14170:400:1;31017:65:0;31095:39;31116:4;31122:2;31126:7;31095:20;:39::i;:::-;31199:29;31216:1;31220:7;31199:8;:29::i;:::-;-1:-1:-1;;;;;31241:15:0;;;;;;:9;:15;;;;;:20;;31260:1;;31241:15;:20;;31260:1;;31241:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31272:13:0;;;;;;:9;:13;;;;;:18;;31289:1;;31272:13;:18;;31289:1;;31272:18;:::i;:::-;;;;-1:-1:-1;;31301:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31301:21:0;-1:-1:-1;;;;;31301:21:0;;;;;;;;;31340:27;;31301:16;;31340:27;;;;;;;30797:578;;;:::o;70197:143::-;70280:4;70328;70314:11;70322:3;70314:5;:11;:::i;:::-;:18;;;;:::i;:::-;70307:25;70197:143;-1:-1:-1;;;70197:143:0:o;69514:189::-;69621:4;69650:45;69669:6;69677:10;;69689:5;69650:18;:45::i;42904:173::-;42979:6;;;-1:-1:-1;;;;;42996:17:0;;;-1:-1:-1;;;;;;42996:17:0;;;;;;;43029:40;;42979:6;;;42996:17;42979:6;;43029:40;;42960:16;;43029:40;42949:128;42904:173;:::o;28495:110::-;28571:26;28581:2;28585:7;28571:26;;;;;;;;;;;;:9;:26::i;26883:315::-;27040:28;27050:4;27056:2;27060:7;27040:9;:28::i;:::-;27087:48;27110:4;27116:2;27120:7;27129:5;27087:22;:48::i;:::-;27079:111;;;;-1:-1:-1;;;27079:111:0;;;;;;;:::i;7919:723::-;7975:13;8196:10;8192:53;;-1:-1:-1;;8223:10:0;;;;;;;;;;;;-1:-1:-1;;;8223:10:0;;;;;7919:723::o;8192:53::-;8270:5;8255:12;8311:78;8318:9;;8311:78;;8344:8;;;;:::i;:::-;;-1:-1:-1;8367:10:0;;-1:-1:-1;8375:2:0;8367:10;;:::i;:::-;;;8311:78;;;8399:19;8431:6;8421:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8421:17:0;;8399:39;;8449:154;8456:10;;8449:154;;8483:11;8493:1;8483:11;;:::i;:::-;;-1:-1:-1;8552:10:0;8560:2;8552:5;:10;:::i;:::-;8539:24;;:2;:24;:::i;:::-;8526:39;;8509:6;8516;8509:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8509:56:0;;;;;;;;-1:-1:-1;8580:11:0;8589:2;8580:11;;:::i;:::-;;;8449:154;;36342:589;-1:-1:-1;;;;;36548:18:0;;36544:187;;36583:40;36615:7;37758:10;:17;;37731:24;;;;:15;:24;;;;;:44;;;37786:24;;;;;;;;;;;;37654:164;36583:40;36544:187;;;36653:2;-1:-1:-1;;;;;36645:10:0;:4;-1:-1:-1;;;;;36645:10:0;;36641:90;;36672:47;36705:4;36711:7;36672:32;:47::i;:::-;-1:-1:-1;;;;;36745:16:0;;36741:183;;36778:45;36815:7;36778:36;:45::i;36741:183::-;36851:4;-1:-1:-1;;;;;36845:10:0;:2;-1:-1:-1;;;;;36845:10:0;;36841:83;;36872:40;36900:2;36904:7;36872:27;:40::i;44142:190::-;44267:4;44320;44291:25;44304:5;44311:4;44291:12;:25::i;:::-;:33;;44142:190;-1:-1:-1;;;;44142:190:0:o;28832:321::-;28962:18;28968:2;28972:7;28962:5;:18::i;:::-;29013:54;29044:1;29048:2;29052:7;29061:5;29013:22;:54::i;:::-;28991:154;;;;-1:-1:-1;;;28991:154:0;;;;;;;:::i;32232:799::-;32387:4;-1:-1:-1;;;;;32408:13:0;;10767:20;10815:8;32404:620;;32444:72;;-1:-1:-1;;;32444:72:0;;-1:-1:-1;;;;;32444:36:0;;;;;:72;;20167:10;;32495:4;;32501:7;;32510:5;;32444:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32444:72:0;;;;;;;;-1:-1:-1;;32444:72:0;;;;;;;;;;;;:::i;:::-;;;32440:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32686:13:0;;32682:272;;32729:60;;-1:-1:-1;;;32729:60:0;;;;;;;:::i;32682:272::-;32904:6;32898:13;32889:6;32885:2;32881:15;32874:38;32440:529;-1:-1:-1;;;;;;32567:51:0;-1:-1:-1;;;32567:51:0;;-1:-1:-1;32560:58:0;;32404:620;-1:-1:-1;33008:4:0;32232:799;;;;;;:::o;38445:988::-;38711:22;38761:1;38736:22;38753:4;38736:16;:22::i;:::-;:26;;;;:::i;:::-;38773:18;38794:26;;;:17;:26;;;;;;38711:51;;-1:-1:-1;38927:28:0;;;38923:328;;-1:-1:-1;;;;;38994:18:0;;38972:19;38994:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39045:30;;;;;;:44;;;39162:30;;:17;:30;;;;;:43;;;38923:328;-1:-1:-1;39347:26:0;;;;:17;:26;;;;;;;;39340:33;;;-1:-1:-1;;;;;39391:18:0;;;;;:12;:18;;;;;:34;;;;;;;39384:41;38445:988::o;39728:1079::-;40006:10;:17;39981:22;;40006:21;;40026:1;;40006:21;:::i;:::-;40038:18;40059:24;;;:15;:24;;;;;;40432:10;:26;;39981:46;;-1:-1:-1;40059:24:0;;39981:46;;40432:26;;;;;;:::i;:::-;;;;;;;;;40410:48;;40496:11;40471:10;40482;40471:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40576:28;;;:15;:28;;;;;;;:41;;;40748:24;;;;;40741:31;40783:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39799:1008;;;39728:1079;:::o;37232:221::-;37317:14;37334:20;37351:2;37334:16;:20::i;:::-;-1:-1:-1;;;;;37365:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37410:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37232:221:0:o;45009:296::-;45092:7;45135:4;45092:7;45150:118;45174:5;:12;45170:1;:16;45150:118;;;45223:33;45233:12;45247:5;45253:1;45247:8;;;;;;;;:::i;:::-;;;;;;;45223:9;:33::i;:::-;45208:48;-1:-1:-1;45188:3:0;;;;:::i;:::-;;;;45150:118;;29489:382;-1:-1:-1;;;;;29569:16:0;;29561:61;;;;-1:-1:-1;;;29561:61:0;;17839:2:1;29561:61:0;;;17821:21:1;;;17858:18;;;17851:30;17917:34;17897:18;;;17890:62;17969:18;;29561:61:0;17637:356:1;29561:61:0;27576:4;27600:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27600:16:0;:30;29633:58;;;;-1:-1:-1;;;29633:58:0;;14015:2:1;29633:58:0;;;13997:21:1;14054:2;14034:18;;;14027:30;14093;14073:18;;;14066:58;14141:18;;29633:58:0;13813:352:1;29633:58:0;29704:45;29733:1;29737:2;29741:7;29704:20;:45::i;:::-;-1:-1:-1;;;;;29762:13:0;;;;;;:9;:13;;;;;:18;;29779:1;;29762:13;:18;;29779:1;;29762:18;:::i;:::-;;;;-1:-1:-1;;29791:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29791:21:0;-1:-1:-1;;;;;29791:21:0;;;;;;;;29830:33;;29791:16;;;29830:33;;29791:16;;29830:33;29489:382;;:::o;51216:149::-;51279:7;51310:1;51306;:5;:51;;51441:13;51535:15;;;51571:4;51564:15;;;51618:4;51602:21;;51306:51;;;51441:13;51535:15;;;51571:4;51564:15;;;51618:4;51602:21;;51314:20;51373:268;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::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:367::-;666:8;676:6;730:3;723:4;715:6;711:17;707:27;697:55;;748:1;745;738:12;697:55;-1:-1:-1;771:20:1;;814:18;803:30;;800:50;;;846:1;843;836:12;800:50;883:4;875:6;871:17;859:29;;943:3;936:4;926:6;923:1;919:14;911:6;907:27;903:38;900:47;897:67;;;960:1;957;950:12;897:67;603:367;;;;;:::o;975:160::-;1040:20;;1096:13;;1089:21;1079:32;;1069:60;;1125:1;1122;1115:12;1140:186;1199:6;1252:2;1240:9;1231:7;1227:23;1223:32;1220:52;;;1268:1;1265;1258:12;1220:52;1291:29;1310:9;1291:29;:::i;1331:260::-;1399:6;1407;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;1499:29;1518:9;1499:29;:::i;:::-;1489:39;;1547:38;1581:2;1570:9;1566:18;1547:38;:::i;:::-;1537:48;;1331:260;;;;;:::o;1596:328::-;1673:6;1681;1689;1742:2;1730:9;1721:7;1717:23;1713:32;1710:52;;;1758:1;1755;1748:12;1710:52;1781:29;1800:9;1781:29;:::i;:::-;1771:39;;1829:38;1863:2;1852:9;1848:18;1829:38;:::i;:::-;1819:48;;1914:2;1903:9;1899:18;1886:32;1876:42;;1596:328;;;;;:::o;1929:666::-;2024:6;2032;2040;2048;2101:3;2089:9;2080:7;2076:23;2072:33;2069:53;;;2118:1;2115;2108:12;2069:53;2141:29;2160:9;2141:29;:::i;:::-;2131:39;;2189:38;2223:2;2212:9;2208:18;2189:38;:::i;:::-;2179:48;;2274:2;2263:9;2259:18;2246:32;2236:42;;2329:2;2318:9;2314:18;2301:32;2356:18;2348:6;2345:30;2342:50;;;2388:1;2385;2378:12;2342:50;2411:22;;2464:4;2456:13;;2452:27;-1:-1:-1;2442:55:1;;2493:1;2490;2483:12;2442:55;2516:73;2581:7;2576:2;2563:16;2558:2;2554;2550:11;2516:73;:::i;:::-;2506:83;;;1929:666;;;;;;;:::o;2600:511::-;2695:6;2703;2711;2764:2;2752:9;2743:7;2739:23;2735:32;2732:52;;;2780:1;2777;2770:12;2732:52;2803:29;2822:9;2803:29;:::i;:::-;2793:39;;2883:2;2872:9;2868:18;2855:32;2910:18;2902:6;2899:30;2896:50;;;2942:1;2939;2932:12;2896:50;2981:70;3043:7;3034:6;3023:9;3019:22;2981:70;:::i;:::-;2600:511;;3070:8;;-1:-1:-1;2955:96:1;;-1:-1:-1;;;;2600:511:1:o;3116:254::-;3181:6;3189;3242:2;3230:9;3221:7;3217:23;3213:32;3210:52;;;3258:1;3255;3248:12;3210:52;3281:29;3300:9;3281:29;:::i;:::-;3271:39;;3329:35;3360:2;3349:9;3345:18;3329:35;:::i;3375:254::-;3443:6;3451;3504:2;3492:9;3483:7;3479:23;3475:32;3472:52;;;3520:1;3517;3510:12;3472:52;3543:29;3562:9;3543:29;:::i;:::-;3533:39;3619:2;3604:18;;;;3591:32;;-1:-1:-1;;;3375:254:1:o;3634:963::-;3718:6;3749:2;3792;3780:9;3771:7;3767:23;3763:32;3760:52;;;3808:1;3805;3798:12;3760:52;3848:9;3835:23;3877:18;3918:2;3910:6;3907:14;3904:34;;;3934:1;3931;3924:12;3904:34;3972:6;3961:9;3957:22;3947:32;;4017:7;4010:4;4006:2;4002:13;3998:27;3988:55;;4039:1;4036;4029:12;3988:55;4075:2;4062:16;4097:2;4093;4090:10;4087:36;;;4103:18;;:::i;:::-;4149:2;4146:1;4142:10;4132:20;;4172:28;4196:2;4192;4188:11;4172:28;:::i;:::-;4234:15;;;4265:12;;;;4297:11;;;4327;;;4323:20;;4320:33;-1:-1:-1;4317:53:1;;;4366:1;4363;4356:12;4317:53;4388:1;4379:10;;4398:169;4412:2;4409:1;4406:9;4398:169;;;4469:23;4488:3;4469:23;:::i;:::-;4457:36;;4430:1;4423:9;;;;;4513:12;;;;4545;;4398:169;;;-1:-1:-1;4586:5:1;3634:963;-1:-1:-1;;;;;;;;3634:963:1:o;4602:180::-;4658:6;4711:2;4699:9;4690:7;4686:23;4682:32;4679:52;;;4727:1;4724;4717:12;4679:52;4750:26;4766:9;4750:26;:::i;4787:180::-;4846:6;4899:2;4887:9;4878:7;4874:23;4870:32;4867:52;;;4915:1;4912;4905:12;4867:52;-1:-1:-1;4938:23:1;;4787:180;-1:-1:-1;4787:180:1:o;4972:245::-;5030:6;5083:2;5071:9;5062:7;5058:23;5054:32;5051:52;;;5099:1;5096;5089:12;5051:52;5138:9;5125:23;5157:30;5181:5;5157:30;:::i;5222:249::-;5291:6;5344:2;5332:9;5323:7;5319:23;5315:32;5312:52;;;5360:1;5357;5350:12;5312:52;5392:9;5386:16;5411:30;5435:5;5411:30;:::i;5476:450::-;5545:6;5598:2;5586:9;5577:7;5573:23;5569:32;5566:52;;;5614:1;5611;5604:12;5566:52;5654:9;5641:23;5687:18;5679:6;5676:30;5673:50;;;5719:1;5716;5709:12;5673:50;5742:22;;5795:4;5787:13;;5783:27;-1:-1:-1;5773:55:1;;5824:1;5821;5814:12;5773:55;5847:73;5912:7;5907:2;5894:16;5889:2;5885;5881:11;5847:73;:::i;6116:505::-;6211:6;6219;6227;6280:2;6268:9;6259:7;6255:23;6251:32;6248:52;;;6296:1;6293;6286:12;6248:52;6332:9;6319:23;6309:33;;6393:2;6382:9;6378:18;6365:32;6420:18;6412:6;6409:30;6406:50;;;6452:1;6449;6442:12;6626:257;6667:3;6705:5;6699:12;6732:6;6727:3;6720:19;6748:63;6804:6;6797:4;6792:3;6788:14;6781:4;6774:5;6770:16;6748:63;:::i;:::-;6865:2;6844:15;-1:-1:-1;;6840:29:1;6831:39;;;;6872:4;6827:50;;6626:257;-1:-1:-1;;6626:257:1:o;6888:185::-;6930:3;6968:5;6962:12;6983:52;7028:6;7023:3;7016:4;7009:5;7005:16;6983:52;:::i;:::-;7051:16;;;;;6888:185;-1:-1:-1;;6888:185:1:o;7430:1301::-;7707:3;7736:1;7769:6;7763:13;7799:3;7821:1;7849:9;7845:2;7841:18;7831:28;;7909:2;7898:9;7894:18;7931;7921:61;;7975:4;7967:6;7963:17;7953:27;;7921:61;8001:2;8049;8041:6;8038:14;8018:18;8015:38;8012:165;;;-1:-1:-1;;;8076:33:1;;8132:4;8129:1;8122:15;8162:4;8083:3;8150:17;8012:165;8193:18;8220:104;;;;8338:1;8333:320;;;;8186:467;;8220:104;-1:-1:-1;;8253:24:1;;8241:37;;8298:16;;;;-1:-1:-1;8220:104:1;;8333:320;23615:1;23608:14;;;23652:4;23639:18;;8428:1;8442:165;8456:6;8453:1;8450:13;8442:165;;;8534:14;;8521:11;;;8514:35;8577:16;;;;8471:10;;8442:165;;;8446:3;;8636:6;8631:3;8627:16;8620:23;;8186:467;;;;;;;8669:56;8694:30;8720:3;8712:6;8694:30;:::i;:::-;-1:-1:-1;;;7138:20:1;;7183:1;7174:11;;7078:113;8669:56;8662:63;7430:1301;-1:-1:-1;;;;;7430:1301:1:o;8944:488::-;-1:-1:-1;;;;;9213:15:1;;;9195:34;;9265:15;;9260:2;9245:18;;9238:43;9312:2;9297:18;;9290:34;;;9360:3;9355:2;9340:18;;9333:31;;;9138:4;;9381:45;;9406:19;;9398:6;9381:45;:::i;:::-;9373:53;8944:488;-1:-1:-1;;;;;;8944:488:1:o;9437:497::-;9619:3;9604:19;;9608:9;9700:6;9577:4;9734:194;9748:4;9745:1;9742:11;9734:194;;;9807:13;;9795:26;;9844:4;9868:12;;;;9903:15;;;;9768:1;9761:9;9734:194;;;9738:3;;;9437:497;;;;:::o;9939:632::-;10110:2;10162:21;;;10232:13;;10135:18;;;10254:22;;;10081:4;;10110:2;10333:15;;;;10307:2;10292:18;;;10081:4;10376:169;10390:6;10387:1;10384:13;10376:169;;;10451:13;;10439:26;;10520:15;;;;10485:12;;;;10412:1;10405:9;10376:169;;;-1:-1:-1;10562:3:1;;9939:632;-1:-1:-1;;;;;;9939:632:1:o;10950:337::-;11091:2;11076:18;;11124:1;11113:13;;11103:144;;11169:10;11164:3;11160:20;11157:1;11150:31;11204:4;11201:1;11194:15;11232:4;11229:1;11222:15;11103:144;11256:25;;;10950:337;:::o;11292:219::-;11441:2;11430:9;11423:21;11404:4;11461:44;11501:2;11490:9;11486:18;11478:6;11461:44;:::i;12987:414::-;13189:2;13171:21;;;13228:2;13208:18;;;13201:30;13267:34;13262:2;13247:18;;13240:62;-1:-1:-1;;;13333:2:1;13318:18;;13311:48;13391:3;13376:19;;12987:414::o;19130:356::-;19332:2;19314:21;;;19351:18;;;19344:30;19410:34;19405:2;19390:18;;19383:62;19477:2;19462:18;;19130:356::o;21496:413::-;21698:2;21680:21;;;21737:2;21717:18;;;21710:30;21776:34;21771:2;21756:18;;21749:62;-1:-1:-1;;;21842:2:1;21827:18;;21820:47;21899:3;21884:19;;21496:413::o;23262:275::-;23333:2;23327:9;23398:2;23379:13;;-1:-1:-1;;23375:27:1;23363:40;;23433:18;23418:34;;23454:22;;;23415:62;23412:88;;;23480:18;;:::i;:::-;23516:2;23509:22;23262:275;;-1:-1:-1;23262:275:1:o;23668:128::-;23708:3;23739:1;23735:6;23732:1;23729:13;23726:39;;;23745:18;;:::i;:::-;-1:-1:-1;23781:9:1;;23668:128::o;23801:120::-;23841:1;23867;23857:35;;23872:18;;:::i;:::-;-1:-1:-1;23906:9:1;;23801:120::o;23926:168::-;23966:7;24032:1;24028;24024:6;24020:14;24017:1;24014:21;24009:1;24002:9;23995:17;23991:45;23988:71;;;24039:18;;:::i;:::-;-1:-1:-1;24079:9:1;;23926:168::o;24099:125::-;24139:4;24167:1;24164;24161:8;24158:34;;;24172:18;;:::i;:::-;-1:-1:-1;24209:9:1;;24099:125::o;24229:258::-;24301:1;24311:113;24325:6;24322:1;24319:13;24311:113;;;24401:11;;;24395:18;24382:11;;;24375:39;24347:2;24340:10;24311:113;;;24442:6;24439:1;24436:13;24433:48;;;-1:-1:-1;;24477:1:1;24459:16;;24452:27;24229:258::o;24492:380::-;24571:1;24567:12;;;;24614;;;24635:61;;24689:4;24681:6;24677:17;24667:27;;24635:61;24742:2;24734:6;24731:14;24711:18;24708:38;24705:161;;;24788:10;24783:3;24779:20;24776:1;24769:31;24823:4;24820:1;24813:15;24851:4;24848:1;24841:15;24705:161;;24492:380;;;:::o;24877:135::-;24916:3;-1:-1:-1;;24937:17:1;;24934:43;;;24957:18;;:::i;:::-;-1:-1:-1;25004:1:1;24993:13;;24877:135::o;25017:112::-;25049:1;25075;25065:35;;25080:18;;:::i;:::-;-1:-1:-1;25114:9:1;;25017:112::o;25134:127::-;25195:10;25190:3;25186:20;25183:1;25176:31;25226:4;25223:1;25216:15;25250:4;25247:1;25240:15;25266:127;25327:10;25322:3;25318:20;25315:1;25308:31;25358:4;25355:1;25348:15;25382:4;25379:1;25372:15;25398:127;25459:10;25454:3;25450:20;25447:1;25440:31;25490:4;25487:1;25480:15;25514:4;25511:1;25504:15;25530:127;25591:10;25586:3;25582:20;25579:1;25572:31;25622:4;25619:1;25612:15;25646:4;25643:1;25636:15;25662:127;25723:10;25718:3;25714:20;25711:1;25704:31;25754:4;25751:1;25744:15;25778:4;25775:1;25768:15;25794:127;25855:10;25850:3;25846:20;25843:1;25836:31;25886:4;25883:1;25876:15;25910:4;25907:1;25900:15;25926:131;-1:-1:-1;;;;;;26000:32:1;;25990:43;;25980:71;;26047:1;26044;26037:12

Swarm Source

ipfs://f734dce279f998cfd9460a15b5590e04f3c2fc8672bf8be5021ab15263c0f8f3
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.