ETH Price: $2,614.35 (-1.78%)

Token

Ungenuine Dead (UD)
 

Overview

Max Total Supply

3,333 UD

Holders

519

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 UD
0xbe931d053e0156b527ca478744d212c66684f653
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:
UngenuineDead

Compiler Version
v0.8.17+commit.8df45f5f

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-26
*/

/////////////////////////////////////////////
//                                         //
//       Developed by @ViperwareLabs       //
//                                         //
/////////////////////////////////////////////

// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees 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.
 */
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 Returns the rebuilt hash obtained by traversing a Merklee 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++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;


/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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


// OpenZeppelin Contracts v4.4.1 (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: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;



/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;







/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721A {
    using Address for address;
    using Strings for uint256;

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr) if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner) if(!isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _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 {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}



pragma solidity ^0.8.0;



contract UngenuineDead is ERC721A, Ownable {
    bytes32 public root;
	using Strings for uint;

	uint public maxPerTx = 5;
	uint public maxWhitelistMints = 2;

    uint public maxWhitelistSupply = 2222;
	uint public maxSupply = 3333;
	// uint public maxForPublic = 3333;

	uint public whitelistPrice = 0.003 ether;
	uint public publicPrice = 0.005 ether;

	bool public isPublicMint = false;
    bool public isWhitelistMint = false;

    bool public isMetadataFinal;
    string private _baseURL;
	string public prerevealURL = '';

	mapping(address => uint) private _walletMintedCount;
	mapping(address => uint) private _whitelistMintedCount;

	constructor()
	ERC721A('Ungenuine Dead', 'UD') {
    }

	function _baseURI() internal view override returns (string memory) {
		return _baseURL;
	}

	function _startTokenId() internal pure override returns (uint) {
		return 1;
	}

	function contractURI() public pure returns (string memory) {
		return "";
	}

    function finalizeMetadata() external onlyOwner {
        isMetadataFinal = true;
    }

	function reveal(string memory url) external onlyOwner {
        require(!isMetadataFinal, "Metadata is finalized");
		_baseURL = url;
	}

    function mintedCount(address owner) external view returns (uint) {
        return _walletMintedCount[owner];
    }

    function setRoot(bytes32 _root) external onlyOwner {
		root = _root;
	}

	function setPublicState(bool value) external onlyOwner {
		isPublicMint = value;
	}

    function setWhitelistState(bool value) external onlyOwner {
		isWhitelistMint = value;
	}

    /*
    // Splitter
    
    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;

        address _wallet1 = 0x130752003Cc8a51C34247794580C07b8862B5d3C;
        uint _payable1 = balance * 50 / 100;
        payable(_wallet1).transfer(_payable1);

        address _wallet2 = 0x130752003Cc8a51C34247794580C07b8862B5d3C;
        uint _payable2 = balance * 25 / 100;
        payable(_wallet2).transfer(_payable2);

        address _wallet3 = 0x130752003Cc8a51C34247794580C07b8862B5d3C;
        uint _payable3 = balance * 25 / 100;
        payable(_wallet3).transfer(_payable3);
    }*/

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

	function airdrop(address to, uint count) external onlyOwner {
		require(
			_totalMinted() + count <= maxSupply,
			'Exceeds max supply'
		);
		_safeMint(to, count);
	}

	function reduceSupply(uint newMaxSupply) external onlyOwner {
		maxSupply = newMaxSupply;
	}

	function setPrices(uint _public, uint _whitelist) external onlyOwner {
		publicPrice = _public;
        whitelistPrice = _whitelist;
	}

	function tokenURI(uint tokenId)
		public
		view
		override
		returns (string memory)
	{
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        return bytes(_baseURI()).length > 0 
            ? string(abi.encodePacked(_baseURI(), tokenId.toString(), ".json"))
            : prerevealURL;
	}

	function isValid(bytes32[] memory proof, bytes32 leaf) public view returns (bool) {
        return MerkleProof.verify(proof, root, leaf);
    }

    function mintWhitelist(bytes32[] memory proof, uint count) public payable {
		require(isWhitelistMint, "Whitelist mint has not started");
		require(_totalMinted() + count <= maxWhitelistSupply, "Exceeds max whitelist supply");
        require(_whitelistMintedCount[msg.sender] + count <= maxWhitelistMints, "Exceeds max mints for whitelist");
        if (!isValid(proof, keccak256(abi.encodePacked(msg.sender)))) revert("Wallet is not on allowlist");

		require(
			msg.value >= count * whitelistPrice,
			"Ether value sent is not sufficient"
		);

		_walletMintedCount[msg.sender] += count;
		_whitelistMintedCount[msg.sender] += count;

		_safeMint(msg.sender, count);
	}
    
    function mintPublic(uint count) external payable {
		require(isPublicMint, "Public mint has not started");
		require(count <= maxPerTx, "Exceeds NFT per transaction limit");
		require(_totalMinted() + count <= maxSupply, "Exceeds max supply");

		require(
			msg.value >= count * publicPrice,
			"Ether value sent is not sufficient"
		);

		_walletMintedCount[msg.sender] += count;

		_safeMint(msg.sender, count);
	}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":"count","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"finalizeMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMetadataFinal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"isValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","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":"maxWhitelistMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWhitelistSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"mintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prerevealURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"reduceSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"url","type":"string"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_public","type":"uint256"},{"internalType":"uint256","name":"_whitelist","type":"uint256"}],"name":"setPrices","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setPublicState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setWhitelistState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6005600a556002600b556108ae600c55610d05600d55660aa87bee538000600e556611c37937e08000600f556010805461ffff1916905560a060405260006080908152601290620000519082620001d2565b503480156200005f57600080fd5b506040518060400160405280600e81526020016d155b99d95b9d5a5b99481119585960921b81525060405180604001604052806002815260200161155160f21b8152508160029081620000b39190620001d2565b506003620000c28282620001d2565b5050600160005550620000d533620000db565b6200029e565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200015857607f821691505b6020821081036200017957634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001cd57600081815260208120601f850160051c81016020861015620001a85750805b601f850160051c820191505b81811015620001c957828155600101620001b4565b5050505b505050565b81516001600160401b03811115620001ee57620001ee6200012d565b6200020681620001ff845462000143565b846200017f565b602080601f8311600181146200023e5760008415620002255750858301515b600019600386901b1c1916600185901b178555620001c9565b600085815260208120601f198616915b828110156200026f578886015182559484019460019091019084016200024e565b50858210156200028e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61237a80620002ae6000396000f3fe6080604052600436106102515760003560e01c8063a22cb46511610139578063dab5f340116100b6578063f2fde38b1161007a578063f2fde38b146106c1578063f4a560a5146106e1578063f968adbe146106f6578063fc1a1c361461070c578063fddcb5ea14610722578063ff6e36ed1461075857600080fd5b8063dab5f3401461060e578063e8a3d4851461062e578063e985e9c51461064f578063ebf0c71714610698578063efd0cbf9146106ae57600080fd5b8063c48156af116100fd578063c48156af14610584578063c754da33146105a4578063c87b56dd146105c3578063d5abeb01146105e3578063d8210482146105f957600080fd5b8063a22cb465146104fb578063a6d612f91461051b578063a945bf801461052e578063b88d4fde14610544578063b8a20ed01461056457600080fd5b80633ccfd60b116101d2578063715018a611610196578063715018a61461045d57806380623444146104725780638ba4cc3c146104925780638da5cb5b146104b2578063953f049d146104d057806395d89b41146104e657600080fd5b80633ccfd60b146103c857806342842e0e146103dd5780634c261247146103fd5780636352211e1461041d57806370a082311461043d57600080fd5b80630de76de4116102195780630de76de41461032757806318160ddd146103475780631df0bb8a1461036e57806323b872dd1461038e5780633057931f146103ae57600080fd5b806301ffc9a71461025657806305fefda71461028b57806306fdde03146102ad578063081812fc146102cf578063095ea7b314610307575b600080fd5b34801561026257600080fd5b50610276610271366004611c2a565b61076e565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a6366004611c47565b6107c0565b005b3480156102b957600080fd5b506102c26107fe565b6040516102829190611cb9565b3480156102db57600080fd5b506102ef6102ea366004611ccc565b610890565b6040516001600160a01b039091168152602001610282565b34801561031357600080fd5b506102ab610322366004611d01565b6108d4565b34801561033357600080fd5b506010546102769062010000900460ff1681565b34801561035357600080fd5b5060015460005403600019015b604051908152602001610282565b34801561037a57600080fd5b506102ab610389366004611d3b565b61095a565b34801561039a57600080fd5b506102ab6103a9366004611d56565b61099e565b3480156103ba57600080fd5b506010546102769060ff1681565b3480156103d457600080fd5b506102ab6109a9565b3480156103e957600080fd5b506102ab6103f8366004611d56565b610a06565b34801561040957600080fd5b506102ab610418366004611e2f565b610a21565b34801561042957600080fd5b506102ef610438366004611ccc565b610aa8565b34801561044957600080fd5b50610360610458366004611e77565b610aba565b34801561046957600080fd5b506102ab610b08565b34801561047e57600080fd5b506102ab61048d366004611ccc565b610b3e565b34801561049e57600080fd5b506102ab6104ad366004611d01565b610b6d565b3480156104be57600080fd5b506008546001600160a01b03166102ef565b3480156104dc57600080fd5b50610360600c5481565b3480156104f257600080fd5b506102c2610bff565b34801561050757600080fd5b506102ab610516366004611e92565b610c0e565b6102ab610529366004611f44565b610ca3565b34801561053a57600080fd5b50610360600f5481565b34801561055057600080fd5b506102ab61055f366004611f88565b610ed9565b34801561057057600080fd5b5061027661057f366004611f44565b610f23565b34801561059057600080fd5b506102ab61059f366004611d3b565b610f39565b3480156105b057600080fd5b5060105461027690610100900460ff1681565b3480156105cf57600080fd5b506102c26105de366004611ccc565b610f76565b3480156105ef57600080fd5b50610360600d5481565b34801561060557600080fd5b506102c26110bc565b34801561061a57600080fd5b506102ab610629366004611ccc565b61114a565b34801561063a57600080fd5b506040805160208101909152600081526102c2565b34801561065b57600080fd5b5061027661066a366004612003565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106a457600080fd5b5061036060095481565b6102ab6106bc366004611ccc565b611179565b3480156106cd57600080fd5b506102ab6106dc366004611e77565b6112e3565b3480156106ed57600080fd5b506102ab61137b565b34801561070257600080fd5b50610360600a5481565b34801561071857600080fd5b50610360600e5481565b34801561072e57600080fd5b5061036061073d366004611e77565b6001600160a01b031660009081526013602052604090205490565b34801561076457600080fd5b50610360600b5481565b60006001600160e01b031982166380ac58cd60e01b148061079f57506001600160e01b03198216635b5e139f60e01b145b806107ba57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146107f35760405162461bcd60e51b81526004016107ea9061202d565b60405180910390fd5b600f91909155600e55565b60606002805461080d90612062565b80601f016020809104026020016040519081016040528092919081815260200182805461083990612062565b80156108865780601f1061085b57610100808354040283529160200191610886565b820191906000526020600020905b81548152906001019060200180831161086957829003601f168201915b5050505050905090565b600061089b826113b8565b6108b8576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108df82610aa8565b9050806001600160a01b0316836001600160a01b0316036109135760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461094a5761092d813361066a565b61094a576040516367d9dca160e11b815260040160405180910390fd5b6109558383836113f1565b505050565b6008546001600160a01b031633146109845760405162461bcd60e51b81526004016107ea9061202d565b601080549115156101000261ff0019909216919091179055565b61095583838361144d565b6008546001600160a01b031633146109d35760405162461bcd60e51b81526004016107ea9061202d565b6040514790339082156108fc029083906000818181858888f19350505050158015610a02573d6000803e3d6000fd5b5050565b61095583838360405180602001604052806000815250610ed9565b6008546001600160a01b03163314610a4b5760405162461bcd60e51b81526004016107ea9061202d565b60105462010000900460ff1615610a9c5760405162461bcd60e51b815260206004820152601560248201527413595d1859185d18481a5cc8199a5b985b1a5e9959605a1b60448201526064016107ea565b6011610a0282826120ea565b6000610ab38261163a565b5192915050565b60006001600160a01b038216610ae3576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610b325760405162461bcd60e51b81526004016107ea9061202d565b610b3c600061175c565b565b6008546001600160a01b03163314610b685760405162461bcd60e51b81526004016107ea9061202d565b600d55565b6008546001600160a01b03163314610b975760405162461bcd60e51b81526004016107ea9061202d565b600d5481610ba86000546000190190565b610bb291906121bf565b1115610bf55760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016107ea565b610a0282826117ae565b60606003805461080d90612062565b336001600160a01b03831603610c375760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b601054610100900460ff16610cfa5760405162461bcd60e51b815260206004820152601e60248201527f57686974656c697374206d696e7420686173206e6f742073746172746564000060448201526064016107ea565b600c5481610d0b6000546000190190565b610d1591906121bf565b1115610d635760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d61782077686974656c69737420737570706c790000000060448201526064016107ea565b600b5433600090815260146020526040902054610d819083906121bf565b1115610dcf5760405162461bcd60e51b815260206004820152601f60248201527f45786365656473206d6178206d696e747320666f722077686974656c6973740060448201526064016107ea565b6040516bffffffffffffffffffffffff193360601b166020820152610e0e90839060340160405160208183030381529060405280519060200120610f23565b610e5a5760405162461bcd60e51b815260206004820152601a60248201527f57616c6c6574206973206e6f74206f6e20616c6c6f776c69737400000000000060448201526064016107ea565b600e54610e6790826121d2565b341015610e865760405162461bcd60e51b81526004016107ea906121e9565b3360009081526013602052604081208054839290610ea59084906121bf565b90915550503360009081526014602052604081208054839290610ec99084906121bf565b90915550610a02905033826117ae565b610ee484848461144d565b6001600160a01b0383163b15610f1d57610f00848484846117c8565b610f1d576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000610f3283600954846118b4565b9392505050565b6008546001600160a01b03163314610f635760405162461bcd60e51b81526004016107ea9061202d565b6010805460ff1916911515919091179055565b6060610f81826113b8565b610fe55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107ea565b6000610fef6118ca565b5111611085576012805461100290612062565b80601f016020809104026020016040519081016040528092919081815260200182805461102e90612062565b801561107b5780601f106110505761010080835404028352916020019161107b565b820191906000526020600020905b81548152906001019060200180831161105e57829003601f168201915b50505050506107ba565b61108d6118ca565b611096836118d9565b6040516020016110a792919061222b565b60405160208183030381529060405292915050565b601280546110c990612062565b80601f01602080910402602001604051908101604052809291908181526020018280546110f590612062565b80156111425780601f1061111757610100808354040283529160200191611142565b820191906000526020600020905b81548152906001019060200180831161112557829003601f168201915b505050505081565b6008546001600160a01b031633146111745760405162461bcd60e51b81526004016107ea9061202d565b600955565b60105460ff166111cb5760405162461bcd60e51b815260206004820152601b60248201527f5075626c6963206d696e7420686173206e6f742073746172746564000000000060448201526064016107ea565b600a548111156112275760405162461bcd60e51b815260206004820152602160248201527f45786365656473204e465420706572207472616e73616374696f6e206c696d696044820152601d60fa1b60648201526084016107ea565b600d54816112386000546000190190565b61124291906121bf565b11156112855760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016107ea565b600f5461129290826121d2565b3410156112b15760405162461bcd60e51b81526004016107ea906121e9565b33600090815260136020526040812080548392906112d09084906121bf565b909155506112e0905033826117ae565b50565b6008546001600160a01b0316331461130d5760405162461bcd60e51b81526004016107ea9061202d565b6001600160a01b0381166113725760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ea565b6112e08161175c565b6008546001600160a01b031633146113a55760405162461bcd60e51b81526004016107ea9061202d565b6010805462ff0000191662010000179055565b6000816001111580156113cc575060005482105b80156107ba575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006114588261163a565b9050836001600160a01b031681600001516001600160a01b03161461148f5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806114ad57506114ad853361066a565b806114c85750336114bd84610890565b6001600160a01b0316145b9050806114e857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661150f57604051633a954ecd60e21b815260040160405180910390fd5b61151b600084876113f1565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166115ef5760005482146115ef57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b604080516060810182526000808252602082018190529181019190915281806001116117435760005481101561174357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906117415780516001600160a01b0316156116d8579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561173c579392505050565b6116d8565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a028282604051806020016040528060008152506119d9565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906117fd90339089908890889060040161226a565b6020604051808303816000875af1925050508015611838575060408051601f3d908101601f19168201909252611835918101906122a7565b60015b611896573d808015611866576040519150601f19603f3d011682016040523d82523d6000602084013e61186b565b606091505b50805160000361188e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6000826118c18584611ba0565b14949350505050565b60606011805461080d90612062565b6060816000036119005750506040805180820190915260018152600360fc1b602082015290565b8160005b811561192a5780611914816122c4565b91506119239050600a836122f3565b9150611904565b6000816001600160401b0381111561194457611944611d92565b6040519080825280601f01601f19166020018201604052801561196e576020820181803683370190505b5090505b84156118ac57611983600183612307565b9150611990600a8661231a565b61199b9060306121bf565b60f81b8183815181106119b0576119b061232e565b60200101906001600160f81b031916908160001a9053506119d2600a866122f3565b9450611972565b6000546001600160a01b038416611a0257604051622e076360e81b815260040160405180910390fd5b82600003611a235760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611b4b575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611b1460008784806001019550876117c8565b611b31576040516368d2bf6b60e11b815260040160405180910390fd5b808210611ac9578260005414611b4657600080fd5b611b90565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611b4c575b506000908155610f1d9085838684565b600081815b8451811015611c0c576000858281518110611bc257611bc261232e565b60200260200101519050808311611be85760008381526020829052604090209250611bf9565b600081815260208490526040902092505b5080611c04816122c4565b915050611ba5565b509392505050565b6001600160e01b0319811681146112e057600080fd5b600060208284031215611c3c57600080fd5b8135610f3281611c14565b60008060408385031215611c5a57600080fd5b50508035926020909101359150565b60005b83811015611c84578181015183820152602001611c6c565b50506000910152565b60008151808452611ca5816020860160208601611c69565b601f01601f19169290920160200192915050565b602081526000610f326020830184611c8d565b600060208284031215611cde57600080fd5b5035919050565b80356001600160a01b0381168114611cfc57600080fd5b919050565b60008060408385031215611d1457600080fd5b611d1d83611ce5565b946020939093013593505050565b80358015158114611cfc57600080fd5b600060208284031215611d4d57600080fd5b610f3282611d2b565b600080600060608486031215611d6b57600080fd5b611d7484611ce5565b9250611d8260208501611ce5565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715611dd057611dd0611d92565b604052919050565b60006001600160401b03831115611df157611df1611d92565b611e04601f8401601f1916602001611da8565b9050828152838383011115611e1857600080fd5b828260208301376000602084830101529392505050565b600060208284031215611e4157600080fd5b81356001600160401b03811115611e5757600080fd5b8201601f81018413611e6857600080fd5b6118ac84823560208401611dd8565b600060208284031215611e8957600080fd5b610f3282611ce5565b60008060408385031215611ea557600080fd5b611eae83611ce5565b9150611ebc60208401611d2b565b90509250929050565b600082601f830112611ed657600080fd5b813560206001600160401b03821115611ef157611ef1611d92565b8160051b611f00828201611da8565b9283528481018201928281019087851115611f1a57600080fd5b83870192505b84831015611f3957823582529183019190830190611f20565b979650505050505050565b60008060408385031215611f5757600080fd5b82356001600160401b03811115611f6d57600080fd5b611f7985828601611ec5565b95602094909401359450505050565b60008060008060808587031215611f9e57600080fd5b611fa785611ce5565b9350611fb560208601611ce5565b92506040850135915060608501356001600160401b03811115611fd757600080fd5b8501601f81018713611fe857600080fd5b611ff787823560208401611dd8565b91505092959194509250565b6000806040838503121561201657600080fd5b61201f83611ce5565b9150611ebc60208401611ce5565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061207657607f821691505b60208210810361209657634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561095557600081815260208120601f850160051c810160208610156120c35750805b601f850160051c820191505b818110156120e2578281556001016120cf565b505050505050565b81516001600160401b0381111561210357612103611d92565b612117816121118454612062565b8461209c565b602080601f83116001811461214c57600084156121345750858301515b600019600386901b1c1916600185901b1785556120e2565b600085815260208120601f198616915b8281101561217b5788860151825594840194600190910190840161215c565b50858210156121995787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b808201808211156107ba576107ba6121a9565b80820281158282048414176107ba576107ba6121a9565b60208082526022908201527f45746865722076616c75652073656e74206973206e6f742073756666696369656040820152611b9d60f21b606082015260800190565b6000835161223d818460208801611c69565b835190830190612251818360208801611c69565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061229d90830184611c8d565b9695505050505050565b6000602082840312156122b957600080fd5b8151610f3281611c14565b6000600182016122d6576122d66121a9565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082612302576123026122dd565b500490565b818103818111156107ba576107ba6121a9565b600082612329576123296122dd565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122035bcba4ba847a5845c1baa433345a027e42578daadaef0738837903671da06d464736f6c63430008110033

Deployed Bytecode

0x6080604052600436106102515760003560e01c8063a22cb46511610139578063dab5f340116100b6578063f2fde38b1161007a578063f2fde38b146106c1578063f4a560a5146106e1578063f968adbe146106f6578063fc1a1c361461070c578063fddcb5ea14610722578063ff6e36ed1461075857600080fd5b8063dab5f3401461060e578063e8a3d4851461062e578063e985e9c51461064f578063ebf0c71714610698578063efd0cbf9146106ae57600080fd5b8063c48156af116100fd578063c48156af14610584578063c754da33146105a4578063c87b56dd146105c3578063d5abeb01146105e3578063d8210482146105f957600080fd5b8063a22cb465146104fb578063a6d612f91461051b578063a945bf801461052e578063b88d4fde14610544578063b8a20ed01461056457600080fd5b80633ccfd60b116101d2578063715018a611610196578063715018a61461045d57806380623444146104725780638ba4cc3c146104925780638da5cb5b146104b2578063953f049d146104d057806395d89b41146104e657600080fd5b80633ccfd60b146103c857806342842e0e146103dd5780634c261247146103fd5780636352211e1461041d57806370a082311461043d57600080fd5b80630de76de4116102195780630de76de41461032757806318160ddd146103475780631df0bb8a1461036e57806323b872dd1461038e5780633057931f146103ae57600080fd5b806301ffc9a71461025657806305fefda71461028b57806306fdde03146102ad578063081812fc146102cf578063095ea7b314610307575b600080fd5b34801561026257600080fd5b50610276610271366004611c2a565b61076e565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a6366004611c47565b6107c0565b005b3480156102b957600080fd5b506102c26107fe565b6040516102829190611cb9565b3480156102db57600080fd5b506102ef6102ea366004611ccc565b610890565b6040516001600160a01b039091168152602001610282565b34801561031357600080fd5b506102ab610322366004611d01565b6108d4565b34801561033357600080fd5b506010546102769062010000900460ff1681565b34801561035357600080fd5b5060015460005403600019015b604051908152602001610282565b34801561037a57600080fd5b506102ab610389366004611d3b565b61095a565b34801561039a57600080fd5b506102ab6103a9366004611d56565b61099e565b3480156103ba57600080fd5b506010546102769060ff1681565b3480156103d457600080fd5b506102ab6109a9565b3480156103e957600080fd5b506102ab6103f8366004611d56565b610a06565b34801561040957600080fd5b506102ab610418366004611e2f565b610a21565b34801561042957600080fd5b506102ef610438366004611ccc565b610aa8565b34801561044957600080fd5b50610360610458366004611e77565b610aba565b34801561046957600080fd5b506102ab610b08565b34801561047e57600080fd5b506102ab61048d366004611ccc565b610b3e565b34801561049e57600080fd5b506102ab6104ad366004611d01565b610b6d565b3480156104be57600080fd5b506008546001600160a01b03166102ef565b3480156104dc57600080fd5b50610360600c5481565b3480156104f257600080fd5b506102c2610bff565b34801561050757600080fd5b506102ab610516366004611e92565b610c0e565b6102ab610529366004611f44565b610ca3565b34801561053a57600080fd5b50610360600f5481565b34801561055057600080fd5b506102ab61055f366004611f88565b610ed9565b34801561057057600080fd5b5061027661057f366004611f44565b610f23565b34801561059057600080fd5b506102ab61059f366004611d3b565b610f39565b3480156105b057600080fd5b5060105461027690610100900460ff1681565b3480156105cf57600080fd5b506102c26105de366004611ccc565b610f76565b3480156105ef57600080fd5b50610360600d5481565b34801561060557600080fd5b506102c26110bc565b34801561061a57600080fd5b506102ab610629366004611ccc565b61114a565b34801561063a57600080fd5b506040805160208101909152600081526102c2565b34801561065b57600080fd5b5061027661066a366004612003565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106a457600080fd5b5061036060095481565b6102ab6106bc366004611ccc565b611179565b3480156106cd57600080fd5b506102ab6106dc366004611e77565b6112e3565b3480156106ed57600080fd5b506102ab61137b565b34801561070257600080fd5b50610360600a5481565b34801561071857600080fd5b50610360600e5481565b34801561072e57600080fd5b5061036061073d366004611e77565b6001600160a01b031660009081526013602052604090205490565b34801561076457600080fd5b50610360600b5481565b60006001600160e01b031982166380ac58cd60e01b148061079f57506001600160e01b03198216635b5e139f60e01b145b806107ba57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146107f35760405162461bcd60e51b81526004016107ea9061202d565b60405180910390fd5b600f91909155600e55565b60606002805461080d90612062565b80601f016020809104026020016040519081016040528092919081815260200182805461083990612062565b80156108865780601f1061085b57610100808354040283529160200191610886565b820191906000526020600020905b81548152906001019060200180831161086957829003601f168201915b5050505050905090565b600061089b826113b8565b6108b8576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108df82610aa8565b9050806001600160a01b0316836001600160a01b0316036109135760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461094a5761092d813361066a565b61094a576040516367d9dca160e11b815260040160405180910390fd5b6109558383836113f1565b505050565b6008546001600160a01b031633146109845760405162461bcd60e51b81526004016107ea9061202d565b601080549115156101000261ff0019909216919091179055565b61095583838361144d565b6008546001600160a01b031633146109d35760405162461bcd60e51b81526004016107ea9061202d565b6040514790339082156108fc029083906000818181858888f19350505050158015610a02573d6000803e3d6000fd5b5050565b61095583838360405180602001604052806000815250610ed9565b6008546001600160a01b03163314610a4b5760405162461bcd60e51b81526004016107ea9061202d565b60105462010000900460ff1615610a9c5760405162461bcd60e51b815260206004820152601560248201527413595d1859185d18481a5cc8199a5b985b1a5e9959605a1b60448201526064016107ea565b6011610a0282826120ea565b6000610ab38261163a565b5192915050565b60006001600160a01b038216610ae3576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610b325760405162461bcd60e51b81526004016107ea9061202d565b610b3c600061175c565b565b6008546001600160a01b03163314610b685760405162461bcd60e51b81526004016107ea9061202d565b600d55565b6008546001600160a01b03163314610b975760405162461bcd60e51b81526004016107ea9061202d565b600d5481610ba86000546000190190565b610bb291906121bf565b1115610bf55760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016107ea565b610a0282826117ae565b60606003805461080d90612062565b336001600160a01b03831603610c375760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b601054610100900460ff16610cfa5760405162461bcd60e51b815260206004820152601e60248201527f57686974656c697374206d696e7420686173206e6f742073746172746564000060448201526064016107ea565b600c5481610d0b6000546000190190565b610d1591906121bf565b1115610d635760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d61782077686974656c69737420737570706c790000000060448201526064016107ea565b600b5433600090815260146020526040902054610d819083906121bf565b1115610dcf5760405162461bcd60e51b815260206004820152601f60248201527f45786365656473206d6178206d696e747320666f722077686974656c6973740060448201526064016107ea565b6040516bffffffffffffffffffffffff193360601b166020820152610e0e90839060340160405160208183030381529060405280519060200120610f23565b610e5a5760405162461bcd60e51b815260206004820152601a60248201527f57616c6c6574206973206e6f74206f6e20616c6c6f776c69737400000000000060448201526064016107ea565b600e54610e6790826121d2565b341015610e865760405162461bcd60e51b81526004016107ea906121e9565b3360009081526013602052604081208054839290610ea59084906121bf565b90915550503360009081526014602052604081208054839290610ec99084906121bf565b90915550610a02905033826117ae565b610ee484848461144d565b6001600160a01b0383163b15610f1d57610f00848484846117c8565b610f1d576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000610f3283600954846118b4565b9392505050565b6008546001600160a01b03163314610f635760405162461bcd60e51b81526004016107ea9061202d565b6010805460ff1916911515919091179055565b6060610f81826113b8565b610fe55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107ea565b6000610fef6118ca565b5111611085576012805461100290612062565b80601f016020809104026020016040519081016040528092919081815260200182805461102e90612062565b801561107b5780601f106110505761010080835404028352916020019161107b565b820191906000526020600020905b81548152906001019060200180831161105e57829003601f168201915b50505050506107ba565b61108d6118ca565b611096836118d9565b6040516020016110a792919061222b565b60405160208183030381529060405292915050565b601280546110c990612062565b80601f01602080910402602001604051908101604052809291908181526020018280546110f590612062565b80156111425780601f1061111757610100808354040283529160200191611142565b820191906000526020600020905b81548152906001019060200180831161112557829003601f168201915b505050505081565b6008546001600160a01b031633146111745760405162461bcd60e51b81526004016107ea9061202d565b600955565b60105460ff166111cb5760405162461bcd60e51b815260206004820152601b60248201527f5075626c6963206d696e7420686173206e6f742073746172746564000000000060448201526064016107ea565b600a548111156112275760405162461bcd60e51b815260206004820152602160248201527f45786365656473204e465420706572207472616e73616374696f6e206c696d696044820152601d60fa1b60648201526084016107ea565b600d54816112386000546000190190565b61124291906121bf565b11156112855760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016107ea565b600f5461129290826121d2565b3410156112b15760405162461bcd60e51b81526004016107ea906121e9565b33600090815260136020526040812080548392906112d09084906121bf565b909155506112e0905033826117ae565b50565b6008546001600160a01b0316331461130d5760405162461bcd60e51b81526004016107ea9061202d565b6001600160a01b0381166113725760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ea565b6112e08161175c565b6008546001600160a01b031633146113a55760405162461bcd60e51b81526004016107ea9061202d565b6010805462ff0000191662010000179055565b6000816001111580156113cc575060005482105b80156107ba575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006114588261163a565b9050836001600160a01b031681600001516001600160a01b03161461148f5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806114ad57506114ad853361066a565b806114c85750336114bd84610890565b6001600160a01b0316145b9050806114e857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661150f57604051633a954ecd60e21b815260040160405180910390fd5b61151b600084876113f1565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166115ef5760005482146115ef57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b604080516060810182526000808252602082018190529181019190915281806001116117435760005481101561174357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906117415780516001600160a01b0316156116d8579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561173c579392505050565b6116d8565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a028282604051806020016040528060008152506119d9565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906117fd90339089908890889060040161226a565b6020604051808303816000875af1925050508015611838575060408051601f3d908101601f19168201909252611835918101906122a7565b60015b611896573d808015611866576040519150601f19603f3d011682016040523d82523d6000602084013e61186b565b606091505b50805160000361188e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6000826118c18584611ba0565b14949350505050565b60606011805461080d90612062565b6060816000036119005750506040805180820190915260018152600360fc1b602082015290565b8160005b811561192a5780611914816122c4565b91506119239050600a836122f3565b9150611904565b6000816001600160401b0381111561194457611944611d92565b6040519080825280601f01601f19166020018201604052801561196e576020820181803683370190505b5090505b84156118ac57611983600183612307565b9150611990600a8661231a565b61199b9060306121bf565b60f81b8183815181106119b0576119b061232e565b60200101906001600160f81b031916908160001a9053506119d2600a866122f3565b9450611972565b6000546001600160a01b038416611a0257604051622e076360e81b815260040160405180910390fd5b82600003611a235760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611b4b575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611b1460008784806001019550876117c8565b611b31576040516368d2bf6b60e11b815260040160405180910390fd5b808210611ac9578260005414611b4657600080fd5b611b90565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611b4c575b506000908155610f1d9085838684565b600081815b8451811015611c0c576000858281518110611bc257611bc261232e565b60200260200101519050808311611be85760008381526020829052604090209250611bf9565b600081815260208490526040902092505b5080611c04816122c4565b915050611ba5565b509392505050565b6001600160e01b0319811681146112e057600080fd5b600060208284031215611c3c57600080fd5b8135610f3281611c14565b60008060408385031215611c5a57600080fd5b50508035926020909101359150565b60005b83811015611c84578181015183820152602001611c6c565b50506000910152565b60008151808452611ca5816020860160208601611c69565b601f01601f19169290920160200192915050565b602081526000610f326020830184611c8d565b600060208284031215611cde57600080fd5b5035919050565b80356001600160a01b0381168114611cfc57600080fd5b919050565b60008060408385031215611d1457600080fd5b611d1d83611ce5565b946020939093013593505050565b80358015158114611cfc57600080fd5b600060208284031215611d4d57600080fd5b610f3282611d2b565b600080600060608486031215611d6b57600080fd5b611d7484611ce5565b9250611d8260208501611ce5565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715611dd057611dd0611d92565b604052919050565b60006001600160401b03831115611df157611df1611d92565b611e04601f8401601f1916602001611da8565b9050828152838383011115611e1857600080fd5b828260208301376000602084830101529392505050565b600060208284031215611e4157600080fd5b81356001600160401b03811115611e5757600080fd5b8201601f81018413611e6857600080fd5b6118ac84823560208401611dd8565b600060208284031215611e8957600080fd5b610f3282611ce5565b60008060408385031215611ea557600080fd5b611eae83611ce5565b9150611ebc60208401611d2b565b90509250929050565b600082601f830112611ed657600080fd5b813560206001600160401b03821115611ef157611ef1611d92565b8160051b611f00828201611da8565b9283528481018201928281019087851115611f1a57600080fd5b83870192505b84831015611f3957823582529183019190830190611f20565b979650505050505050565b60008060408385031215611f5757600080fd5b82356001600160401b03811115611f6d57600080fd5b611f7985828601611ec5565b95602094909401359450505050565b60008060008060808587031215611f9e57600080fd5b611fa785611ce5565b9350611fb560208601611ce5565b92506040850135915060608501356001600160401b03811115611fd757600080fd5b8501601f81018713611fe857600080fd5b611ff787823560208401611dd8565b91505092959194509250565b6000806040838503121561201657600080fd5b61201f83611ce5565b9150611ebc60208401611ce5565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061207657607f821691505b60208210810361209657634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561095557600081815260208120601f850160051c810160208610156120c35750805b601f850160051c820191505b818110156120e2578281556001016120cf565b505050505050565b81516001600160401b0381111561210357612103611d92565b612117816121118454612062565b8461209c565b602080601f83116001811461214c57600084156121345750858301515b600019600386901b1c1916600185901b1785556120e2565b600085815260208120601f198616915b8281101561217b5788860151825594840194600190910190840161215c565b50858210156121995787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b808201808211156107ba576107ba6121a9565b80820281158282048414176107ba576107ba6121a9565b60208082526022908201527f45746865722076616c75652073656e74206973206e6f742073756666696369656040820152611b9d60f21b606082015260800190565b6000835161223d818460208801611c69565b835190830190612251818360208801611c69565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061229d90830184611c8d565b9695505050505050565b6000602082840312156122b957600080fd5b8151610f3281611c14565b6000600182016122d6576122d66121a9565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082612302576123026122dd565b500490565b818103818111156107ba576107ba6121a9565b600082612329576123296122dd565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122035bcba4ba847a5845c1baa433345a027e42578daadaef0738837903671da06d464736f6c63430008110033

Deployed Bytecode Sourcemap

49949:4472:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28570:305;;;;;;;;;;-1:-1:-1;28570:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;28570:305:0;;;;;;;;52646:138;;;;;;;;;;-1:-1:-1;52646:138:0;;;;;:::i;:::-;;:::i;:::-;;31685:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33189:204::-;;;;;;;;;;-1:-1:-1;33189:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1950:32:1;;;1932:51;;1920:2;1905:18;33189:204:0;1786:203:1;32751:372:0;;;;;;;;;;-1:-1:-1;32751:372:0;;;;;:::i;:::-;;:::i;50403:27::-;;;;;;;;;;-1:-1:-1;50403:27:0;;;;;;;;;;;27810:312;;;;;;;;;;-1:-1:-1;50849:1:0;28073:12;27863:7;28057:13;:28;-1:-1:-1;;28057:46:0;27810:312;;;2577:25:1;;;2565:2;2550:18;27810:312:0;2431:177:1;51481:91:0;;;;;;;;;;-1:-1:-1;51481:91:0;;;;;:::i;:::-;;:::i;34054:170::-;;;;;;;;;;-1:-1:-1;34054:170:0;;;;;:::i;:::-;;:::i;50320:32::-;;;;;;;;;;-1:-1:-1;50320:32:0;;;;;;;;52220:143;;;;;;;;;;;;;:::i;34295:185::-;;;;;;;;;;-1:-1:-1;34295:185:0;;;;;:::i;:::-;;:::i;51039:139::-;;;;;;;;;;-1:-1:-1;51039:139:0;;;;;:::i;:::-;;:::i;31493:125::-;;;;;;;;;;-1:-1:-1;31493:125:0;;;;;:::i;:::-;;:::i;28939:206::-;;;;;;;;;;-1:-1:-1;28939:206:0;;;;;:::i;:::-;;:::i;49097:103::-;;;;;;;;;;;;;:::i;52547:94::-;;;;;;;;;;-1:-1:-1;52547:94:0;;;;;:::i;:::-;;:::i;52368:174::-;;;;;;;;;;-1:-1:-1;52368:174:0;;;;;:::i;:::-;;:::i;48446:87::-;;;;;;;;;;-1:-1:-1;48519:6:0;;-1:-1:-1;;;;;48519:6:0;48446:87;;50120:37;;;;;;;;;;;;;;;;31854:104;;;;;;;;;;;;;:::i;33465:287::-;;;;;;;;;;-1:-1:-1;33465:287:0;;;;;:::i;:::-;;:::i;53288:688::-;;;;;;:::i;:::-;;:::i;50277:37::-;;;;;;;;;;;;;;;;34551:370;;;;;;;;;;-1:-1:-1;34551:370:0;;;;;:::i;:::-;;:::i;53135:145::-;;;;;;;;;;-1:-1:-1;53135:145:0;;;;;:::i;:::-;;:::i;51388:85::-;;;;;;;;;;-1:-1:-1;51388:85:0;;;;;:::i;:::-;;:::i;50359:35::-;;;;;;;;;;-1:-1:-1;50359:35:0;;;;;;;;;;;52789:341;;;;;;;;;;-1:-1:-1;52789:341:0;;;;;:::i;:::-;;:::i;50161:28::-;;;;;;;;;;;;;;;;50464:31;;;;;;;;;;;;;:::i;51310:73::-;;;;;;;;;;-1:-1:-1;51310:73:0;;;;;:::i;:::-;;:::i;50860:78::-;;;;;;;;;;-1:-1:-1;50924:9:0;;;;;;;;;-1:-1:-1;50924:9:0;;50860:78;;33823:164;;;;;;;;;;-1:-1:-1;33823:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33944:25:0;;;33920:4;33944:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33823:164;49999:19;;;;;;;;;;;;;;;;53988:430;;;;;;:::i;:::-;;:::i;49355:201::-;;;;;;;;;;-1:-1:-1;49355:201:0;;;;;:::i;:::-;;:::i;50946:88::-;;;;;;;;;;;;;:::i;50050:24::-;;;;;;;;;;;;;;;;50233:40;;;;;;;;;;;;;;;;51186:116;;;;;;;;;;-1:-1:-1;51186:116:0;;;;;:::i;:::-;-1:-1:-1;;;;;51269:25:0;51245:4;51269:25;;;:18;:25;;;;;;;51186:116;50078:33;;;;;;;;;;;;;;;;28570:305;28672:4;-1:-1:-1;;;;;;28709:40:0;;-1:-1:-1;;;28709:40:0;;:105;;-1:-1:-1;;;;;;;28766:48:0;;-1:-1:-1;;;28766:48:0;28709:105;:158;;;-1:-1:-1;;;;;;;;;;16127:40:0;;;28831:36;28689:178;28570:305;-1:-1:-1;;28570:305:0:o;52646:138::-;48519:6;;-1:-1:-1;;;;;48519:6:0;25587:10;48666:23;48658:68;;;;-1:-1:-1;;;48658:68:0;;;;;;;:::i;:::-;;;;;;;;;52720:11:::1;:21:::0;;;;52752:14:::1;:27:::0;52646:138::o;31685:100::-;31739:13;31772:5;31765:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31685:100;:::o;33189:204::-;33257:7;33282:16;33290:7;33282;:16::i;:::-;33277:64;;33307:34;;-1:-1:-1;;;33307:34:0;;;;;;;;;;;33277:64;-1:-1:-1;33361:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33361:24:0;;33189:204::o;32751:372::-;32824:13;32840:24;32856:7;32840:15;:24::i;:::-;32824:40;;32885:5;-1:-1:-1;;;;;32879:11:0;:2;-1:-1:-1;;;;;32879:11:0;;32875:48;;32899:24;;-1:-1:-1;;;32899:24:0;;;;;;;;;;;32875:48;25587:10;-1:-1:-1;;;;;32940:21:0;;;32936:139;;32967:37;32984:5;25587:10;33823:164;:::i;32967:37::-;32963:112;;33028:35;;-1:-1:-1;;;33028:35:0;;;;;;;;;;;32963:112;33087:28;33096:2;33100:7;33109:5;33087:8;:28::i;:::-;32813:310;32751:372;;:::o;51481:91::-;48519:6;;-1:-1:-1;;;;;48519:6:0;25587:10;48666:23;48658:68;;;;-1:-1:-1;;;48658:68:0;;;;;;;:::i;:::-;51544:15:::1;:23:::0;;;::::1;;;;-1:-1:-1::0;;51544:23:0;;::::1;::::0;;;::::1;::::0;;51481:91::o;34054:170::-;34188:28;34198:4;34204:2;34208:7;34188:9;:28::i;52220:143::-;48519:6;;-1:-1:-1;;;;;48519:6:0;25587:10;48666:23;48658:68;;;;-1:-1:-1;;;48658:68:0;;;;;;;:::i;:::-;52318:37:::1;::::0;52286:21:::1;::::0;52326:10:::1;::::0;52318:37;::::1;;;::::0;52286:21;;52268:15:::1;52318:37:::0;52268:15;52318:37;52286:21;52326:10;52318:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;52257:106;52220:143::o:0;34295:185::-;34433:39;34450:4;34456:2;34460:7;34433:39;;;;;;;;;;;;:16;:39::i;51039:139::-;48519:6;;-1:-1:-1;;;;;48519:6:0;25587:10;48666:23;48658:68;;;;-1:-1:-1;;;48658:68:0;;;;;;;:::i;:::-;51113:15:::1;::::0;;;::::1;;;51112:16;51104:50;;;::::0;-1:-1:-1;;;51104:50:0;;8837:2:1;51104:50:0::1;::::0;::::1;8819:21:1::0;8876:2;8856:18;;;8849:30;-1:-1:-1;;;8895:18:1;;;8888:51;8956:18;;51104:50:0::1;8635:345:1::0;51104:50:0::1;51159:8;:14;51170:3:::0;51159:8;:14:::1;:::i;31493:125::-:0;31557:7;31584:21;31597:7;31584:12;:21::i;:::-;:26;;31493:125;-1:-1:-1;;31493:125:0:o;28939:206::-;29003:7;-1:-1:-1;;;;;29027:19:0;;29023:60;;29055:28;;-1:-1:-1;;;29055:28:0;;;;;;;;;;;29023:60;-1:-1:-1;;;;;;29109:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;29109:27:0;;28939:206::o;49097:103::-;48519:6;;-1:-1:-1;;;;;48519:6:0;25587:10;48666:23;48658:68;;;;-1:-1:-1;;;48658:68:0;;;;;;;:::i;:::-;49162:30:::1;49189:1;49162:18;:30::i;:::-;49097:103::o:0;52547:94::-;48519:6;;-1:-1:-1;;;;;48519:6:0;25587:10;48666:23;48658:68;;;;-1:-1:-1;;;48658:68:0;;;;;;;:::i;:::-;52612:9:::1;:24:::0;52547:94::o;52368:174::-;48519:6;;-1:-1:-1;;;;;48519:6:0;25587:10;48666:23;48658:68;;;;-1:-1:-1;;;48658:68:0;;;;;;;:::i;:::-;52472:9:::1;;52463:5;52446:14;28262:7:::0;28448:13;-1:-1:-1;;28448:31:0;;28215:283;52446:14:::1;:22;;;;:::i;:::-;:35;;52433:79;;;::::0;-1:-1:-1;;;52433:79:0;;11653:2:1;52433:79:0::1;::::0;::::1;11635:21:1::0;11692:2;11672:18;;;11665:30;-1:-1:-1;;;11711:18:1;;;11704:48;11769:18;;52433:79:0::1;11451:342:1::0;52433:79:0::1;52517:20;52527:2;52531:5;52517:9;:20::i;31854:104::-:0;31910:13;31943:7;31936:14;;;;;:::i;33465:287::-;25587:10;-1:-1:-1;;;;;33564:24:0;;;33560:54;;33597:17;;-1:-1:-1;;;33597:17:0;;;;;;;;;;;33560:54;25587:10;33627:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33627:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33627:53:0;;;;;;;;;;33696:48;;540:41:1;;;33627:42:0;;25587:10;33696:48;;513:18:1;33696:48:0;;;;;;;33465:287;;:::o;53288:688::-;53375:15;;;;;;;53367:58;;;;-1:-1:-1;;;53367:58:0;;12000:2:1;53367:58:0;;;11982:21:1;12039:2;12019:18;;;12012:30;12078:32;12058:18;;;12051:60;12128:18;;53367:58:0;11798:354:1;53367:58:0;53464:18;;53455:5;53438:14;28262:7;28448:13;-1:-1:-1;;28448:31:0;;28215:283;53438:14;:22;;;;:::i;:::-;:44;;53430:85;;;;-1:-1:-1;;;53430:85:0;;12359:2:1;53430:85:0;;;12341:21:1;12398:2;12378:18;;;12371:30;12437;12417:18;;;12410:58;12485:18;;53430:85:0;12157:352:1;53430:85:0;53579:17;;53556:10;53534:33;;;;:21;:33;;;;;;:41;;53570:5;;53534:41;:::i;:::-;:62;;53526:106;;;;-1:-1:-1;;;53526:106:0;;12716:2:1;53526:106:0;;;12698:21:1;12755:2;12735:18;;;12728:30;12794:33;12774:18;;;12767:61;12845:18;;53526:106:0;12514:355:1;53526:106:0;53673:28;;-1:-1:-1;;53690:10:0;13023:2:1;13019:15;13015:53;53673:28:0;;;13003:66:1;53648:55:0;;53656:5;;13085:12:1;;53673:28:0;;;;;;;;;;;;53663:39;;;;;;53648:7;:55::i;:::-;53643:98;;53705:36;;-1:-1:-1;;;53705:36:0;;13310:2:1;53705:36:0;;;13292:21:1;13349:2;13329:18;;;13322:30;13388:28;13368:18;;;13361:56;13434:18;;53705:36:0;13108:350:1;53643:98:0;53782:14;;53774:22;;:5;:22;:::i;:::-;53761:9;:35;;53748:95;;;;-1:-1:-1;;;53748:95:0;;;;;;;:::i;:::-;53869:10;53850:30;;;;:18;:30;;;;;:39;;53884:5;;53850:30;:39;;53884:5;;53850:39;:::i;:::-;;;;-1:-1:-1;;53916:10:0;53894:33;;;;:21;:33;;;;;:42;;53931:5;;53894:33;:42;;53931:5;;53894:42;:::i;:::-;;;;-1:-1:-1;53943:28:0;;-1:-1:-1;53953:10:0;53965:5;53943:9;:28::i;34551:370::-;34718:28;34728:4;34734:2;34738:7;34718:9;:28::i;:::-;-1:-1:-1;;;;;34761:13:0;;6207:19;:23;34757:157;;34782:56;34813:4;34819:2;34823:7;34832:5;34782:30;:56::i;:::-;34778:136;;34862:40;;-1:-1:-1;;;34862:40:0;;;;;;;;;;;34778:136;34551:370;;;;:::o;53135:145::-;53211:4;53235:37;53254:5;53261:4;;53267;53235:18;:37::i;:::-;53228:44;53135:145;-1:-1:-1;;;53135:145:0:o;51388:85::-;48519:6;;-1:-1:-1;;;;;48519:6:0;25587:10;48666:23;48658:68;;;;-1:-1:-1;;;48658:68:0;;;;;;;:::i;:::-;51448:12:::1;:20:::0;;-1:-1:-1;;51448:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51388:85::o;52789:341::-;52863:13;52899:16;52907:7;52899;:16::i;:::-;52891:76;;;;-1:-1:-1;;;52891:76:0;;14241:2:1;52891:76:0;;;14223:21:1;14280:2;14260:18;;;14253:30;14319:34;14299:18;;;14292:62;-1:-1:-1;;;14370:18:1;;;14363:45;14425:19;;52891:76:0;14039:411:1;52891:76:0;53014:1;52993:10;:8;:10::i;:::-;52987:24;:28;:138;;53113:12;52987:138;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53056:10;:8;:10::i;:::-;53068:18;:7;:16;:18::i;:::-;53039:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52980:145;52789:341;-1:-1:-1;;52789:341:0:o;50464:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51310:73::-;48519:6;;-1:-1:-1;;;;;48519:6:0;25587:10;48666:23;48658:68;;;;-1:-1:-1;;;48658:68:0;;;;;;;:::i;:::-;51366:4:::1;:12:::0;51310:73::o;53988:430::-;54050:12;;;;54042:52;;;;-1:-1:-1;;;54042:52:0;;15325:2:1;54042:52:0;;;15307:21:1;15364:2;15344:18;;;15337:30;15403:29;15383:18;;;15376:57;15450:18;;54042:52:0;15123:351:1;54042:52:0;54116:8;;54107:5;:17;;54099:63;;;;-1:-1:-1;;;54099:63:0;;15681:2:1;54099:63:0;;;15663:21:1;15720:2;15700:18;;;15693:30;15759:34;15739:18;;;15732:62;-1:-1:-1;;;15810:18:1;;;15803:31;15851:19;;54099:63:0;15479:397:1;54099:63:0;54201:9;;54192:5;54175:14;28262:7;28448:13;-1:-1:-1;;28448:31:0;;28215:283;54175:14;:22;;;;:::i;:::-;:35;;54167:66;;;;-1:-1:-1;;;54167:66:0;;11653:2:1;54167:66:0;;;11635:21:1;11692:2;11672:18;;;11665:30;-1:-1:-1;;;11711:18:1;;;11704:48;11769:18;;54167:66:0;11451:342:1;54167:66:0;54274:11;;54266:19;;:5;:19;:::i;:::-;54253:9;:32;;54240:92;;;;-1:-1:-1;;;54240:92:0;;;;;;;:::i;:::-;54358:10;54339:30;;;;:18;:30;;;;;:39;;54373:5;;54339:30;:39;;54373:5;;54339:39;:::i;:::-;;;;-1:-1:-1;54385:28:0;;-1:-1:-1;54395:10:0;54407:5;54385:9;:28::i;:::-;53988:430;:::o;49355:201::-;48519:6;;-1:-1:-1;;;;;48519:6:0;25587:10;48666:23;48658:68;;;;-1:-1:-1;;;48658:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49444:22:0;::::1;49436:73;;;::::0;-1:-1:-1;;;49436:73:0;;16083:2:1;49436:73:0::1;::::0;::::1;16065:21:1::0;16122:2;16102:18;;;16095:30;16161:34;16141:18;;;16134:62;-1:-1:-1;;;16212:18:1;;;16205:36;16258:19;;49436:73:0::1;15881:402:1::0;49436:73:0::1;49520:28;49539:8;49520:18;:28::i;50946:88::-:0;48519:6;;-1:-1:-1;;;;;48519:6:0;25587:10;48666:23;48658:68;;;;-1:-1:-1;;;48658:68:0;;;;;;;:::i;:::-;51004:15:::1;:22:::0;;-1:-1:-1;;51004:22:0::1;::::0;::::1;::::0;;50946:88::o;35176:174::-;35233:4;35276:7;50849:1;35257:26;;:53;;;;;35297:13;;35287:7;:23;35257:53;:85;;;;-1:-1:-1;;35315:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;35315:27:0;;;;35314:28;;35176:174::o;44398:196::-;44513:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44513:29:0;-1:-1:-1;;;;;44513:29:0;;;;;;;;;44558:28;;44513:24;;44558:28;;;;;;;44398:196;;;:::o;39346:2130::-;39461:35;39499:21;39512:7;39499:12;:21::i;:::-;39461:59;;39559:4;-1:-1:-1;;;;;39537:26:0;:13;:18;;;-1:-1:-1;;;;;39537:26:0;;39533:67;;39572:28;;-1:-1:-1;;;39572:28:0;;;;;;;;;;;39533:67;39613:22;25587:10;-1:-1:-1;;;;;39639:20:0;;;;:73;;-1:-1:-1;39676:36:0;39693:4;25587:10;33823:164;:::i;39676:36::-;39639:126;;;-1:-1:-1;25587:10:0;39729:20;39741:7;39729:11;:20::i;:::-;-1:-1:-1;;;;;39729:36:0;;39639:126;39613:153;;39784:17;39779:66;;39810:35;;-1:-1:-1;;;39810:35:0;;;;;;;;;;;39779:66;-1:-1:-1;;;;;39860:16:0;;39856:52;;39885:23;;-1:-1:-1;;;39885:23:0;;;;;;;;;;;39856:52;40029:35;40046:1;40050:7;40059:4;40029:8;:35::i;:::-;-1:-1:-1;;;;;40360:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;40360:31:0;;;-1:-1:-1;;;;;40360:31:0;;;-1:-1:-1;;40360:31:0;;;;;;;40406:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40406:29:0;;;;;;;;;;;40486:20;;;:11;:20;;;;;;40521:18;;-1:-1:-1;;;;;;40554:49:0;;;;-1:-1:-1;;;40587:15:0;40554:49;;;;;;;;;;40877:11;;40937:24;;;;;40980:13;;40486:20;;40937:24;;40980:13;40976:384;;41190:13;;41175:11;:28;41171:174;;41228:20;;41297:28;;;;-1:-1:-1;;;;;41271:54:0;-1:-1:-1;;;41271:54:0;-1:-1:-1;;;;;;41271:54:0;;;-1:-1:-1;;;;;41228:20:0;;41271:54;;;;41171:174;40335:1036;;;41407:7;41403:2;-1:-1:-1;;;;;41388:27:0;41397:4;-1:-1:-1;;;;;41388:27:0;;;;;;;;;;;39450:2026;;39346:2130;;;:::o;30320:1111::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;30431:7:0;;50849:1;30480:23;30476:888;;30516:13;;30509:4;:20;30505:859;;;30550:31;30584:17;;;:11;:17;;;;;;;;;30550:51;;;;;;;;;-1:-1:-1;;;;;30550:51:0;;;;-1:-1:-1;;;30550:51:0;;-1:-1:-1;;;;;30550:51:0;;;;;;;;-1:-1:-1;;;30550:51:0;;;;;;;;;;;;;;30620:729;;30670:14;;-1:-1:-1;;;;;30670:28:0;;30666:101;;30734:9;30320:1111;-1:-1:-1;;;30320:1111:0:o;30666:101::-;-1:-1:-1;;;31109:6:0;31154:17;;;;:11;:17;;;;;;;;;31142:29;;;;;;;;;-1:-1:-1;;;;;31142:29:0;;;;;-1:-1:-1;;;31142:29:0;;-1:-1:-1;;;;;31142:29:0;;;;;;;;-1:-1:-1;;;31142:29:0;;;;;;;;;;;;;31202:28;31198:109;;31270:9;30320:1111;-1:-1:-1;;;30320:1111:0:o;31198:109::-;31069:261;;;30531:833;30505:859;31392:31;;-1:-1:-1;;;31392:31:0;;;;;;;;;;;49716:191;49809:6;;;-1:-1:-1;;;;;49826:17:0;;;-1:-1:-1;;;;;;49826:17:0;;;;;;;49859:40;;49809:6;;;49826:17;49809:6;;49859:40;;49790:16;;49859:40;49779:128;49716:191;:::o;35434:104::-;35503:27;35513:2;35517:8;35503:27;;;;;;;;;;;;:9;:27::i;45086:667::-;45270:72;;-1:-1:-1;;;45270:72:0;;45249:4;;-1:-1:-1;;;;;45270:36:0;;;;;:72;;25587:10;;45321:4;;45327:7;;45336:5;;45270:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45270:72:0;;;;;;;;-1:-1:-1;;45270:72:0;;;;;;;;;;;;:::i;:::-;;;45266:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45504:6;:13;45521:1;45504:18;45500:235;;45550:40;;-1:-1:-1;;;45550:40:0;;;;;;;;;;;45500:235;45693:6;45687:13;45678:6;45674:2;45670:15;45663:38;45266:480;-1:-1:-1;;;;;;45389:55:0;-1:-1:-1;;;45389:55:0;;-1:-1:-1;45266:480:0;45086:667;;;;;;:::o;1087:190::-;1212:4;1265;1236:25;1249:5;1256:4;1236:12;:25::i;:::-;:33;;1087:190;-1:-1:-1;;;;1087:190:0:o;50677:92::-;50729:13;50756:8;50749:15;;;;;:::i;2920:723::-;2976:13;3197:5;3206:1;3197:10;3193:53;;-1:-1:-1;;3224:10:0;;;;;;;;;;;;-1:-1:-1;;;3224:10:0;;;;;2920:723::o;3193:53::-;3271:5;3256:12;3312:78;3319:9;;3312:78;;3345:8;;;;:::i;:::-;;-1:-1:-1;3368:10:0;;-1:-1:-1;3376:2:0;3368:10;;:::i;:::-;;;3312:78;;;3400:19;3432:6;-1:-1:-1;;;;;3422:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3422:17:0;;3400:39;;3450:154;3457:10;;3450:154;;3484:11;3494:1;3484:11;;:::i;:::-;;-1:-1:-1;3553:10:0;3561:2;3553:5;:10;:::i;:::-;3540:24;;:2;:24;:::i;:::-;3527:39;;3510:6;3517;3510:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3510:56:0;;;;;;;;-1:-1:-1;3581:11:0;3590:2;3581:11;;:::i;:::-;;;3450:154;;35911:1749;36034:20;36057:13;-1:-1:-1;;;;;36085:16:0;;36081:48;;36110:19;;-1:-1:-1;;;36110:19:0;;;;;;;;;;;36081:48;36144:8;36156:1;36144:13;36140:44;;36166:18;;-1:-1:-1;;;36166:18:0;;;;;;;;;;;36140:44;-1:-1:-1;;;;;36535:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;36594:49:0;;-1:-1:-1;;;;;36535:44:0;;;;;;;36594:49;;;;-1:-1:-1;;36535:44:0;;;;;;36594:49;;;;;;;;;;;;;;;;36660:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;36710:66:0;;;-1:-1:-1;;;36760:15:0;36710:66;;;;;;;;;;;;;36660:25;;36857:23;;;;6207:19;:23;36897:631;;36937:313;36968:38;;36993:12;;-1:-1:-1;;;;;36968:38:0;;;36985:1;;36968:38;;36985:1;;36968:38;37034:69;37073:1;37077:2;37081:14;;;;;;37097:5;37034:30;:69::i;:::-;37029:174;;37139:40;;-1:-1:-1;;;37139:40:0;;;;;;;;;;;37029:174;37245:3;37230:12;:18;36937:313;;37331:12;37314:13;;:29;37310:43;;37345:8;;;37310:43;36897:631;;;37394:119;37425:40;;37450:14;;;;;-1:-1:-1;;;;;37425:40:0;;;37442:1;;37425:40;;37442:1;;37425:40;37508:3;37493:12;:18;37394:119;;36897:631;-1:-1:-1;37542:13:0;:28;;;37592:60;;37625:2;37629:12;37643:8;37592:60;:::i;1639:675::-;1722:7;1765:4;1722:7;1780:497;1804:5;:12;1800:1;:16;1780:497;;;1838:20;1861:5;1867:1;1861:8;;;;;;;;:::i;:::-;;;;;;;1838:31;;1904:12;1888;:28;1884:382;;2390:13;2440:15;;;2476:4;2469:15;;;2523:4;2507:21;;2016:57;;1884:382;;;2390:13;2440:15;;;2476:4;2469:15;;;2523:4;2507:21;;2193:57;;1884:382;-1:-1:-1;1818:3:0;;;;:::i;:::-;;;;1780:497;;;-1:-1:-1;2294:12:0;1639:675;-1:-1:-1;;;1639:675:0:o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:248::-;660:6;668;721:2;709:9;700:7;696:23;692:32;689:52;;;737:1;734;727:12;689:52;-1:-1:-1;;760:23:1;;;830:2;815:18;;;802:32;;-1:-1:-1;592:248:1:o;845:250::-;930:1;940:113;954:6;951:1;948:13;940:113;;;1030:11;;;1024:18;1011:11;;;1004:39;976:2;969:10;940:113;;;-1:-1:-1;;1087:1:1;1069:16;;1062:27;845:250::o;1100:271::-;1142:3;1180:5;1174:12;1207:6;1202:3;1195:19;1223:76;1292:6;1285:4;1280:3;1276:14;1269:4;1262:5;1258:16;1223:76;:::i;:::-;1353:2;1332:15;-1:-1:-1;;1328:29:1;1319:39;;;;1360:4;1315:50;;1100:271;-1:-1:-1;;1100:271:1:o;1376:220::-;1525:2;1514:9;1507:21;1488:4;1545:45;1586:2;1575:9;1571:18;1563:6;1545:45;:::i;1601:180::-;1660:6;1713:2;1701:9;1692:7;1688:23;1684:32;1681:52;;;1729:1;1726;1719:12;1681:52;-1:-1:-1;1752:23:1;;1601:180;-1:-1:-1;1601:180:1:o;1994:173::-;2062:20;;-1:-1:-1;;;;;2111:31:1;;2101:42;;2091:70;;2157:1;2154;2147:12;2091:70;1994:173;;;:::o;2172:254::-;2240:6;2248;2301:2;2289:9;2280:7;2276:23;2272:32;2269:52;;;2317:1;2314;2307:12;2269:52;2340:29;2359:9;2340:29;:::i;:::-;2330:39;2416:2;2401:18;;;;2388:32;;-1:-1:-1;;;2172:254:1:o;2613:160::-;2678:20;;2734:13;;2727:21;2717:32;;2707:60;;2763:1;2760;2753:12;2778:180;2834:6;2887:2;2875:9;2866:7;2862:23;2858:32;2855:52;;;2903:1;2900;2893:12;2855:52;2926:26;2942:9;2926:26;:::i;2963:328::-;3040:6;3048;3056;3109:2;3097:9;3088:7;3084:23;3080:32;3077:52;;;3125:1;3122;3115:12;3077:52;3148:29;3167:9;3148:29;:::i;:::-;3138:39;;3196:38;3230:2;3219:9;3215:18;3196:38;:::i;:::-;3186:48;;3281:2;3270:9;3266:18;3253:32;3243:42;;2963:328;;;;;:::o;3296:127::-;3357:10;3352:3;3348:20;3345:1;3338:31;3388:4;3385:1;3378:15;3412:4;3409:1;3402:15;3428:275;3499:2;3493:9;3564:2;3545:13;;-1:-1:-1;;3541:27:1;3529:40;;-1:-1:-1;;;;;3584:34:1;;3620:22;;;3581:62;3578:88;;;3646:18;;:::i;:::-;3682:2;3675:22;3428:275;;-1:-1:-1;3428:275:1:o;3708:407::-;3773:5;-1:-1:-1;;;;;3799:6:1;3796:30;3793:56;;;3829:18;;:::i;:::-;3867:57;3912:2;3891:15;;-1:-1:-1;;3887:29:1;3918:4;3883:40;3867:57;:::i;:::-;3858:66;;3947:6;3940:5;3933:21;3987:3;3978:6;3973:3;3969:16;3966:25;3963:45;;;4004:1;4001;3994:12;3963:45;4053:6;4048:3;4041:4;4034:5;4030:16;4017:43;4107:1;4100:4;4091:6;4084:5;4080:18;4076:29;4069:40;3708:407;;;;;:::o;4120:451::-;4189:6;4242:2;4230:9;4221:7;4217:23;4213:32;4210:52;;;4258:1;4255;4248:12;4210:52;4298:9;4285:23;-1:-1:-1;;;;;4323:6:1;4320:30;4317:50;;;4363:1;4360;4353:12;4317:50;4386:22;;4439:4;4431:13;;4427:27;-1:-1:-1;4417:55:1;;4468:1;4465;4458:12;4417:55;4491:74;4557:7;4552:2;4539:16;4534:2;4530;4526:11;4491:74;:::i;4576:186::-;4635:6;4688:2;4676:9;4667:7;4663:23;4659:32;4656:52;;;4704:1;4701;4694:12;4656:52;4727:29;4746:9;4727:29;:::i;4767:254::-;4832:6;4840;4893:2;4881:9;4872:7;4868:23;4864:32;4861:52;;;4909:1;4906;4899:12;4861:52;4932:29;4951:9;4932:29;:::i;:::-;4922:39;;4980:35;5011:2;5000:9;4996:18;4980:35;:::i;:::-;4970:45;;4767:254;;;;;:::o;5026:712::-;5080:5;5133:3;5126:4;5118:6;5114:17;5110:27;5100:55;;5151:1;5148;5141:12;5100:55;5187:6;5174:20;5213:4;-1:-1:-1;;;;;5232:2:1;5229:26;5226:52;;;5258:18;;:::i;:::-;5304:2;5301:1;5297:10;5327:28;5351:2;5347;5343:11;5327:28;:::i;:::-;5389:15;;;5459;;;5455:24;;;5420:12;;;;5491:15;;;5488:35;;;5519:1;5516;5509:12;5488:35;5555:2;5547:6;5543:15;5532:26;;5567:142;5583:6;5578:3;5575:15;5567:142;;;5649:17;;5637:30;;5600:12;;;;5687;;;;5567:142;;;5727:5;5026:712;-1:-1:-1;;;;;;;5026:712:1:o;5743:416::-;5836:6;5844;5897:2;5885:9;5876:7;5872:23;5868:32;5865:52;;;5913:1;5910;5903:12;5865:52;5953:9;5940:23;-1:-1:-1;;;;;5978:6:1;5975:30;5972:50;;;6018:1;6015;6008:12;5972:50;6041:61;6094:7;6085:6;6074:9;6070:22;6041:61;:::i;:::-;6031:71;6149:2;6134:18;;;;6121:32;;-1:-1:-1;;;;5743:416:1:o;6164:667::-;6259:6;6267;6275;6283;6336:3;6324:9;6315:7;6311:23;6307:33;6304:53;;;6353:1;6350;6343:12;6304:53;6376:29;6395:9;6376:29;:::i;:::-;6366:39;;6424:38;6458:2;6447:9;6443:18;6424:38;:::i;:::-;6414:48;;6509:2;6498:9;6494:18;6481:32;6471:42;;6564:2;6553:9;6549:18;6536:32;-1:-1:-1;;;;;6583:6:1;6580:30;6577:50;;;6623:1;6620;6613:12;6577:50;6646:22;;6699:4;6691:13;;6687:27;-1:-1:-1;6677:55:1;;6728:1;6725;6718:12;6677:55;6751:74;6817:7;6812:2;6799:16;6794:2;6790;6786:11;6751:74;:::i;:::-;6741:84;;;6164:667;;;;;;;:::o;7442:260::-;7510:6;7518;7571:2;7559:9;7550:7;7546:23;7542:32;7539:52;;;7587:1;7584;7577:12;7539:52;7610:29;7629:9;7610:29;:::i;:::-;7600:39;;7658:38;7692:2;7681:9;7677:18;7658:38;:::i;7889:356::-;8091:2;8073:21;;;8110:18;;;8103:30;8169:34;8164:2;8149:18;;8142:62;8236:2;8221:18;;7889:356::o;8250:380::-;8329:1;8325:12;;;;8372;;;8393:61;;8447:4;8439:6;8435:17;8425:27;;8393:61;8500:2;8492:6;8489:14;8469:18;8466:38;8463:161;;8546:10;8541:3;8537:20;8534:1;8527:31;8581:4;8578:1;8571:15;8609:4;8606:1;8599:15;8463:161;;8250:380;;;:::o;9111:545::-;9213:2;9208:3;9205:11;9202:448;;;9249:1;9274:5;9270:2;9263:17;9319:4;9315:2;9305:19;9389:2;9377:10;9373:19;9370:1;9366:27;9360:4;9356:38;9425:4;9413:10;9410:20;9407:47;;;-1:-1:-1;9448:4:1;9407:47;9503:2;9498:3;9494:12;9491:1;9487:20;9481:4;9477:31;9467:41;;9558:82;9576:2;9569:5;9566:13;9558:82;;;9621:17;;;9602:1;9591:13;9558:82;;;9562:3;;;9111:545;;;:::o;9832:1352::-;9958:3;9952:10;-1:-1:-1;;;;;9977:6:1;9974:30;9971:56;;;10007:18;;:::i;:::-;10036:97;10126:6;10086:38;10118:4;10112:11;10086:38;:::i;:::-;10080:4;10036:97;:::i;:::-;10188:4;;10252:2;10241:14;;10269:1;10264:663;;;;10971:1;10988:6;10985:89;;;-1:-1:-1;11040:19:1;;;11034:26;10985:89;-1:-1:-1;;9789:1:1;9785:11;;;9781:24;9777:29;9767:40;9813:1;9809:11;;;9764:57;11087:81;;10234:944;;10264:663;9058:1;9051:14;;;9095:4;9082:18;;-1:-1:-1;;10300:20:1;;;10418:236;10432:7;10429:1;10426:14;10418:236;;;10521:19;;;10515:26;10500:42;;10613:27;;;;10581:1;10569:14;;;;10448:19;;10418:236;;;10422:3;10682:6;10673:7;10670:19;10667:201;;;10743:19;;;10737:26;-1:-1:-1;;10826:1:1;10822:14;;;10838:3;10818:24;10814:37;10810:42;10795:58;10780:74;;10667:201;-1:-1:-1;;;;;10914:1:1;10898:14;;;10894:22;10881:36;;-1:-1:-1;9832:1352:1:o;11189:127::-;11250:10;11245:3;11241:20;11238:1;11231:31;11281:4;11278:1;11271:15;11305:4;11302:1;11295:15;11321:125;11386:9;;;11407:10;;;11404:36;;;11420:18;;:::i;13463:168::-;13536:9;;;13567;;13584:15;;;13578:22;;13564:37;13554:71;;13605:18;;:::i;13636:398::-;13838:2;13820:21;;;13877:2;13857:18;;;13850:30;13916:34;13911:2;13896:18;;13889:62;-1:-1:-1;;;13982:2:1;13967:18;;13960:32;14024:3;14009:19;;13636:398::o;14455:663::-;14735:3;14773:6;14767:13;14789:66;14848:6;14843:3;14836:4;14828:6;14824:17;14789:66;:::i;:::-;14918:13;;14877:16;;;;14940:70;14918:13;14877:16;14987:4;14975:17;;14940:70;:::i;:::-;-1:-1:-1;;;15032:20:1;;15061:22;;;15110:1;15099:13;;14455:663;-1:-1:-1;;;;14455:663:1:o;16288:489::-;-1:-1:-1;;;;;16557:15:1;;;16539:34;;16609:15;;16604:2;16589:18;;16582:43;16656:2;16641:18;;16634:34;;;16704:3;16699:2;16684:18;;16677:31;;;16482:4;;16725:46;;16751:19;;16743:6;16725:46;:::i;:::-;16717:54;16288:489;-1:-1:-1;;;;;;16288:489:1:o;16782:249::-;16851:6;16904:2;16892:9;16883:7;16879:23;16875:32;16872:52;;;16920:1;16917;16910:12;16872:52;16952:9;16946:16;16971:30;16995:5;16971:30;:::i;17036:135::-;17075:3;17096:17;;;17093:43;;17116:18;;:::i;:::-;-1:-1:-1;17163:1:1;17152:13;;17036:135::o;17176:127::-;17237:10;17232:3;17228:20;17225:1;17218:31;17268:4;17265:1;17258:15;17292:4;17289:1;17282:15;17308:120;17348:1;17374;17364:35;;17379:18;;:::i;:::-;-1:-1:-1;17413:9:1;;17308:120::o;17433:128::-;17500:9;;;17521:11;;;17518:37;;;17535:18;;:::i;17566:112::-;17598:1;17624;17614:35;;17629:18;;:::i;:::-;-1:-1:-1;17663:9:1;;17566:112::o;17683:127::-;17744:10;17739:3;17735:20;17732:1;17725:31;17775:4;17772:1;17765:15;17799:4;17796:1;17789:15

Swarm Source

ipfs://35bcba4ba847a5845c1baa433345a027e42578daadaef0738837903671da06d4
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.