ETH Price: $3,269.88 (+0.63%)
Gas: 1 Gwei

Token

Nubbies (NS)
 

Overview

Max Total Supply

999 NS

Holders

286

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
0 NS
0x7778f1a14a2bfd183763ffd70cbd567d575b1322
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A collection of 999 Fully animated NFTs lost on the Ethereum blockchain designed by hand with love and passion from a team in Thailand.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Nubbies

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-28
*/

// SPDX-License-Identifier: MIT
// 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/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: @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);
    }
}

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


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

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// 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 v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/contracts/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: contracts/tgc1.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)
        }
    }
}

// Creator: Chiru Labs

pragma solidity ^0.8.4;











error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 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**128 - 1 (max value of uint128).
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

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

    // Compiler will pack the following 
    // _currentIndex and _burnCounter into a single 256bit word.
    
    // The tokenId of the next token to be minted.
    uint128 internal _currentIndex;

    // The number of tokens burned.
    uint128 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_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).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);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * 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 (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 = ERC721.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !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 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 (!_checkOnERC721Received(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 tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    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 {
        _mint(to, quantity, _data, true);
    }

    /**
     * @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,
        bytes memory _data,
        bool safe
    ) 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 > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 3.4e38 (2**128) - 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;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _currentIndex = uint128(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);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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**128.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // 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**128.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, 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 address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert TransferToNonERC721ReceiverImplementer();
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

    pragma solidity ^0.8.7;
    contract Nubbies is ERC721,  Ownable {
    using Strings for uint256;


  string private uriPrefix = "";
  string private uriSuffix = ".json";
  string public hiddenMetadataUri;

  
  

  uint256 public cost = 0.098 ether;
  uint256 public whiteListCost = 0.098 ether;

  uint8 public maxWLMintAmountPerWallet = 1;  
 
  mapping (address => uint8) public txPerAddress;
  uint16 public constant maxSupply = 999;
  uint8 public maxMintAmountPerTx = 1;
                                                             
  bool public WLpaused = true;
  bool public paused = true;
  bool public reveal = false;


  
  bytes32 public whitelistMerkleRoot = 0x0;
  

  constructor() ERC721("Nubbies", "NS") {

  }
 
  function mint(uint8 _mintAmount) external payable  {
    uint totalSupply = totalSupply();
    require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply.");
    require (txPerAddress[msg.sender] + _mintAmount <= maxMintAmountPerTx, "Exceeds max tx per address");

    require(!paused, "The contract is paused!");
    require(msg.value == cost * _mintAmount, "Insufficient funds!");

    _safeMint(msg.sender , _mintAmount);
      txPerAddress[msg.sender] += _mintAmount;
     
     delete totalSupply;
     delete _mintAmount;
  }
  
  function Reserve(uint16 _mintAmount, address _receiver) external onlyOwner {
    uint totalSupply = totalSupply();
    require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply.");
     _safeMint(msg.sender , _mintAmount);
     delete _mintAmount;
     delete _receiver;
     delete totalSupply;
  }
 

  function burn(uint _tokenID) external onlyOwner {
      _burn(_tokenID);
  }


   
  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
  
     if (reveal == false)
     {
        return hiddenMetadataUri;
     }
    

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : "";
  }
 
   function setWLPaused() external onlyOwner {
    WLpaused = !WLpaused;
  }
   function setReveal() external onlyOwner {
    reveal = !reveal;
  }
  function setWLCost(uint256 _cost) external onlyOwner {
    whiteListCost = _cost;
    delete _cost;
  }
  function setMaxTxPerWlAddress(uint8 _limit) external onlyOwner{
    maxWLMintAmountPerWallet = _limit;
   delete _limit;

}
function setWhitelistMerkleRoot(bytes32 _whitelistMerkleRoot) external onlyOwner {
        whitelistMerkleRoot = _whitelistMerkleRoot;
    }

    
    function getLeafNode(address _leaf) internal pure returns (bytes32 temp)
    {
        return keccak256(abi.encodePacked(_leaf));
    }
    function _verify(bytes32 leaf, bytes32[] memory proof) internal view returns (bool) {
        return MerkleProof.verify(proof, whitelistMerkleRoot, leaf);
    }

function whitelistMint(uint8 _mintAmount, bytes32[] calldata merkleProof) external payable {
        
       bytes32  leafnode = getLeafNode(msg.sender);
       require(_verify(leafnode ,   merkleProof   ),  "Invalid merkle proof");
       require (txPerAddress[msg.sender] + _mintAmount <= maxWLMintAmountPerWallet, "Exceeds max tx per address");
      


    require(!WLpaused, "Whitelist minting is over!");
    require(msg.value == whiteListCost * _mintAmount, "Insufficient funds!");

      uint totalSupply = totalSupply();
     _safeMint(msg.sender , _mintAmount);
      txPerAddress[msg.sender] += _mintAmount;
      delete totalSupply;
      delete _mintAmount;
      
    
    }

  function setUriPrefix(string memory _uriPrefix) external onlyOwner {
    uriPrefix = _uriPrefix;
  }
  function setHiddenMetaDataUri(string memory _uri) external onlyOwner {
    hiddenMetadataUri = _uri;
  }


  function setPaused() external onlyOwner {
    paused = !paused;
  }

  function setCost(uint _cost) external onlyOwner{
      cost = _cost;

  }


  function setMaxMintAmountPerTx(uint8 _maxtx) external onlyOwner{
      maxMintAmountPerTx = _maxtx;

  }

 

  function withdraw() external onlyOwner {
  uint _balance = address(this).balance;
     payable(0xb4E1B31Ea2395353A92c787fC0b591D6eD1E9E61).transfer(_balance * 70/100);
     payable(0x82418494Ab7F2fd60DA242D336a160CcAF4B2e2C).transfer(_balance * 30/100);
  }


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

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":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","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":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"WLpaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenID","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxMintAmountPerTx","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWLMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setHiddenMetaDataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxtx","type":"uint8"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setMaxTxPerWlAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setWLCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setWLPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistMerkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"txPerAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whiteListCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b9160089162000166565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a9160099162000166565b5067015c2a7b13fd0000600b819055600c55600d805460ff19166001179055600f805463ffffffff19166201010117905560006010553480156200008d57600080fd5b5060408051808201825260078152664e75626269657360c81b6020808301918252835180850190945260028452614e5360f01b908401528151919291620000d79160019162000166565b508051620000ed90600290602084019062000166565b5050506200010a620001046200011060201b60201c565b62000114565b62000249565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000174906200020c565b90600052602060002090601f016020900481019282620001985760008555620001e3565b82601f10620001b357805160ff1916838001178555620001e3565b82800160010185558215620001e3579182015b82811115620001e3578251825591602001919060010190620001c6565b50620001f1929150620001f5565b5090565b5b80821115620001f15760008155600101620001f6565b600181811c908216806200022157607f821691505b602082108114156200024357634e487b7160e01b600052602260045260246000fd5b50919050565b61296280620002596000396000f3fe6080604052600436106102725760003560e01c80636ecd23061161014f578063a22cb465116100c1578063bd32fb661161007a578063bd32fb661461071a578063c87b56dd1461073a578063d1d192131461075a578063d5abeb011461077a578063e985e9c5146107a3578063f2fde38b146107ec57600080fd5b8063a22cb4651461066e578063a45ba8e71461068e578063a475b5dd146106a3578063aa062290146106c4578063aa98e0c6146106e4578063b88d4fde146106fa57600080fd5b80637f6e9093116101135780637f6e9093146105cc5780638da5cb5b146105eb5780639257e0441461060957806394354fd01461061f57806395d89b4114610639578063980ee73e1461064e57600080fd5b80636ecd23061461054f57806370a0823114610562578063715018a61461058257806376645315146105975780637ec4a659146105ac57600080fd5b806337a66d85116101e85780634f6ccce7116101ac5780634f6ccce7146104a2578063506c2030146104c257806358381669146104dc5780635c975abb146104ef5780636352211e1461050f57806363937fe01461052f57600080fd5b806337a66d85146104185780633ccfd60b1461042d57806342842e0e1461044257806342966c681461046257806344a0d68a1461048257600080fd5b806313faede61161023a57806313faede61461033d57806318160ddd1461036157806323b872dd146103765780632f6f98e1146103965780632f745c59146103b65780633794a093146103d657600080fd5b806301ffc9a71461027757806306fdde03146102ac578063081812fc146102ce578063093cfa6314610306578063095ea7b31461031d575b600080fd5b34801561028357600080fd5b506102976102923660046124e5565b61080c565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c1610879565b6040516102a39190612759565b3480156102da57600080fd5b506102ee6102e93660046124cc565b61090b565b6040516001600160a01b0390911681526020016102a3565b34801561031257600080fd5b5061031b61094f565b005b34801561032957600080fd5b5061031b6103383660046124a2565b61099f565b34801561034957600080fd5b50610353600b5481565b6040519081526020016102a3565b34801561036d57600080fd5b50610353610a2d565b34801561038257600080fd5b5061031b6103913660046123af565b610a4c565b3480156103a257600080fd5b5061031b6103b1366004612567565b610a57565b3480156103c257600080fd5b506103536103d13660046124a2565b610af0565b3480156103e257600080fd5b506104066103f1366004612361565b600e6020526000908152604090205460ff1681565b60405160ff90911681526020016102a3565b34801561042457600080fd5b5061031b610bec565b34801561043957600080fd5b5061031b610c35565b34801561044e57600080fd5b5061031b61045d3660046123af565b610d13565b34801561046e57600080fd5b5061031b61047d3660046124cc565b610d2e565b34801561048e57600080fd5b5061031b61049d3660046124cc565b610d64565b3480156104ae57600080fd5b506103536104bd3660046124cc565b610d93565b3480156104ce57600080fd5b50600d546104069060ff1681565b61031b6104ea3660046125a7565b610e3d565b3480156104fb57600080fd5b50600f546102979062010000900460ff1681565b34801561051b57600080fd5b506102ee61052a3660046124cc565b611079565b34801561053b57600080fd5b5061031b61054a36600461258c565b61108b565b61031b61055d36600461258c565b6110cb565b34801561056e57600080fd5b5061035361057d366004612361565b6112a2565b34801561058e57600080fd5b5061031b6112f0565b3480156105a357600080fd5b5061031b611326565b3480156105b857600080fd5b5061031b6105c736600461251f565b611371565b3480156105d857600080fd5b50600f5461029790610100900460ff1681565b3480156105f757600080fd5b506007546001600160a01b03166102ee565b34801561061557600080fd5b50610353600c5481565b34801561062b57600080fd5b50600f546104069060ff1681565b34801561064557600080fd5b506102c16113ae565b34801561065a57600080fd5b5061031b61066936600461251f565b6113bd565b34801561067a57600080fd5b5061031b610689366004612466565b6113fa565b34801561069a57600080fd5b506102c1611490565b3480156106af57600080fd5b50600f54610297906301000000900460ff1681565b3480156106d057600080fd5b5061031b6106df36600461258c565b61151e565b3480156106f057600080fd5b5061035360105481565b34801561070657600080fd5b5061031b6107153660046123eb565b61155e565b34801561072657600080fd5b5061031b6107353660046124cc565b611598565b34801561074657600080fd5b506102c16107553660046124cc565b6115c7565b34801561076657600080fd5b5061031b6107753660046124cc565b611738565b34801561078657600080fd5b506107906103e781565b60405161ffff90911681526020016102a3565b3480156107af57600080fd5b506102976107be36600461237c565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156107f857600080fd5b5061031b610807366004612361565b611767565b60006001600160e01b031982166380ac58cd60e01b148061083d57506001600160e01b03198216635b5e139f60e01b145b8061085857506001600160e01b0319821663780e9d6360e01b145b8061087357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461088890612854565b80601f01602080910402602001604051908101604052809291908181526020018280546108b490612854565b80156109015780601f106108d657610100808354040283529160200191610901565b820191906000526020600020905b8154815290600101906020018083116108e457829003601f168201915b5050505050905090565b6000610916826117ff565b610933576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6007546001600160a01b031633146109825760405162461bcd60e51b81526004016109799061276c565b60405180910390fd5b600f805461ff001981166101009182900460ff1615909102179055565b60006109aa82611079565b9050806001600160a01b0316836001600160a01b031614156109df5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109ff57506109fd81336107be565b155b15610a1d576040516367d9dca160e11b815260040160405180910390fd5b610a28838383611833565b505050565b6000546001600160801b03600160801b82048116918116919091031690565b610a2883838361188f565b6007546001600160a01b03163314610a815760405162461bcd60e51b81526004016109799061276c565b6000610a8b610a2d565b90506103e7610a9e61ffff8516836127a1565b1115610ae25760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b6044820152606401610979565b610a28338461ffff16611aac565b6000610afb836112a2565b8210610b1a576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b83811015610be657600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610b925750610bde565b80516001600160a01b031615610ba757805192505b876001600160a01b0316836001600160a01b03161415610bdc5786841415610bd55750935061087392505050565b6001909301925b505b600101610b2b565b50600080fd5b6007546001600160a01b03163314610c165760405162461bcd60e51b81526004016109799061276c565b600f805462ff0000198116620100009182900460ff1615909102179055565b6007546001600160a01b03163314610c5f5760405162461bcd60e51b81526004016109799061276c565b4773b4e1b31ea2395353a92c787fc0b591d6ed1e9e616108fc6064610c858460466127f2565b610c8f91906127de565b6040518115909202916000818181858888f19350505050158015610cb7573d6000803e3d6000fd5b507382418494ab7f2fd60da242d336a160ccaf4b2e2c6108fc6064610cdd84601e6127f2565b610ce791906127de565b6040518115909202916000818181858888f19350505050158015610d0f573d6000803e3d6000fd5b5050565b610a288383836040518060200160405280600081525061155e565b6007546001600160a01b03163314610d585760405162461bcd60e51b81526004016109799061276c565b610d6181611ac6565b50565b6007546001600160a01b03163314610d8e5760405162461bcd60e51b81526004016109799061276c565b600b55565b600080546001600160801b031681805b82811015610e2357600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610e1a5785831415610e135750949350505050565b6001909201915b50600101610da3565b506040516329c8c00760e21b815260040160405180910390fd5b604080513360601b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120610eb181848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250611c6992505050565b610ef45760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b6044820152606401610979565b600d54336000908152600e602052604090205460ff91821691610f19918791166127b9565b60ff161115610f6a5760405162461bcd60e51b815260206004820152601a60248201527f45786365656473206d61782074782070657220616464726573730000000000006044820152606401610979565b600f54610100900460ff1615610fc25760405162461bcd60e51b815260206004820152601a60248201527f57686974656c697374206d696e74696e67206973206f766572210000000000006044820152606401610979565b8360ff16600c54610fd391906127f2565b34146110175760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610979565b6000611021610a2d565b9050611030338660ff16611aac565b336000908152600e60205260408120805487929061105290849060ff166127b9565b92506101000a81548160ff021916908360ff16021790555060009050600094505050505050565b600061108482611c78565b5192915050565b6007546001600160a01b031633146110b55760405162461bcd60e51b81526004016109799061276c565b600d805460ff191660ff92909216919091179055565b60006110d5610a2d565b90506103e76110e760ff8416836127a1565b111561112b5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b6044820152606401610979565b600f54336000908152600e602052604090205460ff91821691611150918591166127b9565b60ff1611156111a15760405162461bcd60e51b815260206004820152601a60248201527f45786365656473206d61782074782070657220616464726573730000000000006044820152606401610979565b600f5462010000900460ff16156111fa5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610979565b8160ff16600b5461120b91906127f2565b341461124f5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610979565b61125c338360ff16611aac565b336000908152600e60205260408120805484929061127e90849060ff166127b9565b92506101000a81548160ff021916908360ff16021790555060009050600091505050565b60006001600160a01b0382166112cb576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b6007546001600160a01b0316331461131a5760405162461bcd60e51b81526004016109799061276c565b6113246000611d9a565b565b6007546001600160a01b031633146113505760405162461bcd60e51b81526004016109799061276c565b600f805463ff00000019811663010000009182900460ff1615909102179055565b6007546001600160a01b0316331461139b5760405162461bcd60e51b81526004016109799061276c565b8051610d0f906008906020840190612226565b60606002805461088890612854565b6007546001600160a01b031633146113e75760405162461bcd60e51b81526004016109799061276c565b8051610d0f90600a906020840190612226565b6001600160a01b0382163314156114245760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a805461149d90612854565b80601f01602080910402602001604051908101604052809291908181526020018280546114c990612854565b80156115165780601f106114eb57610100808354040283529160200191611516565b820191906000526020600020905b8154815290600101906020018083116114f957829003601f168201915b505050505081565b6007546001600160a01b031633146115485760405162461bcd60e51b81526004016109799061276c565b600f805460ff191660ff92909216919091179055565b61156984848461188f565b61157584848484611dec565b611592576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6007546001600160a01b031633146115c25760405162461bcd60e51b81526004016109799061276c565b601055565b60606115d2826117ff565b6116365760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610979565b600f546301000000900460ff166116d957600a805461165490612854565b80601f016020809104026020016040519081016040528092919081815260200182805461168090612854565b80156116cd5780601f106116a2576101008083540402835291602001916116cd565b820191906000526020600020905b8154815290600101906020018083116116b057829003601f168201915b50505050509050919050565b60006116e3611efb565b905060008151116117035760405180602001604052806000815250611731565b8061170d84611f0a565b600960405160200161172193929190612658565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146117625760405162461bcd60e51b81526004016109799061276c565b600c55565b6007546001600160a01b031633146117915760405162461bcd60e51b81526004016109799061276c565b6001600160a01b0381166117f65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610979565b610d6181611d9a565b600080546001600160801b031682108015610873575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061189a82611c78565b80519091506000906001600160a01b0316336001600160a01b031614806118c8575081516118c890336107be565b806118e35750336118d88461090b565b6001600160a01b0316145b90508061190357604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146119385760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661195f57604051633a954ecd60e21b815260040160405180910390fd5b61196f6000848460000151611833565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611a62576000546001600160801b0316811015611a6257825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610d0f828260405180602001604052806000815250612007565b6000611ad182611c78565b9050611ae36000838360000151611833565b80516001600160a01b039081166000908152600460209081526040808320805467ffffffffffffffff1981166001600160401b0391821660001901821617909155855185168452818420805467ffffffffffffffff60801b198116600160801b9182900484166001908101851690920217909155865188865260039094528285208054600160e01b9588166001600160e01b031990911617600160a01b42909416939093029290921760ff60e01b1916939093179055908501808352912054909116611c03576000546001600160801b0316811015611c0357815160008281526003602090815260409091208054918501516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b50805160405183916000916001600160a01b03909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a450506000805460016001600160801b03600160801b80840482169290920181169091029116179055565b60006117318260105485612014565b60408051606081018252600080825260208201819052918101829052905482906001600160801b0316811015611d8157600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611d7f5780516001600160a01b031615611d16579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611d7a579392505050565b611d16565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611eef57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e3090339089908890889060040161271c565b602060405180830381600087803b158015611e4a57600080fd5b505af1925050508015611e7a575060408051601f3d908101601f19168201909252611e7791810190612502565b60015b611ed5573d808015611ea8576040519150601f19603f3d011682016040523d82523d6000602084013e611ead565b606091505b508051611ecd576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ef3565b5060015b949350505050565b60606008805461088890612854565b606081611f2e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f585780611f428161288f565b9150611f519050600a836127de565b9150611f32565b6000816001600160401b03811115611f7257611f72612900565b6040519080825280601f01601f191660200182016040528015611f9c576020820181803683370190505b5090505b8415611ef357611fb1600183612811565b9150611fbe600a866128aa565b611fc99060306127a1565b60f81b818381518110611fde57611fde6128ea565b60200101906001600160f81b031916908160001a905350612000600a866127de565b9450611fa0565b610a28838383600161202a565b60008261202185846121b2565b14949350505050565b6000546001600160801b03166001600160a01b03851661205c57604051622e076360e81b815260040160405180910390fd5b8361207a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b8581101561218c5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483801561216257506121606000888488611dec565b155b15612180576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910161210b565b50600080546001600160801b0319166001600160801b0392909216919091179055611aa5565b600081815b845181101561221e5760008582815181106121d4576121d46128ea565b602002602001015190508083116121fa576000838152602082905260409020925061220b565b600081815260208490526040902092505b50806122168161288f565b9150506121b7565b509392505050565b82805461223290612854565b90600052602060002090601f016020900481019282612254576000855561229a565b82601f1061226d57805160ff191683800117855561229a565b8280016001018555821561229a579182015b8281111561229a57825182559160200191906001019061227f565b506122a69291506122aa565b5090565b5b808211156122a657600081556001016122ab565b60006001600160401b03808411156122d9576122d9612900565b604051601f8501601f19908116603f0116810190828211818310171561230157612301612900565b8160405280935085815286868601111561231a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461234b57600080fd5b919050565b803560ff8116811461234b57600080fd5b60006020828403121561237357600080fd5b61173182612334565b6000806040838503121561238f57600080fd5b61239883612334565b91506123a660208401612334565b90509250929050565b6000806000606084860312156123c457600080fd5b6123cd84612334565b92506123db60208501612334565b9150604084013590509250925092565b6000806000806080858703121561240157600080fd5b61240a85612334565b935061241860208601612334565b92506040850135915060608501356001600160401b0381111561243a57600080fd5b8501601f8101871361244b57600080fd5b61245a878235602084016122bf565b91505092959194509250565b6000806040838503121561247957600080fd5b61248283612334565b91506020830135801515811461249757600080fd5b809150509250929050565b600080604083850312156124b557600080fd5b6124be83612334565b946020939093013593505050565b6000602082840312156124de57600080fd5b5035919050565b6000602082840312156124f757600080fd5b813561173181612916565b60006020828403121561251457600080fd5b815161173181612916565b60006020828403121561253157600080fd5b81356001600160401b0381111561254757600080fd5b8201601f8101841361255857600080fd5b611ef3848235602084016122bf565b6000806040838503121561257a57600080fd5b823561ffff8116811461239857600080fd5b60006020828403121561259e57600080fd5b61173182612350565b6000806000604084860312156125bc57600080fd5b6125c584612350565b925060208401356001600160401b03808211156125e157600080fd5b818601915086601f8301126125f557600080fd5b81358181111561260457600080fd5b8760208260051b850101111561261957600080fd5b6020830194508093505050509250925092565b60008151808452612644816020860160208601612828565b601f01601f19169290920160200192915050565b60008451602061266b8285838a01612828565b85519184019161267e8184848a01612828565b8554920191600090600181811c908083168061269b57607f831692505b8583108114156126b957634e487b7160e01b85526022600452602485fd5b8080156126cd57600181146126de5761270b565b60ff1985168852838801955061270b565b60008b81526020902060005b858110156127035781548a8201529084019088016126ea565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061274f9083018461262c565b9695505050505050565b602081526000611731602083018461262c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156127b4576127b46128be565b500190565b600060ff821660ff84168060ff038211156127d6576127d66128be565b019392505050565b6000826127ed576127ed6128d4565b500490565b600081600019048311821515161561280c5761280c6128be565b500290565b600082821015612823576128236128be565b500390565b60005b8381101561284357818101518382015260200161282b565b838111156115925750506000910152565b600181811c9082168061286857607f821691505b6020821081141561288957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128a3576128a36128be565b5060010190565b6000826128b9576128b96128d4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d6157600080fdfea2646970667358221220db2a45a91909d9c7a393c332d5c23e96174dc693c6955b5c95e3b85aae5a55d964736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102725760003560e01c80636ecd23061161014f578063a22cb465116100c1578063bd32fb661161007a578063bd32fb661461071a578063c87b56dd1461073a578063d1d192131461075a578063d5abeb011461077a578063e985e9c5146107a3578063f2fde38b146107ec57600080fd5b8063a22cb4651461066e578063a45ba8e71461068e578063a475b5dd146106a3578063aa062290146106c4578063aa98e0c6146106e4578063b88d4fde146106fa57600080fd5b80637f6e9093116101135780637f6e9093146105cc5780638da5cb5b146105eb5780639257e0441461060957806394354fd01461061f57806395d89b4114610639578063980ee73e1461064e57600080fd5b80636ecd23061461054f57806370a0823114610562578063715018a61461058257806376645315146105975780637ec4a659146105ac57600080fd5b806337a66d85116101e85780634f6ccce7116101ac5780634f6ccce7146104a2578063506c2030146104c257806358381669146104dc5780635c975abb146104ef5780636352211e1461050f57806363937fe01461052f57600080fd5b806337a66d85146104185780633ccfd60b1461042d57806342842e0e1461044257806342966c681461046257806344a0d68a1461048257600080fd5b806313faede61161023a57806313faede61461033d57806318160ddd1461036157806323b872dd146103765780632f6f98e1146103965780632f745c59146103b65780633794a093146103d657600080fd5b806301ffc9a71461027757806306fdde03146102ac578063081812fc146102ce578063093cfa6314610306578063095ea7b31461031d575b600080fd5b34801561028357600080fd5b506102976102923660046124e5565b61080c565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c1610879565b6040516102a39190612759565b3480156102da57600080fd5b506102ee6102e93660046124cc565b61090b565b6040516001600160a01b0390911681526020016102a3565b34801561031257600080fd5b5061031b61094f565b005b34801561032957600080fd5b5061031b6103383660046124a2565b61099f565b34801561034957600080fd5b50610353600b5481565b6040519081526020016102a3565b34801561036d57600080fd5b50610353610a2d565b34801561038257600080fd5b5061031b6103913660046123af565b610a4c565b3480156103a257600080fd5b5061031b6103b1366004612567565b610a57565b3480156103c257600080fd5b506103536103d13660046124a2565b610af0565b3480156103e257600080fd5b506104066103f1366004612361565b600e6020526000908152604090205460ff1681565b60405160ff90911681526020016102a3565b34801561042457600080fd5b5061031b610bec565b34801561043957600080fd5b5061031b610c35565b34801561044e57600080fd5b5061031b61045d3660046123af565b610d13565b34801561046e57600080fd5b5061031b61047d3660046124cc565b610d2e565b34801561048e57600080fd5b5061031b61049d3660046124cc565b610d64565b3480156104ae57600080fd5b506103536104bd3660046124cc565b610d93565b3480156104ce57600080fd5b50600d546104069060ff1681565b61031b6104ea3660046125a7565b610e3d565b3480156104fb57600080fd5b50600f546102979062010000900460ff1681565b34801561051b57600080fd5b506102ee61052a3660046124cc565b611079565b34801561053b57600080fd5b5061031b61054a36600461258c565b61108b565b61031b61055d36600461258c565b6110cb565b34801561056e57600080fd5b5061035361057d366004612361565b6112a2565b34801561058e57600080fd5b5061031b6112f0565b3480156105a357600080fd5b5061031b611326565b3480156105b857600080fd5b5061031b6105c736600461251f565b611371565b3480156105d857600080fd5b50600f5461029790610100900460ff1681565b3480156105f757600080fd5b506007546001600160a01b03166102ee565b34801561061557600080fd5b50610353600c5481565b34801561062b57600080fd5b50600f546104069060ff1681565b34801561064557600080fd5b506102c16113ae565b34801561065a57600080fd5b5061031b61066936600461251f565b6113bd565b34801561067a57600080fd5b5061031b610689366004612466565b6113fa565b34801561069a57600080fd5b506102c1611490565b3480156106af57600080fd5b50600f54610297906301000000900460ff1681565b3480156106d057600080fd5b5061031b6106df36600461258c565b61151e565b3480156106f057600080fd5b5061035360105481565b34801561070657600080fd5b5061031b6107153660046123eb565b61155e565b34801561072657600080fd5b5061031b6107353660046124cc565b611598565b34801561074657600080fd5b506102c16107553660046124cc565b6115c7565b34801561076657600080fd5b5061031b6107753660046124cc565b611738565b34801561078657600080fd5b506107906103e781565b60405161ffff90911681526020016102a3565b3480156107af57600080fd5b506102976107be36600461237c565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156107f857600080fd5b5061031b610807366004612361565b611767565b60006001600160e01b031982166380ac58cd60e01b148061083d57506001600160e01b03198216635b5e139f60e01b145b8061085857506001600160e01b0319821663780e9d6360e01b145b8061087357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461088890612854565b80601f01602080910402602001604051908101604052809291908181526020018280546108b490612854565b80156109015780601f106108d657610100808354040283529160200191610901565b820191906000526020600020905b8154815290600101906020018083116108e457829003601f168201915b5050505050905090565b6000610916826117ff565b610933576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6007546001600160a01b031633146109825760405162461bcd60e51b81526004016109799061276c565b60405180910390fd5b600f805461ff001981166101009182900460ff1615909102179055565b60006109aa82611079565b9050806001600160a01b0316836001600160a01b031614156109df5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109ff57506109fd81336107be565b155b15610a1d576040516367d9dca160e11b815260040160405180910390fd5b610a28838383611833565b505050565b6000546001600160801b03600160801b82048116918116919091031690565b610a2883838361188f565b6007546001600160a01b03163314610a815760405162461bcd60e51b81526004016109799061276c565b6000610a8b610a2d565b90506103e7610a9e61ffff8516836127a1565b1115610ae25760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b6044820152606401610979565b610a28338461ffff16611aac565b6000610afb836112a2565b8210610b1a576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b83811015610be657600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610b925750610bde565b80516001600160a01b031615610ba757805192505b876001600160a01b0316836001600160a01b03161415610bdc5786841415610bd55750935061087392505050565b6001909301925b505b600101610b2b565b50600080fd5b6007546001600160a01b03163314610c165760405162461bcd60e51b81526004016109799061276c565b600f805462ff0000198116620100009182900460ff1615909102179055565b6007546001600160a01b03163314610c5f5760405162461bcd60e51b81526004016109799061276c565b4773b4e1b31ea2395353a92c787fc0b591d6ed1e9e616108fc6064610c858460466127f2565b610c8f91906127de565b6040518115909202916000818181858888f19350505050158015610cb7573d6000803e3d6000fd5b507382418494ab7f2fd60da242d336a160ccaf4b2e2c6108fc6064610cdd84601e6127f2565b610ce791906127de565b6040518115909202916000818181858888f19350505050158015610d0f573d6000803e3d6000fd5b5050565b610a288383836040518060200160405280600081525061155e565b6007546001600160a01b03163314610d585760405162461bcd60e51b81526004016109799061276c565b610d6181611ac6565b50565b6007546001600160a01b03163314610d8e5760405162461bcd60e51b81526004016109799061276c565b600b55565b600080546001600160801b031681805b82811015610e2357600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610e1a5785831415610e135750949350505050565b6001909201915b50600101610da3565b506040516329c8c00760e21b815260040160405180910390fd5b604080513360601b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120610eb181848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250611c6992505050565b610ef45760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b6044820152606401610979565b600d54336000908152600e602052604090205460ff91821691610f19918791166127b9565b60ff161115610f6a5760405162461bcd60e51b815260206004820152601a60248201527f45786365656473206d61782074782070657220616464726573730000000000006044820152606401610979565b600f54610100900460ff1615610fc25760405162461bcd60e51b815260206004820152601a60248201527f57686974656c697374206d696e74696e67206973206f766572210000000000006044820152606401610979565b8360ff16600c54610fd391906127f2565b34146110175760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610979565b6000611021610a2d565b9050611030338660ff16611aac565b336000908152600e60205260408120805487929061105290849060ff166127b9565b92506101000a81548160ff021916908360ff16021790555060009050600094505050505050565b600061108482611c78565b5192915050565b6007546001600160a01b031633146110b55760405162461bcd60e51b81526004016109799061276c565b600d805460ff191660ff92909216919091179055565b60006110d5610a2d565b90506103e76110e760ff8416836127a1565b111561112b5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b6044820152606401610979565b600f54336000908152600e602052604090205460ff91821691611150918591166127b9565b60ff1611156111a15760405162461bcd60e51b815260206004820152601a60248201527f45786365656473206d61782074782070657220616464726573730000000000006044820152606401610979565b600f5462010000900460ff16156111fa5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610979565b8160ff16600b5461120b91906127f2565b341461124f5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610979565b61125c338360ff16611aac565b336000908152600e60205260408120805484929061127e90849060ff166127b9565b92506101000a81548160ff021916908360ff16021790555060009050600091505050565b60006001600160a01b0382166112cb576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b6007546001600160a01b0316331461131a5760405162461bcd60e51b81526004016109799061276c565b6113246000611d9a565b565b6007546001600160a01b031633146113505760405162461bcd60e51b81526004016109799061276c565b600f805463ff00000019811663010000009182900460ff1615909102179055565b6007546001600160a01b0316331461139b5760405162461bcd60e51b81526004016109799061276c565b8051610d0f906008906020840190612226565b60606002805461088890612854565b6007546001600160a01b031633146113e75760405162461bcd60e51b81526004016109799061276c565b8051610d0f90600a906020840190612226565b6001600160a01b0382163314156114245760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a805461149d90612854565b80601f01602080910402602001604051908101604052809291908181526020018280546114c990612854565b80156115165780601f106114eb57610100808354040283529160200191611516565b820191906000526020600020905b8154815290600101906020018083116114f957829003601f168201915b505050505081565b6007546001600160a01b031633146115485760405162461bcd60e51b81526004016109799061276c565b600f805460ff191660ff92909216919091179055565b61156984848461188f565b61157584848484611dec565b611592576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6007546001600160a01b031633146115c25760405162461bcd60e51b81526004016109799061276c565b601055565b60606115d2826117ff565b6116365760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610979565b600f546301000000900460ff166116d957600a805461165490612854565b80601f016020809104026020016040519081016040528092919081815260200182805461168090612854565b80156116cd5780601f106116a2576101008083540402835291602001916116cd565b820191906000526020600020905b8154815290600101906020018083116116b057829003601f168201915b50505050509050919050565b60006116e3611efb565b905060008151116117035760405180602001604052806000815250611731565b8061170d84611f0a565b600960405160200161172193929190612658565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146117625760405162461bcd60e51b81526004016109799061276c565b600c55565b6007546001600160a01b031633146117915760405162461bcd60e51b81526004016109799061276c565b6001600160a01b0381166117f65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610979565b610d6181611d9a565b600080546001600160801b031682108015610873575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061189a82611c78565b80519091506000906001600160a01b0316336001600160a01b031614806118c8575081516118c890336107be565b806118e35750336118d88461090b565b6001600160a01b0316145b90508061190357604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146119385760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661195f57604051633a954ecd60e21b815260040160405180910390fd5b61196f6000848460000151611833565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611a62576000546001600160801b0316811015611a6257825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610d0f828260405180602001604052806000815250612007565b6000611ad182611c78565b9050611ae36000838360000151611833565b80516001600160a01b039081166000908152600460209081526040808320805467ffffffffffffffff1981166001600160401b0391821660001901821617909155855185168452818420805467ffffffffffffffff60801b198116600160801b9182900484166001908101851690920217909155865188865260039094528285208054600160e01b9588166001600160e01b031990911617600160a01b42909416939093029290921760ff60e01b1916939093179055908501808352912054909116611c03576000546001600160801b0316811015611c0357815160008281526003602090815260409091208054918501516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b50805160405183916000916001600160a01b03909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a450506000805460016001600160801b03600160801b80840482169290920181169091029116179055565b60006117318260105485612014565b60408051606081018252600080825260208201819052918101829052905482906001600160801b0316811015611d8157600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611d7f5780516001600160a01b031615611d16579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611d7a579392505050565b611d16565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611eef57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e3090339089908890889060040161271c565b602060405180830381600087803b158015611e4a57600080fd5b505af1925050508015611e7a575060408051601f3d908101601f19168201909252611e7791810190612502565b60015b611ed5573d808015611ea8576040519150601f19603f3d011682016040523d82523d6000602084013e611ead565b606091505b508051611ecd576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ef3565b5060015b949350505050565b60606008805461088890612854565b606081611f2e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f585780611f428161288f565b9150611f519050600a836127de565b9150611f32565b6000816001600160401b03811115611f7257611f72612900565b6040519080825280601f01601f191660200182016040528015611f9c576020820181803683370190505b5090505b8415611ef357611fb1600183612811565b9150611fbe600a866128aa565b611fc99060306127a1565b60f81b818381518110611fde57611fde6128ea565b60200101906001600160f81b031916908160001a905350612000600a866127de565b9450611fa0565b610a28838383600161202a565b60008261202185846121b2565b14949350505050565b6000546001600160801b03166001600160a01b03851661205c57604051622e076360e81b815260040160405180910390fd5b8361207a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b8581101561218c5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483801561216257506121606000888488611dec565b155b15612180576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910161210b565b50600080546001600160801b0319166001600160801b0392909216919091179055611aa5565b600081815b845181101561221e5760008582815181106121d4576121d46128ea565b602002602001015190508083116121fa576000838152602082905260409020925061220b565b600081815260208490526040902092505b50806122168161288f565b9150506121b7565b509392505050565b82805461223290612854565b90600052602060002090601f016020900481019282612254576000855561229a565b82601f1061226d57805160ff191683800117855561229a565b8280016001018555821561229a579182015b8281111561229a57825182559160200191906001019061227f565b506122a69291506122aa565b5090565b5b808211156122a657600081556001016122ab565b60006001600160401b03808411156122d9576122d9612900565b604051601f8501601f19908116603f0116810190828211818310171561230157612301612900565b8160405280935085815286868601111561231a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461234b57600080fd5b919050565b803560ff8116811461234b57600080fd5b60006020828403121561237357600080fd5b61173182612334565b6000806040838503121561238f57600080fd5b61239883612334565b91506123a660208401612334565b90509250929050565b6000806000606084860312156123c457600080fd5b6123cd84612334565b92506123db60208501612334565b9150604084013590509250925092565b6000806000806080858703121561240157600080fd5b61240a85612334565b935061241860208601612334565b92506040850135915060608501356001600160401b0381111561243a57600080fd5b8501601f8101871361244b57600080fd5b61245a878235602084016122bf565b91505092959194509250565b6000806040838503121561247957600080fd5b61248283612334565b91506020830135801515811461249757600080fd5b809150509250929050565b600080604083850312156124b557600080fd5b6124be83612334565b946020939093013593505050565b6000602082840312156124de57600080fd5b5035919050565b6000602082840312156124f757600080fd5b813561173181612916565b60006020828403121561251457600080fd5b815161173181612916565b60006020828403121561253157600080fd5b81356001600160401b0381111561254757600080fd5b8201601f8101841361255857600080fd5b611ef3848235602084016122bf565b6000806040838503121561257a57600080fd5b823561ffff8116811461239857600080fd5b60006020828403121561259e57600080fd5b61173182612350565b6000806000604084860312156125bc57600080fd5b6125c584612350565b925060208401356001600160401b03808211156125e157600080fd5b818601915086601f8301126125f557600080fd5b81358181111561260457600080fd5b8760208260051b850101111561261957600080fd5b6020830194508093505050509250925092565b60008151808452612644816020860160208601612828565b601f01601f19169290920160200192915050565b60008451602061266b8285838a01612828565b85519184019161267e8184848a01612828565b8554920191600090600181811c908083168061269b57607f831692505b8583108114156126b957634e487b7160e01b85526022600452602485fd5b8080156126cd57600181146126de5761270b565b60ff1985168852838801955061270b565b60008b81526020902060005b858110156127035781548a8201529084019088016126ea565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061274f9083018461262c565b9695505050505050565b602081526000611731602083018461262c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156127b4576127b46128be565b500190565b600060ff821660ff84168060ff038211156127d6576127d66128be565b019392505050565b6000826127ed576127ed6128d4565b500490565b600081600019048311821515161561280c5761280c6128be565b500290565b600082821015612823576128236128be565b500390565b60005b8381101561284357818101518382015260200161282b565b838111156115925750506000910152565b600181811c9082168061286857607f821691505b6020821081141561288957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128a3576128a36128be565b5060010190565b6000826128b9576128b96128d4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d6157600080fdfea2646970667358221220db2a45a91909d9c7a393c332d5c23e96174dc693c6955b5c95e3b85aae5a55d964736f6c63430008070033

Deployed Bytecode Sourcemap

48193:4676:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31699:372;;;;;;;;;;-1:-1:-1;31699:372:0;;;;;:::i;:::-;;:::i;:::-;;;8511:14:1;;8504:22;8486:41;;8474:2;8459:18;31699:372:0;;;;;;;;34309:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35811:204::-;;;;;;;;;;-1:-1:-1;35811:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7809:32:1;;;7791:51;;7779:2;7764:18;35811:204:0;7645:203:1;50433:75:0;;;;;;;;;;;;;:::i;:::-;;35375:370;;;;;;;;;;-1:-1:-1;35375:370:0;;;;;:::i;:::-;;:::i;48392:33::-;;;;;;;;;;;;;;;;;;;8684:25:1;;;8672:2;8657:18;48392:33:0;8538:177:1;28936:280:0;;;;;;;;;;;;;:::i;36668:170::-;;;;;;;;;;-1:-1:-1;36668:170:0;;;;;:::i;:::-;;:::i;49493:316::-;;;;;;;;;;-1:-1:-1;49493:316:0;;;;;:::i;:::-;;:::i;30522:1105::-;;;;;;;;;;-1:-1:-1;30522:1105:0;;;;;:::i;:::-;;:::i;48530:46::-;;;;;;;;;;-1:-1:-1;48530:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12782:4:1;12770:17;;;12752:36;;12740:2;12725:18;48530:46:0;12610:184:1;52223:69:0;;;;;;;;;;;;;:::i;52500:261::-;;;;;;;;;;;;;:::i;36909:185::-;;;;;;;;;;-1:-1:-1;36909:185:0;;;;;:::i;:::-;;:::i;49818:78::-;;;;;;;;;;-1:-1:-1;49818:78:0;;;;;:::i;:::-;;:::i;52298:76::-;;;;;;;;;;-1:-1:-1;52298:76:0;;;;;:::i;:::-;;:::i;29509:713::-;;;;;;;;;;-1:-1:-1;29509:713:0;;;;;:::i;:::-;;:::i;48479:41::-;;;;;;;;;;-1:-1:-1;48479:41:0;;;;;;;;51291:706;;;;;;:::i;:::-;;:::i;48759:25::-;;;;;;;;;;-1:-1:-1;48759:25:0;;;;;;;;;;;34118:124;;;;;;;;;;-1:-1:-1;34118:124:0;;;;;:::i;:::-;;:::i;50696:127::-;;;;;;;;;;-1:-1:-1;50696:127:0;;;;;:::i;:::-;;:::i;48932:553::-;;;;;;:::i;:::-;;:::i;32135:206::-;;;;;;;;;;-1:-1:-1;32135:206:0;;;;;:::i;:::-;;:::i;4759:103::-;;;;;;;;;;;;;:::i;50513:69::-;;;;;;;;;;;;;:::i;52003:102::-;;;;;;;;;;-1:-1:-1;52003:102:0;;;;;:::i;:::-;;:::i;48727:27::-;;;;;;;;;;-1:-1:-1;48727:27:0;;;;;;;;;;;4108:87;;;;;;;;;;-1:-1:-1;4181:6:0;;-1:-1:-1;;;;;4181:6:0;4108:87;;48430:42;;;;;;;;;;;;;;;;48624:35;;;;;;;;;;-1:-1:-1;48624:35:0;;;;;;;;34478:104;;;;;;;;;;;;;:::i;52109:106::-;;;;;;;;;;-1:-1:-1;52109:106:0;;;;;:::i;:::-;;:::i;36087:279::-;;;;;;;;;;-1:-1:-1;36087:279:0;;;;;:::i;:::-;;:::i;48344:31::-;;;;;;;;;;;;;:::i;48789:26::-;;;;;;;;;;-1:-1:-1;48789:26:0;;;;;;;;;;;52382:107;;;;;;;;;;-1:-1:-1;52382:107:0;;;;;:::i;:::-;;:::i;48828:40::-;;;;;;;;;;;;;;;;37165:342;;;;;;;;;;-1:-1:-1;37165:342:0;;;;;:::i;:::-;;:::i;50825:142::-;;;;;;;;;;-1:-1:-1;50825:142:0;;;;;:::i;:::-;;:::i;49909:516::-;;;;;;;;;;-1:-1:-1;49909:516:0;;;;;:::i;:::-;;:::i;50586:106::-;;;;;;;;;;-1:-1:-1;50586:106:0;;;;;:::i;:::-;;:::i;48581:38::-;;;;;;;;;;;;48616:3;48581:38;;;;;12409:6:1;12397:19;;;12379:38;;12367:2;12352:18;48581:38:0;12235:188:1;36437:164:0;;;;;;;;;;-1:-1:-1;36437:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;36558:25:0;;;36534:4;36558:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36437:164;5017:201;;;;;;;;;;-1:-1:-1;5017:201:0;;;;;:::i;:::-;;:::i;31699:372::-;31801:4;-1:-1:-1;;;;;;31838:40:0;;-1:-1:-1;;;31838:40:0;;:105;;-1:-1:-1;;;;;;;31895:48:0;;-1:-1:-1;;;31895:48:0;31838:105;:172;;;-1:-1:-1;;;;;;;31960:50:0;;-1:-1:-1;;;31960:50:0;31838:172;:225;;;-1:-1:-1;;;;;;;;;;16649:40:0;;;32027:36;31818:245;31699:372;-1:-1:-1;;31699:372:0:o;34309:100::-;34363:13;34396:5;34389:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34309:100;:::o;35811:204::-;35879:7;35904:16;35912:7;35904;:16::i;:::-;35899:64;;35929:34;;-1:-1:-1;;;35929:34:0;;;;;;;;;;;35899:64;-1:-1:-1;35983:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35983:24:0;;35811:204::o;50433:75::-;4181:6;;-1:-1:-1;;;;;4181:6:0;2912:10;4328:23;4320:68;;;;-1:-1:-1;;;4320:68:0;;;;;;;:::i;:::-;;;;;;;;;50494:8:::1;::::0;;-1:-1:-1;;50482:20:0;::::1;50494:8;::::0;;;::::1;;;50493:9;50482:20:::0;;::::1;;::::0;;50433:75::o;35375:370::-;35448:13;35464:23;35479:7;35464:14;:23::i;:::-;35448:39;;35508:5;-1:-1:-1;;;;;35502:11:0;:2;-1:-1:-1;;;;;35502:11:0;;35498:48;;;35522:24;;-1:-1:-1;;;35522:24:0;;;;;;;;;;;35498:48;2912:10;-1:-1:-1;;;;;35563:21:0;;;;;;:63;;-1:-1:-1;35589:37:0;35606:5;2912:10;36437:164;:::i;35589:37::-;35588:38;35563:63;35559:138;;;35650:35;;-1:-1:-1;;;35650:35:0;;;;;;;;;;;35559:138;35709:28;35718:2;35722:7;35731:5;35709:8;:28::i;:::-;35437:308;35375:370;;:::o;28936:280::-;28989:7;29181:12;-1:-1:-1;;;;;;;;29181:12:0;;;;29165:13;;;:28;;;;29158:35;;28936:280::o;36668:170::-;36802:28;36812:4;36818:2;36822:7;36802:9;:28::i;49493:316::-;4181:6;;-1:-1:-1;;;;;4181:6:0;2912:10;4328:23;4320:68;;;;-1:-1:-1;;;4320:68:0;;;;;;;:::i;:::-;49575:16:::1;49594:13;:11;:13::i;:::-;49575:32:::0;-1:-1:-1;48616:3:0::1;49622:25;:38;:25:::0;::::1;49575:32:::0;49622:25:::1;:::i;:::-;:38;;49614:70;;;::::0;-1:-1:-1;;;49614:70:0;;11741:2:1;49614:70:0::1;::::0;::::1;11723:21:1::0;11780:2;11760:18;;;11753:30;-1:-1:-1;;;11799:18:1;;;11792:49;11858:18;;49614:70:0::1;11539:343:1::0;49614:70:0::1;49692:35;49702:10;49715:11;49692:35;;:9;:35::i;30522:1105::-:0;30611:7;30644:16;30654:5;30644:9;:16::i;:::-;30635:5;:25;30631:61;;30669:23;;-1:-1:-1;;;30669:23:0;;;;;;;;;;;30631:61;30703:22;30728:13;;-1:-1:-1;;;;;30728:13:0;;30703:22;;30978:557;30998:14;30994:1;:18;30978:557;;;31038:31;31072:14;;;:11;:14;;;;;;;;;31038:48;;;;;;;;;-1:-1:-1;;;;;31038:48:0;;;;-1:-1:-1;;;31038:48:0;;-1:-1:-1;;;;;31038:48:0;;;;;;;;-1:-1:-1;;;31038:48:0;;;;;;;;;;;;;;;;31105:73;;31150:8;;;31105:73;31200:14;;-1:-1:-1;;;;;31200:28:0;;31196:111;;31273:14;;;-1:-1:-1;31196:111:0;31350:5;-1:-1:-1;;;;;31329:26:0;:17;-1:-1:-1;;;;;31329:26:0;;31325:195;;;31399:5;31384:11;:20;31380:85;;;-1:-1:-1;31440:1:0;-1:-1:-1;31433:8:0;;-1:-1:-1;;;31433:8:0;31380:85;31487:13;;;;;31325:195;31019:516;30978:557;31014:3;;30978:557;;;;31611:8;;;52223:69;4181:6;;-1:-1:-1;;;;;4181:6:0;2912:10;4328:23;4320:68;;;;-1:-1:-1;;;4320:68:0;;;;;;;:::i;:::-;52280:6:::1;::::0;;-1:-1:-1;;52270:16:0;::::1;52280:6:::0;;;;::::1;;;52279:7;52270:16:::0;;::::1;;::::0;;52223:69::o;52500:261::-;4181:6;;-1:-1:-1;;;;;4181:6:0;2912:10;4328:23;4320:68;;;;-1:-1:-1;;;4320:68:0;;;;;;;:::i;:::-;52560:21:::1;52597:42;52589:79;52664:3;52650:13;52560:21:::0;52661:2:::1;52650:13;:::i;:::-;:17;;;;:::i;:::-;52589:79;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;52684:42:0::1;52676:79;52751:3;52737:13;:8:::0;52748:2:::1;52737:13;:::i;:::-;:17;;;;:::i;:::-;52676:79;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;52539:222;52500:261::o:0;36909:185::-;37047:39;37064:4;37070:2;37074:7;37047:39;;;;;;;;;;;;:16;:39::i;49818:78::-;4181:6;;-1:-1:-1;;;;;4181:6:0;2912:10;4328:23;4320:68;;;;-1:-1:-1;;;4320:68:0;;;;;;;:::i;:::-;49875:15:::1;49881:8;49875:5;:15::i;:::-;49818:78:::0;:::o;52298:76::-;4181:6;;-1:-1:-1;;;;;4181:6:0;2912:10;4328:23;4320:68;;;;-1:-1:-1;;;4320:68:0;;;;;;;:::i;:::-;52354:4:::1;:12:::0;52298:76::o;29509:713::-;29576:7;29621:13;;-1:-1:-1;;;;;29621:13:0;29576:7;;29835:328;29855:14;29851:1;:18;29835:328;;;29895:31;29929:14;;;:11;:14;;;;;;;;;29895:48;;;;;;;;;-1:-1:-1;;;;;29895:48:0;;;;-1:-1:-1;;;29895:48:0;;-1:-1:-1;;;;;29895:48:0;;;;;;;;-1:-1:-1;;;29895:48:0;;;;;;;;;;;;;;29962:186;;30027:5;30012:11;:20;30008:85;;;-1:-1:-1;30068:1:0;29509:713;-1:-1:-1;;;;29509:713:0:o;30008:85::-;30115:13;;;;;29962:186;-1:-1:-1;29871:3:0;;29835:328;;;;30191:23;;-1:-1:-1;;;30191:23:0;;;;;;;;;;;51291:706;51087:23;;;51434:10;6028:2:1;6024:15;-1:-1:-1;;6020:53:1;51087:23:0;;;;6008:66:1;;;;51087:23:0;;;;;;;;;6090:12:1;;;;51087:23:0;;;51077:34;;;;;51463:36;51471:8;51484:11;;51463:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51463:7:0;;-1:-1:-1;;;51463:36:0:i;:::-;51455:70;;;;-1:-1:-1;;;51455:70:0;;10624:2:1;51455:70:0;;;10606:21:1;10663:2;10643:18;;;10636:30;-1:-1:-1;;;10682:18:1;;;10675:50;10742:18;;51455:70:0;10422:344:1;51455:70:0;51586:24;;51557:10;51586:24;51544;;;:12;:24;;;;;;51586;;;;;51544:38;;51571:11;;51544:24;:38;:::i;:::-;:66;;;;51535:106;;;;-1:-1:-1;;;51535:106:0;;9908:2:1;51535:106:0;;;9890:21:1;9947:2;9927:18;;;9920:30;9986:28;9966:18;;;9959:56;10032:18;;51535:106:0;9706:350:1;51535:106:0;51669:8;;;;;;;51668:9;51660:48;;;;-1:-1:-1;;;51660:48:0;;9553:2:1;51660:48:0;;;9535:21:1;9592:2;9572:18;;;9565:30;9631:28;9611:18;;;9604:56;9677:18;;51660:48:0;9351:350:1;51660:48:0;51752:11;51736:27;;:13;;:27;;;;:::i;:::-;51723:9;:40;51715:72;;;;-1:-1:-1;;;51715:72:0;;12089:2:1;51715:72:0;;;12071:21:1;12128:2;12108:18;;;12101:30;-1:-1:-1;;;12147:18:1;;;12140:49;12206:18;;51715:72:0;11887:343:1;51715:72:0;51798:16;51817:13;:11;:13::i;:::-;51798:32;;51838:35;51848:10;51861:11;51838:35;;:9;:35::i;:::-;51895:10;51882:24;;;;:12;:24;;;;;:39;;51910:11;;51882:24;:39;;51910:11;;51882:39;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;51930:18;;;51957;;;51382:615;;51291:706;;;:::o;34118:124::-;34182:7;34209:20;34221:7;34209:11;:20::i;:::-;:25;;34118:124;-1:-1:-1;;34118:124:0:o;50696:127::-;4181:6;;-1:-1:-1;;;;;4181:6:0;2912:10;4328:23;4320:68;;;;-1:-1:-1;;;4320:68:0;;;;;;;:::i;:::-;50765:24:::1;:33:::0;;-1:-1:-1;;50765:33:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;50696:127::o;48932:553::-;48990:16;49009:13;:11;:13::i;:::-;48990:32;-1:-1:-1;48616:3:0;49037:25;;;;48990:32;49037:25;:::i;:::-;:38;;49029:70;;;;-1:-1:-1;;;49029:70:0;;11741:2:1;49029:70:0;;;11723:21:1;11780:2;11760:18;;;11753:30;-1:-1:-1;;;11799:18:1;;;11792:49;11858:18;;49029:70:0;11539:343:1;49029:70:0;49157:18;;49128:10;49157:18;49115:24;;;:12;:24;;;;;;49157:18;;;;;49115:38;;49142:11;;49115:24;:38;:::i;:::-;:60;;;;49106:100;;;;-1:-1:-1;;;49106:100:0;;9908:2:1;49106:100:0;;;9890:21:1;9947:2;9927:18;;;9920:30;9986:28;9966:18;;;9959:56;10032:18;;49106:100:0;9706:350:1;49106:100:0;49224:6;;;;;;;49223:7;49215:43;;;;-1:-1:-1;;;49215:43:0;;10973:2:1;49215:43:0;;;10955:21:1;11012:2;10992:18;;;10985:30;11051:25;11031:18;;;11024:53;11094:18;;49215:43:0;10771:347:1;49215:43:0;49293:11;49286:18;;:4;;:18;;;;:::i;:::-;49273:9;:31;49265:63;;;;-1:-1:-1;;;49265:63:0;;12089:2:1;49265:63:0;;;12071:21:1;12128:2;12108:18;;;12101:30;-1:-1:-1;;;12147:18:1;;;12140:49;12206:18;;49265:63:0;11887:343:1;49265:63:0;49337:35;49347:10;49360:11;49337:35;;:9;:35::i;:::-;49394:10;49381:24;;;;:12;:24;;;;;:39;;49409:11;;49381:24;:39;;49409:11;;49381:39;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;49435:18;;;49461;;;48983:502;48932:553;:::o;32135:206::-;32199:7;-1:-1:-1;;;;;32223:19:0;;32219:60;;32251:28;;-1:-1:-1;;;32251:28:0;;;;;;;;;;;32219:60;-1:-1:-1;;;;;;32305:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;32305:27:0;;32135:206::o;4759:103::-;4181:6;;-1:-1:-1;;;;;4181:6:0;2912:10;4328:23;4320:68;;;;-1:-1:-1;;;4320:68:0;;;;;;;:::i;:::-;4824:30:::1;4851:1;4824:18;:30::i;:::-;4759:103::o:0;50513:69::-;4181:6;;-1:-1:-1;;;;;4181:6:0;2912:10;4328:23;4320:68;;;;-1:-1:-1;;;4320:68:0;;;;;;;:::i;:::-;50570:6:::1;::::0;;-1:-1:-1;;50560:16:0;::::1;50570:6:::0;;;;::::1;;;50569:7;50560:16:::0;;::::1;;::::0;;50513:69::o;52003:102::-;4181:6;;-1:-1:-1;;;;;4181:6:0;2912:10;4328:23;4320:68;;;;-1:-1:-1;;;4320:68:0;;;;;;;:::i;:::-;52077:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;34478:104::-:0;34534:13;34567:7;34560:14;;;;;:::i;52109:106::-;4181:6;;-1:-1:-1;;;;;4181:6:0;2912:10;4328:23;4320:68;;;;-1:-1:-1;;;4320:68:0;;;;;;;:::i;:::-;52185:24;;::::1;::::0;:17:::1;::::0;:24:::1;::::0;::::1;::::0;::::1;:::i;36087:279::-:0;-1:-1:-1;;;;;36178:24:0;;2912:10;36178:24;36174:54;;;36211:17;;-1:-1:-1;;;36211:17:0;;;;;;;;;;;36174:54;2912:10;36241:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;36241:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;36241:53:0;;;;;;;;;;36310:48;;8486:41:1;;;36241:42:0;;2912:10;36310:48;;8459:18:1;36310:48:0;;;;;;;36087:279;;:::o;48344:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52382:107::-;4181:6;;-1:-1:-1;;;;;4181:6:0;2912:10;4328:23;4320:68;;;;-1:-1:-1;;;4320:68:0;;;;;;;:::i;:::-;52454:18:::1;:27:::0;;-1:-1:-1;;52454:27:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;52382:107::o;37165:342::-;37332:28;37342:4;37348:2;37352:7;37332:9;:28::i;:::-;37376:48;37399:4;37405:2;37409:7;37418:5;37376:22;:48::i;:::-;37371:129;;37448:40;;-1:-1:-1;;;37448:40:0;;;;;;;;;;;37371:129;37165:342;;;;:::o;50825:142::-;4181:6;;-1:-1:-1;;;;;4181:6:0;2912:10;4328:23;4320:68;;;;-1:-1:-1;;;4320:68:0;;;;;;;:::i;:::-;50917:19:::1;:42:::0;50825:142::o;49909:516::-;50008:13;50049:17;50057:8;50049:7;:17::i;:::-;50033:98;;;;-1:-1:-1;;;50033:98:0;;11325:2:1;50033:98:0;;;11307:21:1;11364:2;11344:18;;;11337:30;11403:34;11383:18;;;11376:62;-1:-1:-1;;;11454:18:1;;;11447:45;11509:19;;50033:98:0;11123:411:1;50033:98:0;50153:6;;;;;;;50149:71;;50194:17;50187:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49909:516;;;:::o;50149:71::-;50234:28;50265:10;:8;:10::i;:::-;50234:41;;50320:1;50295:14;50289:28;:32;:130;;;;;;;;;;;;;;;;;50357:14;50373:19;:8;:17;:19::i;:::-;50394:9;50340:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50289:130;50282:137;49909:516;-1:-1:-1;;;49909:516:0:o;50586:106::-;4181:6;;-1:-1:-1;;;;;4181:6:0;2912:10;4328:23;4320:68;;;;-1:-1:-1;;;4320:68:0;;;;;;;:::i;:::-;50646:13:::1;:21:::0;50586:106::o;5017:201::-;4181:6;;-1:-1:-1;;;;;4181:6:0;2912:10;4328:23;4320:68;;;;-1:-1:-1;;;4320:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5106:22:0;::::1;5098:73;;;::::0;-1:-1:-1;;;5098:73:0;;9146:2:1;5098:73:0::1;::::0;::::1;9128:21:1::0;9185:2;9165:18;;;9158:30;9224:34;9204:18;;;9197:62;-1:-1:-1;;;9275:18:1;;;9268:36;9321:19;;5098:73:0::1;8944:402:1::0;5098:73:0::1;5182:28;5201:8;5182:18;:28::i;37762:144::-:0;37819:4;37853:13;;-1:-1:-1;;;;;37853:13:0;37843:23;;:55;;;;-1:-1:-1;;37871:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;37871:27:0;;;;37870:28;;37762:144::o;44978:196::-;45093:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;45093:29:0;-1:-1:-1;;;;;45093:29:0;;;;;;;;;45138:28;;45093:24;;45138:28;;;;;;;44978:196;;;:::o;40479:2112::-;40594:35;40632:20;40644:7;40632:11;:20::i;:::-;40707:18;;40594:58;;-1:-1:-1;40665:22:0;;-1:-1:-1;;;;;40691:34:0;2912:10;-1:-1:-1;;;;;40691:34:0;;:101;;;-1:-1:-1;40759:18:0;;40742:50;;2912:10;36437:164;:::i;40742:50::-;40691:154;;;-1:-1:-1;2912:10:0;40809:20;40821:7;40809:11;:20::i;:::-;-1:-1:-1;;;;;40809:36:0;;40691:154;40665:181;;40864:17;40859:66;;40890:35;;-1:-1:-1;;;40890:35:0;;;;;;;;;;;40859:66;40962:4;-1:-1:-1;;;;;40940:26:0;:13;:18;;;-1:-1:-1;;;;;40940:26:0;;40936:67;;40975:28;;-1:-1:-1;;;40975:28:0;;;;;;;;;;;40936:67;-1:-1:-1;;;;;41018:16:0;;41014:52;;41043:23;;-1:-1:-1;;;41043:23:0;;;;;;;;;;;41014:52;41187:49;41204:1;41208:7;41217:13;:18;;;41187:8;:49::i;:::-;-1:-1:-1;;;;;41532:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;41532:31:0;;;-1:-1:-1;;;;;41532:31:0;;;-1:-1:-1;;41532:31:0;;;;;;;41578:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;41578:29:0;;;;;;;;;;;41624:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;41669:61:0;;;;-1:-1:-1;;;41714:15:0;41669:61;;;;;;;;;;;42004:11;;;42034:24;;;;;:29;42004:11;;42034:29;42030:445;;42259:13;;-1:-1:-1;;;;;42259:13:0;42245:27;;42241:219;;;42329:18;;;42297:24;;;:11;:24;;;;;;;;:50;;42412:28;;;;-1:-1:-1;;;;;42370:70:0;-1:-1:-1;;;42370:70:0;-1:-1:-1;;;;;;42370:70:0;;;-1:-1:-1;;;;;42297:50:0;;;42370:70;;;;;;;42241:219;41507:979;42522:7;42518:2;-1:-1:-1;;;;;42503:27:0;42512:4;-1:-1:-1;;;;;42503:27:0;;;;;;;;;;;42541:42;40583:2008;;40479:2112;;;:::o;37914:104::-;37983:27;37993:2;37997:8;37983:27;;;;;;;;;;;;:9;:27::i;42820:2040::-;42880:35;42918:20;42930:7;42918:11;:20::i;:::-;42880:58;-1:-1:-1;43081:49:0;43098:1;43102:7;43111:13;:18;;;43081:8;:49::i;:::-;43439:18;;-1:-1:-1;;;;;43426:32:0;;;;;;;:12;:32;;;;;;;;:45;;-1:-1:-1;;43426:45:0;;-1:-1:-1;;;;;43426:45:0;;;-1:-1:-1;;43426:45:0;;;;;;;43499:18;;43486:32;;;;;;;:50;;-1:-1:-1;;;;43486:50:0;;-1:-1:-1;;;43486:50:0;;;;;;-1:-1:-1;43486:50:0;;;;;;;;;;;;43663:18;;43635:20;;;:11;:20;;;;;;:46;;-1:-1:-1;;;43635:46:0;;;-1:-1:-1;;;;;;43696:61:0;;;;-1:-1:-1;;;43741:15:0;43696:61;;;;;;;;;;;-1:-1:-1;;;;43772:34:0;;;;;;;44076:11;;;44106:24;;;;;:29;44076:11;;44106:29;44102:445;;44331:13;;-1:-1:-1;;;;;44331:13:0;44317:27;;44313:219;;;44401:18;;;44369:24;;;:11;:24;;;;;;;;:50;;44484:28;;;;-1:-1:-1;;;;;44442:70:0;-1:-1:-1;;;44442:70:0;-1:-1:-1;;;;;;44442:70:0;;;-1:-1:-1;;;;;44369:50:0;;;44442:70;;;;;;;44313:219;-1:-1:-1;44584:18:0;;44575:49;;44616:7;;44612:1;;-1:-1:-1;;;;;44575:49:0;;;;;;44612:1;;44575:49;-1:-1:-1;;44827:12:0;:14;;;-1:-1:-1;;;;;;;;44827:14:0;;;;;;;;;;;;;;;;;;;42820:2040::o;51125:162::-;51203:4;51227:52;51246:5;51253:19;;51274:4;51227:18;:52::i;32973:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;33139:13:0;;33083:7;;-1:-1:-1;;;;;33139:13:0;33132:20;;33128:861;;;33173:31;33207:17;;;:11;:17;;;;;;;;;33173:51;;;;;;;;;-1:-1:-1;;;;;33173:51:0;;;;-1:-1:-1;;;33173:51:0;;-1:-1:-1;;;;;33173:51:0;;;;;;;;-1:-1:-1;;;33173:51:0;;;;;;;;;;;;;;33243:731;;33293:14;;-1:-1:-1;;;;;33293:28:0;;33289:101;;33357:9;32973:1083;-1:-1:-1;;;32973:1083:0:o;33289:101::-;-1:-1:-1;;;33734:6:0;33779:17;;;;:11;:17;;;;;;;;;33767:29;;;;;;;;;-1:-1:-1;;;;;33767:29:0;;;;;-1:-1:-1;;;33767:29:0;;-1:-1:-1;;;;;33767:29:0;;;;;;;;-1:-1:-1;;;33767:29:0;;;;;;;;;;;;;33827:28;33823:109;;33895:9;32973:1083;-1:-1:-1;;;32973:1083:0:o;33823:109::-;33694:261;;;33154:835;33128:861;34017:31;;-1:-1:-1;;;34017:31:0;;;;;;;;;;;5378:191;5471:6;;;-1:-1:-1;;;;;5488:17:0;;;-1:-1:-1;;;;;;5488:17:0;;;;;;;5521:40;;5471:6;;;5488:17;5471:6;;5521:40;;5452:16;;5521:40;5441:128;5378:191;:::o;45739:790::-;45894:4;-1:-1:-1;;;;;45915:13:0;;6719:20;6767:8;45911:611;;45951:72;;-1:-1:-1;;;45951:72:0;;-1:-1:-1;;;;;45951:36:0;;;;;:72;;2912:10;;46002:4;;46008:7;;46017:5;;45951:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45951:72:0;;;;;;;;-1:-1:-1;;45951:72:0;;;;;;;;;;;;:::i;:::-;;;45947:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46197:13:0;;46193:259;;46247:40;;-1:-1:-1;;;46247:40:0;;;;;;;;;;;46193:259;46402:6;46396:13;46387:6;46383:2;46379:15;46372:38;45947:520;-1:-1:-1;;;;;;46074:55:0;-1:-1:-1;;;46074:55:0;;-1:-1:-1;46067:62:0;;45911:611;-1:-1:-1;46506:4:0;45911:611;45739:790;;;;;;:::o;52769:97::-;52822:13;52851:9;52844:16;;;;;:::i;394:723::-;450:13;671:10;667:53;;-1:-1:-1;;698:10:0;;;;;;;;;;;;-1:-1:-1;;;698:10:0;;;;;394:723::o;667:53::-;745:5;730:12;786:78;793:9;;786:78;;819:8;;;;:::i;:::-;;-1:-1:-1;842:10:0;;-1:-1:-1;850:2:0;842:10;;:::i;:::-;;;786:78;;;874:19;906:6;-1:-1:-1;;;;;896:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;896:17:0;;874:39;;924:154;931:10;;924:154;;958:11;968:1;958:11;;:::i;:::-;;-1:-1:-1;1027:10:0;1035:2;1027:5;:10;:::i;:::-;1014:24;;:2;:24;:::i;:::-;1001:39;;984:6;991;984:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;984:56:0;;;;;;;;-1:-1:-1;1055:11:0;1064:2;1055:11;;:::i;:::-;;;924:154;;38381:163;38504:32;38510:2;38514:8;38524:5;38531:4;38504:5;:32::i;24247:190::-;24372:4;24425;24396:25;24409:5;24416:4;24396:12;:25::i;:::-;:33;;24247:190;-1:-1:-1;;;;24247:190:0:o;38803:1422::-;38942:20;38965:13;-1:-1:-1;;;;;38965:13:0;-1:-1:-1;;;;;38993:16:0;;38989:48;;39018:19;;-1:-1:-1;;;39018:19:0;;;;;;;;;;;38989:48;39052:13;39048:44;;39074:18;;-1:-1:-1;;;39074:18:0;;;;;;;;;;;39048:44;-1:-1:-1;;;;;39444:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;;;;;39503:49:0;;-1:-1:-1;;;;;39444:44:0;;;;;;;39503:49;;;;-1:-1:-1;;39444:44:0;;;;;;39503:49;;;;;;;;;;;;;;;;39569:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;39619:66:0;;;;-1:-1:-1;;;39669:15:0;39619:66;;;;;;;;;;;39569:25;;39754:328;39774:8;39770:1;:12;39754:328;;;39813:38;;39838:12;;-1:-1:-1;;;;;39813:38:0;;;39830:1;;39813:38;;39830:1;;39813:38;39874:4;:68;;;;;39883:59;39914:1;39918:2;39922:12;39936:5;39883:22;:59::i;:::-;39882:60;39874:68;39870:164;;;39974:40;;-1:-1:-1;;;39974:40:0;;;;;;;;;;;39870:164;40052:14;;;;;39784:3;39754:328;;;-1:-1:-1;40098:13:0;:37;;-1:-1:-1;;;;;;40098:37:0;-1:-1:-1;;;;;40098:37:0;;;;;;;;;;40157:60;37165:342;24799:675;24882:7;24925:4;24882:7;24940:497;24964:5;:12;24960:1;:16;24940:497;;;24998:20;25021:5;25027:1;25021:8;;;;;;;;:::i;:::-;;;;;;;24998:31;;25064:12;25048;:28;25044:382;;25550:13;25600:15;;;25636:4;25629:15;;;25683:4;25667:21;;25176:57;;25044:382;;;25550:13;25600:15;;;25636:4;25629:15;;;25683:4;25667:21;;25353:57;;25044:382;-1:-1:-1;24978:3:0;;;;:::i;:::-;;;;24940:497;;;-1:-1:-1;25454:12:0;24799:675;-1:-1:-1;;;24799:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:156::-;894:20;;954:4;943:16;;933:27;;923:55;;974:1;971;964:12;989:186;1048:6;1101:2;1089:9;1080:7;1076:23;1072:32;1069:52;;;1117:1;1114;1107:12;1069:52;1140:29;1159:9;1140:29;:::i;1180:260::-;1248:6;1256;1309:2;1297:9;1288:7;1284:23;1280:32;1277:52;;;1325:1;1322;1315:12;1277:52;1348:29;1367:9;1348:29;:::i;:::-;1338:39;;1396:38;1430:2;1419:9;1415:18;1396:38;:::i;:::-;1386:48;;1180:260;;;;;:::o;1445:328::-;1522:6;1530;1538;1591:2;1579:9;1570:7;1566:23;1562:32;1559:52;;;1607:1;1604;1597:12;1559:52;1630:29;1649:9;1630:29;:::i;:::-;1620:39;;1678:38;1712:2;1701:9;1697:18;1678:38;:::i;:::-;1668:48;;1763:2;1752:9;1748:18;1735:32;1725:42;;1445:328;;;;;:::o;1778:666::-;1873:6;1881;1889;1897;1950:3;1938:9;1929:7;1925:23;1921:33;1918:53;;;1967:1;1964;1957:12;1918:53;1990:29;2009:9;1990:29;:::i;:::-;1980:39;;2038:38;2072:2;2061:9;2057:18;2038:38;:::i;:::-;2028:48;;2123:2;2112:9;2108:18;2095:32;2085:42;;2178:2;2167:9;2163:18;2150:32;-1:-1:-1;;;;;2197:6:1;2194:30;2191:50;;;2237:1;2234;2227:12;2191:50;2260:22;;2313:4;2305:13;;2301:27;-1:-1:-1;2291:55:1;;2342:1;2339;2332:12;2291:55;2365:73;2430:7;2425:2;2412:16;2407:2;2403;2399:11;2365:73;:::i;:::-;2355:83;;;1778:666;;;;;;;:::o;2449:347::-;2514:6;2522;2575:2;2563:9;2554:7;2550:23;2546:32;2543:52;;;2591:1;2588;2581:12;2543:52;2614:29;2633:9;2614:29;:::i;:::-;2604:39;;2693:2;2682:9;2678:18;2665:32;2740:5;2733:13;2726:21;2719:5;2716:32;2706:60;;2762:1;2759;2752:12;2706:60;2785:5;2775:15;;;2449:347;;;;;:::o;2801:254::-;2869:6;2877;2930:2;2918:9;2909:7;2905:23;2901:32;2898:52;;;2946:1;2943;2936:12;2898:52;2969:29;2988:9;2969:29;:::i;:::-;2959:39;3045:2;3030:18;;;;3017:32;;-1:-1:-1;;;2801:254:1:o;3060:180::-;3119:6;3172:2;3160:9;3151:7;3147:23;3143:32;3140:52;;;3188:1;3185;3178:12;3140:52;-1:-1:-1;3211:23:1;;3060:180;-1:-1:-1;3060:180:1:o;3245:245::-;3303:6;3356:2;3344:9;3335:7;3331:23;3327:32;3324:52;;;3372:1;3369;3362:12;3324:52;3411:9;3398:23;3430:30;3454:5;3430:30;:::i;3495:249::-;3564:6;3617:2;3605:9;3596:7;3592:23;3588:32;3585:52;;;3633:1;3630;3623:12;3585:52;3665:9;3659:16;3684:30;3708:5;3684:30;:::i;3749:450::-;3818:6;3871:2;3859:9;3850:7;3846:23;3842:32;3839:52;;;3887:1;3884;3877:12;3839:52;3927:9;3914:23;-1:-1:-1;;;;;3952:6:1;3949:30;3946:50;;;3992:1;3989;3982:12;3946:50;4015:22;;4068:4;4060:13;;4056:27;-1:-1:-1;4046:55:1;;4097:1;4094;4087:12;4046:55;4120:73;4185:7;4180:2;4167:16;4162:2;4158;4154:11;4120:73;:::i;4204:346::-;4271:6;4279;4332:2;4320:9;4311:7;4307:23;4303:32;4300:52;;;4348:1;4345;4338:12;4300:52;4387:9;4374:23;4437:6;4430:5;4426:18;4419:5;4416:29;4406:57;;4459:1;4456;4449:12;4740:182;4797:6;4850:2;4838:9;4829:7;4825:23;4821:32;4818:52;;;4866:1;4863;4856:12;4818:52;4889:27;4906:9;4889:27;:::i;4927:685::-;5020:6;5028;5036;5089:2;5077:9;5068:7;5064:23;5060:32;5057:52;;;5105:1;5102;5095:12;5057:52;5128:27;5145:9;5128:27;:::i;:::-;5118:37;;5206:2;5195:9;5191:18;5178:32;-1:-1:-1;;;;;5270:2:1;5262:6;5259:14;5256:34;;;5286:1;5283;5276:12;5256:34;5324:6;5313:9;5309:22;5299:32;;5369:7;5362:4;5358:2;5354:13;5350:27;5340:55;;5391:1;5388;5381:12;5340:55;5431:2;5418:16;5457:2;5449:6;5446:14;5443:34;;;5473:1;5470;5463:12;5443:34;5526:7;5521:2;5511:6;5508:1;5504:14;5500:2;5496:23;5492:32;5489:45;5486:65;;;5547:1;5544;5537:12;5486:65;5578:2;5574;5570:11;5560:21;;5600:6;5590:16;;;;;4927:685;;;;;:::o;5617:257::-;5658:3;5696:5;5690:12;5723:6;5718:3;5711:19;5739:63;5795:6;5788:4;5783:3;5779:14;5772:4;5765:5;5761:16;5739:63;:::i;:::-;5856:2;5835:15;-1:-1:-1;;5831:29:1;5822:39;;;;5863:4;5818:50;;5617:257;-1:-1:-1;;5617:257:1:o;6113:1527::-;6337:3;6375:6;6369:13;6401:4;6414:51;6458:6;6453:3;6448:2;6440:6;6436:15;6414:51;:::i;:::-;6528:13;;6487:16;;;;6550:55;6528:13;6487:16;6572:15;;;6550:55;:::i;:::-;6694:13;;6627:20;;;6667:1;;6754;6776:18;;;;6829;;;;6856:93;;6934:4;6924:8;6920:19;6908:31;;6856:93;6997:2;6987:8;6984:16;6964:18;6961:40;6958:167;;;-1:-1:-1;;;7024:33:1;;7080:4;7077:1;7070:15;7110:4;7031:3;7098:17;6958:167;7141:18;7168:110;;;;7292:1;7287:328;;;;7134:481;;7168:110;-1:-1:-1;;7203:24:1;;7189:39;;7248:20;;;;-1:-1:-1;7168:110:1;;7287:328;12872:1;12865:14;;;12909:4;12896:18;;7382:1;7396:169;7410:8;7407:1;7404:15;7396:169;;;7492:14;;7477:13;;;7470:37;7535:16;;;;7427:10;;7396:169;;;7400:3;;7596:8;7589:5;7585:20;7578:27;;7134:481;-1:-1:-1;7631:3:1;;6113:1527;-1:-1:-1;;;;;;;;;;;6113:1527:1:o;7853:488::-;-1:-1:-1;;;;;8122:15:1;;;8104:34;;8174:15;;8169:2;8154:18;;8147:43;8221:2;8206:18;;8199:34;;;8269:3;8264:2;8249:18;;8242:31;;;8047:4;;8290:45;;8315:19;;8307:6;8290:45;:::i;:::-;8282:53;7853:488;-1:-1:-1;;;;;;7853:488:1:o;8720:219::-;8869:2;8858:9;8851:21;8832:4;8889:44;8929:2;8918:9;8914:18;8906:6;8889:44;:::i;10061:356::-;10263:2;10245:21;;;10282:18;;;10275:30;10341:34;10336:2;10321:18;;10314:62;10408:2;10393:18;;10061:356::o;12925:128::-;12965:3;12996:1;12992:6;12989:1;12986:13;12983:39;;;13002:18;;:::i;:::-;-1:-1:-1;13038:9:1;;12925:128::o;13058:204::-;13096:3;13132:4;13129:1;13125:12;13164:4;13161:1;13157:12;13199:3;13193:4;13189:14;13184:3;13181:23;13178:49;;;13207:18;;:::i;:::-;13243:13;;13058:204;-1:-1:-1;;;13058:204:1:o;13267:120::-;13307:1;13333;13323:35;;13338:18;;:::i;:::-;-1:-1:-1;13372:9:1;;13267:120::o;13392:168::-;13432:7;13498:1;13494;13490:6;13486:14;13483:1;13480:21;13475:1;13468:9;13461:17;13457:45;13454:71;;;13505:18;;:::i;:::-;-1:-1:-1;13545:9:1;;13392:168::o;13565:125::-;13605:4;13633:1;13630;13627:8;13624:34;;;13638:18;;:::i;:::-;-1:-1:-1;13675:9:1;;13565:125::o;13695:258::-;13767:1;13777:113;13791:6;13788:1;13785:13;13777:113;;;13867:11;;;13861:18;13848:11;;;13841:39;13813:2;13806:10;13777:113;;;13908:6;13905:1;13902:13;13899:48;;;-1:-1:-1;;13943:1:1;13925:16;;13918:27;13695:258::o;13958:380::-;14037:1;14033:12;;;;14080;;;14101:61;;14155:4;14147:6;14143:17;14133:27;;14101:61;14208:2;14200:6;14197:14;14177:18;14174:38;14171:161;;;14254:10;14249:3;14245:20;14242:1;14235:31;14289:4;14286:1;14279:15;14317:4;14314:1;14307:15;14171:161;;13958:380;;;:::o;14343:135::-;14382:3;-1:-1:-1;;14403:17:1;;14400:43;;;14423:18;;:::i;:::-;-1:-1:-1;14470:1:1;14459:13;;14343:135::o;14483:112::-;14515:1;14541;14531:35;;14546:18;;:::i;:::-;-1:-1:-1;14580:9:1;;14483:112::o;14600:127::-;14661:10;14656:3;14652:20;14649:1;14642:31;14692:4;14689:1;14682:15;14716:4;14713:1;14706:15;14732:127;14793:10;14788:3;14784:20;14781:1;14774:31;14824:4;14821:1;14814:15;14848:4;14845:1;14838:15;14864:127;14925:10;14920:3;14916:20;14913:1;14906:31;14956:4;14953:1;14946:15;14980:4;14977:1;14970:15;14996:127;15057:10;15052:3;15048:20;15045:1;15038:31;15088:4;15085:1;15078:15;15112:4;15109:1;15102:15;15128:131;-1:-1:-1;;;;;;15202:32:1;;15192:43;;15182:71;;15249:1;15246;15239:12

Swarm Source

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