ETH Price: $3,477.43 (+0.46%)
Gas: 5 Gwei

Bored Moon Cats (BMC)
 

Overview

TokenID

1006

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
BoredMoonCats

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-25
*/

//SPDX-License-Identifier: MIT


pragma solidity ^0.8.0;


abstract contract ReentrancyGuard {
  
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// 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 (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;







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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

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

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

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

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

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/BoredMoonCats.sol

pragma solidity >=0.8.9 <0.9.0;




contract BoredMoonCats is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;

    string baseURI;
    string public notRevealedUri;
    string public baseExtension = ".json";
    uint256 public price = 0.002 ether;
    uint256 public maxPerTx = 6;
    uint256 public totalFree = 3333; //first 3333 free
    uint256 public maxSupply = 6666;
    uint256 public maxPerWallet = 12; //changed to 60 after free mint
    bool public paused = false;
    bool public revealed = false;
    

    constructor(
    string memory _initBaseURI,
    string memory _initNotRevealedUri
    ) ERC721A("Bored Moon Cats", "BMC") {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
    }

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

    function mint(uint256 _mintAmount) external payable {
        uint256 cost = price;
        if (totalSupply() + _mintAmount < totalFree + 1) {
            cost = 0;
        }

        require(msg.value >= _mintAmount * cost, "Not enough ETH.");
        require(totalSupply() + _mintAmount < maxSupply + 1, "Bored Moon Cats");
        require(!paused, "Minting is not live yet, hold on Bored Moon Cats.");
        require(_mintAmount < maxPerTx + 1, "Max per TX reached.");
        require(
            _numberMinted(msg.sender) + _mintAmount <= maxPerWallet,
            "Too many per wallet!"
        );

        _safeMint(msg.sender, _mintAmount);
    }

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

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
        : "";
  }

    function setFreeAmount(uint256 amount) external onlyOwner {
        totalFree = amount;
    }

    function setMaxPerWallet(uint256 _maxPerWallet) external onlyOwner {
        maxPerWallet = _maxPerWallet;
    }
    
    function setMaxPerTx(uint256 _maxPerTx) public onlyOwner {
        maxPerTx = _maxPerTx;
    }

    function setMaxSupply(uint256 _maxSupply) public onlyOwner {
        maxSupply = _maxSupply;
    }

    function ownerAirdrop(uint256 _mintAmount, address _receiver) public onlyOwner {
        _safeMint(_receiver, _mintAmount);
    }


    function setPrice(uint256 _newPrice) external onlyOwner {
        price = _newPrice;
    }

    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }
    
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    function reveal() public onlyOwner {
    revealed = true;
  }


    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "Failed to send");
    }      
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"ownerAirdrop","outputs":[],"stateMutability":"nonpayable","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerTx","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c919062000238565b5066071afd498d0000600d556006600e55610d05600f55611a0a601055600c6011556012805461ffff191690553480156200006257600080fd5b50604051620024f8380380620024f88339810160408190526200008591620003ab565b604080518082018252600f81526e426f726564204d6f6f6e204361747360881b602080830191825283518085019094526003845262424d4360e81b908401528151919291620000d79160029162000238565b508051620000ed90600390602084019062000238565b5050600160005550620001003362000123565b6001600955620001108262000175565b6200011b81620001dd565b505062000452565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001c45760405162461bcd60e51b81526020600482018190526024820152600080516020620024d883398151915260448201526064015b60405180910390fd5b8051620001d990600a90602084019062000238565b5050565b6008546001600160a01b03163314620002285760405162461bcd60e51b81526020600482018190526024820152600080516020620024d88339815191526044820152606401620001bb565b8051620001d990600b9060208401905b828054620002469062000415565b90600052602060002090601f0160209004810192826200026a5760008555620002b5565b82601f106200028557805160ff1916838001178555620002b5565b82800160010185558215620002b5579182015b82811115620002b557825182559160200191906001019062000298565b50620002c3929150620002c7565b5090565b5b80821115620002c35760008155600101620002c8565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200030657600080fd5b81516001600160401b0380821115620003235762000323620002de565b604051601f8301601f19908116603f011681019082821181831017156200034e576200034e620002de565b816040528381526020925086838588010111156200036b57600080fd5b600091505b838210156200038f578582018301518183018401529082019062000370565b83821115620003a15760008385830101525b9695505050505050565b60008060408385031215620003bf57600080fd5b82516001600160401b0380821115620003d757600080fd5b620003e586838701620002f4565b93506020850151915080821115620003fc57600080fd5b506200040b85828601620002f4565b9150509250929050565b600181811c908216806200042a57607f821691505b602082108114156200044c57634e487b7160e01b600052602260045260246000fd5b50919050565b61207680620004626000396000f3fe6080604052600436106102305760003560e01c8063715018a61161012e578063c6682862116100ab578063e268e4d31161006f578063e268e4d31461062d578063e985e9c51461064d578063f2c4ce1e14610696578063f2fde38b146106b6578063f968adbe146106d657600080fd5b8063c6682862146105a2578063c6f6f216146105b7578063c87b56dd146105d7578063d5abeb01146105f7578063da3ef23f1461060d57600080fd5b8063a035b1fe116100f2578063a035b1fe14610524578063a0712d681461053a578063a22cb4651461054d578063a475b5dd1461056d578063b88d4fde1461058257600080fd5b8063715018a61461049c5780638da5cb5b146104b157806391b7f5ed146104cf57806392910eec146104ef57806395d89b411461050f57600080fd5b8063333e44e6116101bc57806355f804b31161018057806355f804b3146104025780635c975abb146104225780636352211e1461043c5780636f8b44b01461045c57806370a082311461047c57600080fd5b8063333e44e6146103825780633ccfd60b1461039857806342842e0e146103ad578063453c2310146103cd57806351830227146103e357600080fd5b8063095ea7b311610203578063095ea7b3146102d957806316c38b3c146102fb57806318160ddd1461031b57806323b872dd146103425780632cfee9901461036257600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063081c8c44146102c4575b600080fd5b34801561024157600080fd5b50610255610250366004611aa5565b6106ec565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f61073e565b6040516102619190611b1a565b34801561029857600080fd5b506102ac6102a7366004611b2d565b6107d0565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b5061027f610814565b3480156102e557600080fd5b506102f96102f4366004611b62565b6108a2565b005b34801561030757600080fd5b506102f9610316366004611b9c565b610929565b34801561032757600080fd5b5060015460005403600019015b604051908152602001610261565b34801561034e57600080fd5b506102f961035d366004611bb7565b61096f565b34801561036e57600080fd5b506102f961037d366004611bf3565b61097a565b34801561038e57600080fd5b50610334600f5481565b3480156103a457600080fd5b506102f96109b2565b3480156103b957600080fd5b506102f96103c8366004611bb7565b610a67565b3480156103d957600080fd5b5061033460115481565b3480156103ef57600080fd5b5060125461025590610100900460ff1681565b34801561040e57600080fd5b506102f961041d366004611cab565b610a82565b34801561042e57600080fd5b506012546102559060ff1681565b34801561044857600080fd5b506102ac610457366004611b2d565b610abf565b34801561046857600080fd5b506102f9610477366004611b2d565b610ad1565b34801561048857600080fd5b50610334610497366004611cf4565b610b00565b3480156104a857600080fd5b506102f9610b4f565b3480156104bd57600080fd5b506008546001600160a01b03166102ac565b3480156104db57600080fd5b506102f96104ea366004611b2d565b610b85565b3480156104fb57600080fd5b506102f961050a366004611b2d565b610bb4565b34801561051b57600080fd5b5061027f610be3565b34801561053057600080fd5b50610334600d5481565b6102f9610548366004611b2d565b610bf2565b34801561055957600080fd5b506102f9610568366004611d0f565b610e13565b34801561057957600080fd5b506102f9610ea9565b34801561058e57600080fd5b506102f961059d366004611d39565b610ee4565b3480156105ae57600080fd5b5061027f610f2e565b3480156105c357600080fd5b506102f96105d2366004611b2d565b610f3b565b3480156105e357600080fd5b5061027f6105f2366004611b2d565b610f6a565b34801561060357600080fd5b5061033460105481565b34801561061957600080fd5b506102f9610628366004611cab565b6110d9565b34801561063957600080fd5b506102f9610648366004611b2d565b611116565b34801561065957600080fd5b50610255610668366004611db5565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106a257600080fd5b506102f96106b1366004611cab565b611145565b3480156106c257600080fd5b506102f96106d1366004611cf4565b611182565b3480156106e257600080fd5b50610334600e5481565b60006001600160e01b031982166380ac58cd60e01b148061071d57506001600160e01b03198216635b5e139f60e01b145b8061073857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461074d90611ddf565b80601f016020809104026020016040519081016040528092919081815260200182805461077990611ddf565b80156107c65780601f1061079b576101008083540402835291602001916107c6565b820191906000526020600020905b8154815290600101906020018083116107a957829003601f168201915b5050505050905090565b60006107db8261121d565b6107f8576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600b805461082190611ddf565b80601f016020809104026020016040519081016040528092919081815260200182805461084d90611ddf565b801561089a5780601f1061086f5761010080835404028352916020019161089a565b820191906000526020600020905b81548152906001019060200180831161087d57829003601f168201915b505050505081565b60006108ad82610abf565b9050806001600160a01b0316836001600160a01b031614156108e25760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610919576108fc8133610668565b610919576040516367d9dca160e11b815260040160405180910390fd5b610924838383611256565b505050565b6008546001600160a01b0316331461095c5760405162461bcd60e51b815260040161095390611e1a565b60405180910390fd5b6012805460ff1916911515919091179055565b6109248383836112b2565b6008546001600160a01b031633146109a45760405162461bcd60e51b815260040161095390611e1a565b6109ae81836114a1565b5050565b6008546001600160a01b031633146109dc5760405162461bcd60e51b815260040161095390611e1a565b6040514790600090339083908381818185875af1925050503d8060008114610a20576040519150601f19603f3d011682016040523d82523d6000602084013e610a25565b606091505b50509050806109ae5760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b6044820152606401610953565b61092483838360405180602001604052806000815250610ee4565b6008546001600160a01b03163314610aac5760405162461bcd60e51b815260040161095390611e1a565b80516109ae90600a9060208401906119f6565b6000610aca826114bb565b5192915050565b6008546001600160a01b03163314610afb5760405162461bcd60e51b815260040161095390611e1a565b601055565b60006001600160a01b038216610b29576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610b795760405162461bcd60e51b815260040161095390611e1a565b610b8360006115df565b565b6008546001600160a01b03163314610baf5760405162461bcd60e51b815260040161095390611e1a565b600d55565b6008546001600160a01b03163314610bde5760405162461bcd60e51b815260040161095390611e1a565b600f55565b60606003805461074d90611ddf565b600d54600f54610c03906001611e65565b6001546000548491900360001901610c1b9190611e65565b1015610c25575060005b610c2f8183611e7d565b341015610c705760405162461bcd60e51b815260206004820152600f60248201526e2737ba1032b737bab3b41022aa241760891b6044820152606401610953565b601054610c7e906001611e65565b6001546000548491900360001901610c969190611e65565b10610cd55760405162461bcd60e51b815260206004820152600f60248201526e426f726564204d6f6f6e204361747360881b6044820152606401610953565b60125460ff1615610d425760405162461bcd60e51b815260206004820152603160248201527f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e604482015270102137b932b21026b7b7b71021b0ba399760791b6064820152608401610953565b600e54610d50906001611e65565b8210610d945760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b6044820152606401610953565b601154336000908152600560205260409020548390600160401b900467ffffffffffffffff16610dc49190611e65565b1115610e095760405162461bcd60e51b8152602060048201526014602482015273546f6f206d616e79207065722077616c6c65742160601b6044820152606401610953565b6109ae33836114a1565b6001600160a01b038216331415610e3d5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610ed35760405162461bcd60e51b815260040161095390611e1a565b6012805461ff001916610100179055565b610eef8484846112b2565b6001600160a01b0383163b15610f2857610f0b84848484611631565b610f28576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600c805461082190611ddf565b6008546001600160a01b03163314610f655760405162461bcd60e51b815260040161095390611e1a565b600e55565b6060610f758261121d565b610fd95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610953565b601254610100900460ff1661107a57600b8054610ff590611ddf565b80601f016020809104026020016040519081016040528092919081815260200182805461102190611ddf565b801561106e5780601f106110435761010080835404028352916020019161106e565b820191906000526020600020905b81548152906001019060200180831161105157829003601f168201915b50505050509050919050565b6000611084611729565b905060008151116110a457604051806020016040528060008152506110d2565b806110ae84611738565b600c6040516020016110c293929190611e9c565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111035760405162461bcd60e51b815260040161095390611e1a565b80516109ae90600c9060208401906119f6565b6008546001600160a01b031633146111405760405162461bcd60e51b815260040161095390611e1a565b601155565b6008546001600160a01b0316331461116f5760405162461bcd60e51b815260040161095390611e1a565b80516109ae90600b9060208401906119f6565b6008546001600160a01b031633146111ac5760405162461bcd60e51b815260040161095390611e1a565b6001600160a01b0381166112115760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610953565b61121a816115df565b50565b600081600111158015611231575060005482105b8015610738575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112bd826114bb565b9050836001600160a01b031681600001516001600160a01b0316146112f45760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061131257506113128533610668565b8061132d575033611322846107d0565b6001600160a01b0316145b90508061134d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661137457604051633a954ecd60e21b815260040160405180910390fd5b61138060008487611256565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611456576000548214611456578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6109ae828260405180602001604052806000815250611836565b604080516060810182526000808252602082018190529181019190915281806001116115c6576000548110156115c657600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906115c45780516001600160a01b03161561155a579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156115bf579392505050565b61155a565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611666903390899088908890600401611f60565b602060405180830381600087803b15801561168057600080fd5b505af19250505080156116b0575060408051601f3d908101601f191682019092526116ad91810190611f9d565b60015b61170b573d8080156116de576040519150601f19603f3d011682016040523d82523d6000602084013e6116e3565b606091505b508051611703576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461074d90611ddf565b60608161175c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611786578061177081611fba565b915061177f9050600a83611feb565b9150611760565b60008167ffffffffffffffff8111156117a1576117a1611c1f565b6040519080825280601f01601f1916602001820160405280156117cb576020820181803683370190505b5090505b8415611721576117e0600183611fff565b91506117ed600a86612016565b6117f8906030611e65565b60f81b81838151811061180d5761180d61202a565b60200101906001600160f81b031916908160001a90535061182f600a86611feb565b94506117cf565b6000546001600160a01b03841661185f57604051622e076360e81b815260040160405180910390fd5b8261187d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b018116918217600160401b67ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b156119a1575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461196a6000878480600101955087611631565b611987576040516368d2bf6b60e11b815260040160405180910390fd5b80821061191f57826000541461199c57600080fd5b6119e6565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106119a2575b506000908155610f289085838684565b828054611a0290611ddf565b90600052602060002090601f016020900481019282611a245760008555611a6a565b82601f10611a3d57805160ff1916838001178555611a6a565b82800160010185558215611a6a579182015b82811115611a6a578251825591602001919060010190611a4f565b50611a76929150611a7a565b5090565b5b80821115611a765760008155600101611a7b565b6001600160e01b03198116811461121a57600080fd5b600060208284031215611ab757600080fd5b81356110d281611a8f565b60005b83811015611add578181015183820152602001611ac5565b83811115610f285750506000910152565b60008151808452611b06816020860160208601611ac2565b601f01601f19169290920160200192915050565b6020815260006110d26020830184611aee565b600060208284031215611b3f57600080fd5b5035919050565b80356001600160a01b0381168114611b5d57600080fd5b919050565b60008060408385031215611b7557600080fd5b611b7e83611b46565b946020939093013593505050565b80358015158114611b5d57600080fd5b600060208284031215611bae57600080fd5b6110d282611b8c565b600080600060608486031215611bcc57600080fd5b611bd584611b46565b9250611be360208501611b46565b9150604084013590509250925092565b60008060408385031215611c0657600080fd5b82359150611c1660208401611b46565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c5057611c50611c1f565b604051601f8501601f19908116603f01168101908282118183101715611c7857611c78611c1f565b81604052809350858152868686011115611c9157600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611cbd57600080fd5b813567ffffffffffffffff811115611cd457600080fd5b8201601f81018413611ce557600080fd5b61172184823560208401611c35565b600060208284031215611d0657600080fd5b6110d282611b46565b60008060408385031215611d2257600080fd5b611d2b83611b46565b9150611c1660208401611b8c565b60008060008060808587031215611d4f57600080fd5b611d5885611b46565b9350611d6660208601611b46565b925060408501359150606085013567ffffffffffffffff811115611d8957600080fd5b8501601f81018713611d9a57600080fd5b611da987823560208401611c35565b91505092959194509250565b60008060408385031215611dc857600080fd5b611dd183611b46565b9150611c1660208401611b46565b600181811c90821680611df357607f821691505b60208210811415611e1457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611e7857611e78611e4f565b500190565b6000816000190483118215151615611e9757611e97611e4f565b500290565b600084516020611eaf8285838a01611ac2565b855191840191611ec28184848a01611ac2565b8554920191600090600181811c9080831680611edf57607f831692505b858310811415611efd57634e487b7160e01b85526022600452602485fd5b808015611f115760018114611f2257611f4f565b60ff19851688528388019550611f4f565b60008b81526020902060005b85811015611f475781548a820152908401908801611f2e565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f9390830184611aee565b9695505050505050565b600060208284031215611faf57600080fd5b81516110d281611a8f565b6000600019821415611fce57611fce611e4f565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611ffa57611ffa611fd5565b500490565b60008282101561201157612011611e4f565b500390565b60008261202557612025611fd5565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122049b64ddfc7e8805cd738bef773cefd9553ad5f8d4023214b491d4b9b120158b164736f6c634300080900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d59744a68764542764d5636576e7474636f71655258504c48554d42424a6d6d516b6e626a526f7a36684d51762f68696464656e2e6a736f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d59744a68764542764d5636576e7474636f71655258504c48554d42424a6d6d516b6e626a526f7a36684d51762f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102305760003560e01c8063715018a61161012e578063c6682862116100ab578063e268e4d31161006f578063e268e4d31461062d578063e985e9c51461064d578063f2c4ce1e14610696578063f2fde38b146106b6578063f968adbe146106d657600080fd5b8063c6682862146105a2578063c6f6f216146105b7578063c87b56dd146105d7578063d5abeb01146105f7578063da3ef23f1461060d57600080fd5b8063a035b1fe116100f2578063a035b1fe14610524578063a0712d681461053a578063a22cb4651461054d578063a475b5dd1461056d578063b88d4fde1461058257600080fd5b8063715018a61461049c5780638da5cb5b146104b157806391b7f5ed146104cf57806392910eec146104ef57806395d89b411461050f57600080fd5b8063333e44e6116101bc57806355f804b31161018057806355f804b3146104025780635c975abb146104225780636352211e1461043c5780636f8b44b01461045c57806370a082311461047c57600080fd5b8063333e44e6146103825780633ccfd60b1461039857806342842e0e146103ad578063453c2310146103cd57806351830227146103e357600080fd5b8063095ea7b311610203578063095ea7b3146102d957806316c38b3c146102fb57806318160ddd1461031b57806323b872dd146103425780632cfee9901461036257600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063081c8c44146102c4575b600080fd5b34801561024157600080fd5b50610255610250366004611aa5565b6106ec565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f61073e565b6040516102619190611b1a565b34801561029857600080fd5b506102ac6102a7366004611b2d565b6107d0565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b5061027f610814565b3480156102e557600080fd5b506102f96102f4366004611b62565b6108a2565b005b34801561030757600080fd5b506102f9610316366004611b9c565b610929565b34801561032757600080fd5b5060015460005403600019015b604051908152602001610261565b34801561034e57600080fd5b506102f961035d366004611bb7565b61096f565b34801561036e57600080fd5b506102f961037d366004611bf3565b61097a565b34801561038e57600080fd5b50610334600f5481565b3480156103a457600080fd5b506102f96109b2565b3480156103b957600080fd5b506102f96103c8366004611bb7565b610a67565b3480156103d957600080fd5b5061033460115481565b3480156103ef57600080fd5b5060125461025590610100900460ff1681565b34801561040e57600080fd5b506102f961041d366004611cab565b610a82565b34801561042e57600080fd5b506012546102559060ff1681565b34801561044857600080fd5b506102ac610457366004611b2d565b610abf565b34801561046857600080fd5b506102f9610477366004611b2d565b610ad1565b34801561048857600080fd5b50610334610497366004611cf4565b610b00565b3480156104a857600080fd5b506102f9610b4f565b3480156104bd57600080fd5b506008546001600160a01b03166102ac565b3480156104db57600080fd5b506102f96104ea366004611b2d565b610b85565b3480156104fb57600080fd5b506102f961050a366004611b2d565b610bb4565b34801561051b57600080fd5b5061027f610be3565b34801561053057600080fd5b50610334600d5481565b6102f9610548366004611b2d565b610bf2565b34801561055957600080fd5b506102f9610568366004611d0f565b610e13565b34801561057957600080fd5b506102f9610ea9565b34801561058e57600080fd5b506102f961059d366004611d39565b610ee4565b3480156105ae57600080fd5b5061027f610f2e565b3480156105c357600080fd5b506102f96105d2366004611b2d565b610f3b565b3480156105e357600080fd5b5061027f6105f2366004611b2d565b610f6a565b34801561060357600080fd5b5061033460105481565b34801561061957600080fd5b506102f9610628366004611cab565b6110d9565b34801561063957600080fd5b506102f9610648366004611b2d565b611116565b34801561065957600080fd5b50610255610668366004611db5565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106a257600080fd5b506102f96106b1366004611cab565b611145565b3480156106c257600080fd5b506102f96106d1366004611cf4565b611182565b3480156106e257600080fd5b50610334600e5481565b60006001600160e01b031982166380ac58cd60e01b148061071d57506001600160e01b03198216635b5e139f60e01b145b8061073857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461074d90611ddf565b80601f016020809104026020016040519081016040528092919081815260200182805461077990611ddf565b80156107c65780601f1061079b576101008083540402835291602001916107c6565b820191906000526020600020905b8154815290600101906020018083116107a957829003601f168201915b5050505050905090565b60006107db8261121d565b6107f8576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600b805461082190611ddf565b80601f016020809104026020016040519081016040528092919081815260200182805461084d90611ddf565b801561089a5780601f1061086f5761010080835404028352916020019161089a565b820191906000526020600020905b81548152906001019060200180831161087d57829003601f168201915b505050505081565b60006108ad82610abf565b9050806001600160a01b0316836001600160a01b031614156108e25760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610919576108fc8133610668565b610919576040516367d9dca160e11b815260040160405180910390fd5b610924838383611256565b505050565b6008546001600160a01b0316331461095c5760405162461bcd60e51b815260040161095390611e1a565b60405180910390fd5b6012805460ff1916911515919091179055565b6109248383836112b2565b6008546001600160a01b031633146109a45760405162461bcd60e51b815260040161095390611e1a565b6109ae81836114a1565b5050565b6008546001600160a01b031633146109dc5760405162461bcd60e51b815260040161095390611e1a565b6040514790600090339083908381818185875af1925050503d8060008114610a20576040519150601f19603f3d011682016040523d82523d6000602084013e610a25565b606091505b50509050806109ae5760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b6044820152606401610953565b61092483838360405180602001604052806000815250610ee4565b6008546001600160a01b03163314610aac5760405162461bcd60e51b815260040161095390611e1a565b80516109ae90600a9060208401906119f6565b6000610aca826114bb565b5192915050565b6008546001600160a01b03163314610afb5760405162461bcd60e51b815260040161095390611e1a565b601055565b60006001600160a01b038216610b29576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610b795760405162461bcd60e51b815260040161095390611e1a565b610b8360006115df565b565b6008546001600160a01b03163314610baf5760405162461bcd60e51b815260040161095390611e1a565b600d55565b6008546001600160a01b03163314610bde5760405162461bcd60e51b815260040161095390611e1a565b600f55565b60606003805461074d90611ddf565b600d54600f54610c03906001611e65565b6001546000548491900360001901610c1b9190611e65565b1015610c25575060005b610c2f8183611e7d565b341015610c705760405162461bcd60e51b815260206004820152600f60248201526e2737ba1032b737bab3b41022aa241760891b6044820152606401610953565b601054610c7e906001611e65565b6001546000548491900360001901610c969190611e65565b10610cd55760405162461bcd60e51b815260206004820152600f60248201526e426f726564204d6f6f6e204361747360881b6044820152606401610953565b60125460ff1615610d425760405162461bcd60e51b815260206004820152603160248201527f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e604482015270102137b932b21026b7b7b71021b0ba399760791b6064820152608401610953565b600e54610d50906001611e65565b8210610d945760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b6044820152606401610953565b601154336000908152600560205260409020548390600160401b900467ffffffffffffffff16610dc49190611e65565b1115610e095760405162461bcd60e51b8152602060048201526014602482015273546f6f206d616e79207065722077616c6c65742160601b6044820152606401610953565b6109ae33836114a1565b6001600160a01b038216331415610e3d5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610ed35760405162461bcd60e51b815260040161095390611e1a565b6012805461ff001916610100179055565b610eef8484846112b2565b6001600160a01b0383163b15610f2857610f0b84848484611631565b610f28576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600c805461082190611ddf565b6008546001600160a01b03163314610f655760405162461bcd60e51b815260040161095390611e1a565b600e55565b6060610f758261121d565b610fd95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610953565b601254610100900460ff1661107a57600b8054610ff590611ddf565b80601f016020809104026020016040519081016040528092919081815260200182805461102190611ddf565b801561106e5780601f106110435761010080835404028352916020019161106e565b820191906000526020600020905b81548152906001019060200180831161105157829003601f168201915b50505050509050919050565b6000611084611729565b905060008151116110a457604051806020016040528060008152506110d2565b806110ae84611738565b600c6040516020016110c293929190611e9c565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111035760405162461bcd60e51b815260040161095390611e1a565b80516109ae90600c9060208401906119f6565b6008546001600160a01b031633146111405760405162461bcd60e51b815260040161095390611e1a565b601155565b6008546001600160a01b0316331461116f5760405162461bcd60e51b815260040161095390611e1a565b80516109ae90600b9060208401906119f6565b6008546001600160a01b031633146111ac5760405162461bcd60e51b815260040161095390611e1a565b6001600160a01b0381166112115760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610953565b61121a816115df565b50565b600081600111158015611231575060005482105b8015610738575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112bd826114bb565b9050836001600160a01b031681600001516001600160a01b0316146112f45760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061131257506113128533610668565b8061132d575033611322846107d0565b6001600160a01b0316145b90508061134d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661137457604051633a954ecd60e21b815260040160405180910390fd5b61138060008487611256565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611456576000548214611456578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6109ae828260405180602001604052806000815250611836565b604080516060810182526000808252602082018190529181019190915281806001116115c6576000548110156115c657600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906115c45780516001600160a01b03161561155a579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156115bf579392505050565b61155a565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611666903390899088908890600401611f60565b602060405180830381600087803b15801561168057600080fd5b505af19250505080156116b0575060408051601f3d908101601f191682019092526116ad91810190611f9d565b60015b61170b573d8080156116de576040519150601f19603f3d011682016040523d82523d6000602084013e6116e3565b606091505b508051611703576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461074d90611ddf565b60608161175c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611786578061177081611fba565b915061177f9050600a83611feb565b9150611760565b60008167ffffffffffffffff8111156117a1576117a1611c1f565b6040519080825280601f01601f1916602001820160405280156117cb576020820181803683370190505b5090505b8415611721576117e0600183611fff565b91506117ed600a86612016565b6117f8906030611e65565b60f81b81838151811061180d5761180d61202a565b60200101906001600160f81b031916908160001a90535061182f600a86611feb565b94506117cf565b6000546001600160a01b03841661185f57604051622e076360e81b815260040160405180910390fd5b8261187d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b018116918217600160401b67ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b156119a1575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461196a6000878480600101955087611631565b611987576040516368d2bf6b60e11b815260040160405180910390fd5b80821061191f57826000541461199c57600080fd5b6119e6565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106119a2575b506000908155610f289085838684565b828054611a0290611ddf565b90600052602060002090601f016020900481019282611a245760008555611a6a565b82601f10611a3d57805160ff1916838001178555611a6a565b82800160010185558215611a6a579182015b82811115611a6a578251825591602001919060010190611a4f565b50611a76929150611a7a565b5090565b5b80821115611a765760008155600101611a7b565b6001600160e01b03198116811461121a57600080fd5b600060208284031215611ab757600080fd5b81356110d281611a8f565b60005b83811015611add578181015183820152602001611ac5565b83811115610f285750506000910152565b60008151808452611b06816020860160208601611ac2565b601f01601f19169290920160200192915050565b6020815260006110d26020830184611aee565b600060208284031215611b3f57600080fd5b5035919050565b80356001600160a01b0381168114611b5d57600080fd5b919050565b60008060408385031215611b7557600080fd5b611b7e83611b46565b946020939093013593505050565b80358015158114611b5d57600080fd5b600060208284031215611bae57600080fd5b6110d282611b8c565b600080600060608486031215611bcc57600080fd5b611bd584611b46565b9250611be360208501611b46565b9150604084013590509250925092565b60008060408385031215611c0657600080fd5b82359150611c1660208401611b46565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c5057611c50611c1f565b604051601f8501601f19908116603f01168101908282118183101715611c7857611c78611c1f565b81604052809350858152868686011115611c9157600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611cbd57600080fd5b813567ffffffffffffffff811115611cd457600080fd5b8201601f81018413611ce557600080fd5b61172184823560208401611c35565b600060208284031215611d0657600080fd5b6110d282611b46565b60008060408385031215611d2257600080fd5b611d2b83611b46565b9150611c1660208401611b8c565b60008060008060808587031215611d4f57600080fd5b611d5885611b46565b9350611d6660208601611b46565b925060408501359150606085013567ffffffffffffffff811115611d8957600080fd5b8501601f81018713611d9a57600080fd5b611da987823560208401611c35565b91505092959194509250565b60008060408385031215611dc857600080fd5b611dd183611b46565b9150611c1660208401611b46565b600181811c90821680611df357607f821691505b60208210811415611e1457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611e7857611e78611e4f565b500190565b6000816000190483118215151615611e9757611e97611e4f565b500290565b600084516020611eaf8285838a01611ac2565b855191840191611ec28184848a01611ac2565b8554920191600090600181811c9080831680611edf57607f831692505b858310811415611efd57634e487b7160e01b85526022600452602485fd5b808015611f115760018114611f2257611f4f565b60ff19851688528388019550611f4f565b60008b81526020902060005b85811015611f475781548a820152908401908801611f2e565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f9390830184611aee565b9695505050505050565b600060208284031215611faf57600080fd5b81516110d281611a8f565b6000600019821415611fce57611fce611e4f565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611ffa57611ffa611fd5565b500490565b60008282101561201157612011611e4f565b500390565b60008261202557612025611fd5565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122049b64ddfc7e8805cd738bef773cefd9553ad5f8d4023214b491d4b9b120158b164736f6c63430008090033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d59744a68764542764d5636576e7474636f71655258504c48554d42424a6d6d516b6e626a526f7a36684d51762f68696464656e2e6a736f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d59744a68764542764d5636576e7474636f71655258504c48554d42424a6d6d516b6e626a526f7a36684d51762f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmYtJhvEBvMV6WnttcoqeRXPLHUMBBJmmQknbjRoz6hMQv/hidden.json
Arg [1] : _initNotRevealedUri (string): ipfs://QmYtJhvEBvMV6WnttcoqeRXPLHUMBBJmmQknbjRoz6hMQv/hidden.json

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [3] : 697066733a2f2f516d59744a68764542764d5636576e7474636f71655258504c
Arg [4] : 48554d42424a6d6d516b6e626a526f7a36684d51762f68696464656e2e6a736f
Arg [5] : 6e00000000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [7] : 697066733a2f2f516d59744a68764542764d5636576e7474636f71655258504c
Arg [8] : 48554d42424a6d6d516b6e626a526f7a36684d51762f68696464656e2e6a736f
Arg [9] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

48581:3568:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29686:305;;;;;;;;;;-1:-1:-1;29686:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;29686:305:0;;;;;;;;32801:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34305:204::-;;;;;;;;;;-1:-1:-1;34305:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;34305:204:0;1528:203:1;48703:28:0;;;;;;;;;;;;;:::i;33867:372::-;;;;;;;;;;-1:-1:-1;33867:372:0;;;;;:::i;:::-;;:::i;:::-;;51296:83;;;;;;;;;;-1:-1:-1;51296:83:0;;;;;:::i;:::-;;:::i;28926:312::-;;;;;;;;;;-1:-1:-1;51841:1:0;29189:12;28979:7;29173:13;:28;-1:-1:-1;;29173:46:0;28926:312;;;2669:25:1;;;2657:2;2642:18;28926:312:0;2523:177:1;35170:170:0;;;;;;;;;;-1:-1:-1;35170:170:0;;;;;:::i;:::-;;:::i;51055:131::-;;;;;;;;;;-1:-1:-1;51055:131:0;;;;;:::i;:::-;;:::i;48857:31::-;;;;;;;;;;;;;;;;51931:209;;;;;;;;;;;;;:::i;35411:185::-;;;;;;;;;;-1:-1:-1;35411:185:0;;;;;:::i;:::-;;:::i;48951:32::-;;;;;;;;;;;;;;;;49055:28;;;;;;;;;;-1:-1:-1;49055:28:0;;;;;;;;;;;51515:98;;;;;;;;;;-1:-1:-1;51515:98:0;;;;;:::i;:::-;;:::i;49022:26::-;;;;;;;;;;-1:-1:-1;49022:26:0;;;;;;;;32609:125;;;;;;;;;;-1:-1:-1;32609:125:0;;;;;:::i;:::-;;:::i;50947:100::-;;;;;;;;;;-1:-1:-1;50947:100:0;;;;;:::i;:::-;;:::i;30055:206::-;;;;;;;;;;-1:-1:-1;30055:206:0;;;;;:::i;:::-;;:::i;5871:103::-;;;;;;;;;;;;;:::i;5220:87::-;;;;;;;;;;-1:-1:-1;5293:6:0;;-1:-1:-1;;;;;5293:6:0;5220:87;;51196:92;;;;;;;;;;-1:-1:-1;51196:92:0;;;;;:::i;:::-;;:::i;50614:95::-;;;;;;;;;;-1:-1:-1;50614:95:0;;;;;:::i;:::-;;:::i;32970:104::-;;;;;;;;;;;;;:::i;48782:34::-;;;;;;;;;;;;;;;;49432:671;;;;;;:::i;:::-;;:::i;34581:287::-;;;;;;;;;;-1:-1:-1;34581:287:0;;;;;:::i;:::-;;:::i;51858:63::-;;;;;;;;;;;;;:::i;35667:370::-;;;;;;;;;;-1:-1:-1;35667:370:0;;;;;:::i;:::-;;:::i;48738:37::-;;;;;;;;;;;;;:::i;50843:96::-;;;;;;;;;;-1:-1:-1;50843:96:0;;;;;:::i;:::-;;:::i;50109:497::-;;;;;;;;;;-1:-1:-1;50109:497:0;;;;;:::i;:::-;;:::i;48913:31::-;;;;;;;;;;;;;;;;51619:122;;;;;;;;;;-1:-1:-1;51619:122:0;;;;;:::i;:::-;;:::i;50717:114::-;;;;;;;;;;-1:-1:-1;50717:114:0;;;;;:::i;:::-;;:::i;34939:164::-;;;;;;;;;;-1:-1:-1;34939:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;35060:25:0;;;35036:4;35060:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34939:164;51389:120;;;;;;;;;;-1:-1:-1;51389:120:0;;;;;:::i;:::-;;:::i;6129:201::-;;;;;;;;;;-1:-1:-1;6129:201:0;;;;;:::i;:::-;;:::i;48823:27::-;;;;;;;;;;;;;;;;29686:305;29788:4;-1:-1:-1;;;;;;29825:40:0;;-1:-1:-1;;;29825:40:0;;:105;;-1:-1:-1;;;;;;;29882:48:0;;-1:-1:-1;;;29882:48:0;29825:105;:158;;;-1:-1:-1;;;;;;;;;;18136:40:0;;;29947:36;29805:178;29686:305;-1:-1:-1;;29686:305:0:o;32801:100::-;32855:13;32888:5;32881:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32801:100;:::o;34305:204::-;34373:7;34398:16;34406:7;34398;:16::i;:::-;34393:64;;34423:34;;-1:-1:-1;;;34423:34:0;;;;;;;;;;;34393:64;-1:-1:-1;34477:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34477:24:0;;34305:204::o;48703:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33867:372::-;33940:13;33956:24;33972:7;33956:15;:24::i;:::-;33940:40;;34001:5;-1:-1:-1;;;;;33995:11:0;:2;-1:-1:-1;;;;;33995:11:0;;33991:48;;;34015:24;;-1:-1:-1;;;34015:24:0;;;;;;;;;;;33991:48;4024:10;-1:-1:-1;;;;;34056:21:0;;;34052:139;;34083:37;34100:5;4024:10;34939:164;:::i;34083:37::-;34079:112;;34144:35;;-1:-1:-1;;;34144:35:0;;;;;;;;;;;34079:112;34203:28;34212:2;34216:7;34225:5;34203:8;:28::i;:::-;33929:310;33867:372;;:::o;51296:83::-;5293:6;;-1:-1:-1;;;;;5293:6:0;4024:10;5440:23;5432:68;;;;-1:-1:-1;;;5432:68:0;;;;;;;:::i;:::-;;;;;;;;;51356:6:::1;:15:::0;;-1:-1:-1;;51356:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51296:83::o;35170:170::-;35304:28;35314:4;35320:2;35324:7;35304:9;:28::i;51055:131::-;5293:6;;-1:-1:-1;;;;;5293:6:0;4024:10;5440:23;5432:68;;;;-1:-1:-1;;;5432:68:0;;;;;;;:::i;:::-;51145:33:::1;51155:9;51166:11;51145:9;:33::i;:::-;51055:131:::0;;:::o;51931:209::-;5293:6;;-1:-1:-1;;;;;5293:6:0;4024:10;5440:23;5432:68;;;;-1:-1:-1;;;5432:68:0;;;;;;;:::i;:::-;52050:37:::1;::::0;51999:21:::1;::::0;51981:15:::1;::::0;4024:10;;51999:21;;51981:15;52050:37;51981:15;52050:37;51999:21;4024:10;52050:37:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52031:56;;;52106:7;52098:34;;;::::0;-1:-1:-1;;;52098:34:0;;7067:2:1;52098:34:0::1;::::0;::::1;7049:21:1::0;7106:2;7086:18;;;7079:30;-1:-1:-1;;;7125:18:1;;;7118:44;7179:18;;52098:34:0::1;6865:338:1::0;35411:185:0;35549:39;35566:4;35572:2;35576:7;35549:39;;;;;;;;;;;;:16;:39::i;51515:98::-;5293:6;;-1:-1:-1;;;;;5293:6:0;4024:10;5440:23;5432:68;;;;-1:-1:-1;;;5432:68:0;;;;;;;:::i;:::-;51586:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;32609:125::-:0;32673:7;32700:21;32713:7;32700:12;:21::i;:::-;:26;;32609:125;-1:-1:-1;;32609:125:0:o;50947:100::-;5293:6;;-1:-1:-1;;;;;5293:6:0;4024:10;5440:23;5432:68;;;;-1:-1:-1;;;5432:68:0;;;;;;;:::i;:::-;51017:9:::1;:22:::0;50947:100::o;30055:206::-;30119:7;-1:-1:-1;;;;;30143:19:0;;30139:60;;30171:28;;-1:-1:-1;;;30171:28:0;;;;;;;;;;;30139:60;-1:-1:-1;;;;;;30225:19:0;;;;;:12;:19;;;;;:27;;;;30055:206::o;5871:103::-;5293:6;;-1:-1:-1;;;;;5293:6:0;4024:10;5440:23;5432:68;;;;-1:-1:-1;;;5432:68:0;;;;;;;:::i;:::-;5936:30:::1;5963:1;5936:18;:30::i;:::-;5871:103::o:0;51196:92::-;5293:6;;-1:-1:-1;;;;;5293:6:0;4024:10;5440:23;5432:68;;;;-1:-1:-1;;;5432:68:0;;;;;;;:::i;:::-;51263:5:::1;:17:::0;51196:92::o;50614:95::-;5293:6;;-1:-1:-1;;;;;5293:6:0;4024:10;5440:23;5432:68;;;;-1:-1:-1;;;5432:68:0;;;;;;;:::i;:::-;50683:9:::1;:18:::0;50614:95::o;32970:104::-;33026:13;33059:7;33052:14;;;;;:::i;49432:671::-;49510:5;;49560:9;;:13;;49572:1;49560:13;:::i;:::-;51841:1;29189:12;28979:7;29173:13;49546:11;;29173:28;;-1:-1:-1;;29173:46:0;49530:27;;;;:::i;:::-;:43;49526:84;;;-1:-1:-1;49597:1:0;49526:84;49643:18;49657:4;49643:11;:18;:::i;:::-;49630:9;:31;;49622:59;;;;-1:-1:-1;;;49622:59:0;;7848:2:1;49622:59:0;;;7830:21:1;7887:2;7867:18;;;7860:30;-1:-1:-1;;;7906:18:1;;;7899:45;7961:18;;49622:59:0;7646:339:1;49622:59:0;49730:9;;:13;;49742:1;49730:13;:::i;:::-;51841:1;29189:12;28979:7;29173:13;49716:11;;29173:28;;-1:-1:-1;;29173:46:0;49700:27;;;;:::i;:::-;:43;49692:71;;;;-1:-1:-1;;;49692:71:0;;8192:2:1;49692:71:0;;;8174:21:1;8231:2;8211:18;;;8204:30;-1:-1:-1;;;8250:18:1;;;8243:45;8305:18;;49692:71:0;7990:339:1;49692:71:0;49783:6;;;;49782:7;49774:69;;;;-1:-1:-1;;;49774:69:0;;8536:2:1;49774:69:0;;;8518:21:1;8575:2;8555:18;;;8548:30;8614:34;8594:18;;;8587:62;-1:-1:-1;;;8665:18:1;;;8658:47;8722:19;;49774:69:0;8334:413:1;49774:69:0;49876:8;;:12;;49887:1;49876:12;:::i;:::-;49862:11;:26;49854:58;;;;-1:-1:-1;;;49854:58:0;;8954:2:1;49854:58:0;;;8936:21:1;8993:2;8973:18;;;8966:30;-1:-1:-1;;;9012:18:1;;;9005:49;9071:18;;49854:58:0;8752:343:1;49854:58:0;49988:12;;49959:10;30404:7;30439:19;;;:12;:19;;;;;:32;49973:11;;-1:-1:-1;;;30439:32:0;;;;49945:39;;;;:::i;:::-;:55;;49923:125;;;;-1:-1:-1;;;49923:125:0;;9302:2:1;49923:125:0;;;9284:21:1;9341:2;9321:18;;;9314:30;-1:-1:-1;;;9360:18:1;;;9353:50;9420:18;;49923:125:0;9100:344:1;49923:125:0;50061:34;50071:10;50083:11;50061:9;:34::i;34581:287::-;-1:-1:-1;;;;;34680:24:0;;4024:10;34680:24;34676:54;;;34713:17;;-1:-1:-1;;;34713:17:0;;;;;;;;;;;34676:54;4024:10;34743:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34743:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34743:53:0;;;;;;;;;;34812:48;;540:41:1;;;34743:42:0;;4024:10;34812:48;;513:18:1;34812:48:0;;;;;;;34581:287;;:::o;51858:63::-;5293:6;;-1:-1:-1;;;;;5293:6:0;4024:10;5440:23;5432:68;;;;-1:-1:-1;;;5432:68:0;;;;;;;:::i;:::-;51900:8:::1;:15:::0;;-1:-1:-1;;51900:15:0::1;;;::::0;;51858:63::o;35667:370::-;35834:28;35844:4;35850:2;35854:7;35834:9;:28::i;:::-;-1:-1:-1;;;;;35877:13:0;;8216:19;:23;35873:157;;35898:56;35929:4;35935:2;35939:7;35948:5;35898:30;:56::i;:::-;35894:136;;35978:40;;-1:-1:-1;;;35978:40:0;;;;;;;;;;;35894:136;35667:370;;;;:::o;48738:37::-;;;;;;;:::i;50843:96::-;5293:6;;-1:-1:-1;;;;;5293:6:0;4024:10;5440:23;5432:68;;;;-1:-1:-1;;;5432:68:0;;;;;;;:::i;:::-;50911:8:::1;:20:::0;50843:96::o;50109:497::-;50207:13;50248:16;50256:7;50248;:16::i;:::-;50232:97;;;;-1:-1:-1;;;50232:97:0;;9651:2:1;50232:97:0;;;9633:21:1;9690:2;9670:18;;;9663:30;9729:34;9709:18;;;9702:62;-1:-1:-1;;;9780:18:1;;;9773:45;9835:19;;50232:97:0;9449:411:1;50232:97:0;50345:8;;;;;;;50342:62;;50382:14;50375:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50109:497;;;:::o;50342:62::-;50412:28;50443:10;:8;:10::i;:::-;50412:41;;50498:1;50473:14;50467:28;:32;:133;;;;;;;;;;;;;;;;;50535:14;50551:18;:7;:16;:18::i;:::-;50571:13;50518:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50467:133;50460:140;50109:497;-1:-1:-1;;;50109:497:0:o;51619:122::-;5293:6;;-1:-1:-1;;;;;5293:6:0;4024:10;5440:23;5432:68;;;;-1:-1:-1;;;5432:68:0;;;;;;;:::i;:::-;51702:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;50717:114::-:0;5293:6;;-1:-1:-1;;;;;5293:6:0;4024:10;5440:23;5432:68;;;;-1:-1:-1;;;5432:68:0;;;;;;;:::i;:::-;50795:12:::1;:28:::0;50717:114::o;51389:120::-;5293:6;;-1:-1:-1;;;;;5293:6:0;4024:10;5440:23;5432:68;;;;-1:-1:-1;;;5432:68:0;;;;;;;:::i;:::-;51471:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;6129:201::-:0;5293:6;;-1:-1:-1;;;;;5293:6:0;4024:10;5440:23;5432:68;;;;-1:-1:-1;;;5432:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6218:22:0;::::1;6210:73;;;::::0;-1:-1:-1;;;6210:73:0;;11725:2:1;6210:73:0::1;::::0;::::1;11707:21:1::0;11764:2;11744:18;;;11737:30;11803:34;11783:18;;;11776:62;-1:-1:-1;;;11854:18:1;;;11847:36;11900:19;;6210:73:0::1;11523:402:1::0;6210:73:0::1;6294:28;6313:8;6294:18;:28::i;:::-;6129:201:::0;:::o;36292:174::-;36349:4;36392:7;51841:1;36373:26;;:53;;;;;36413:13;;36403:7;:23;36373:53;:85;;;;-1:-1:-1;;36431:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;36431:27:0;;;;36430:28;;36292:174::o;45514:196::-;45629:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;45629:29:0;-1:-1:-1;;;;;45629:29:0;;;;;;;;;45674:28;;45629:24;;45674:28;;;;;;;45514:196;;;:::o;40462:2130::-;40577:35;40615:21;40628:7;40615:12;:21::i;:::-;40577:59;;40675:4;-1:-1:-1;;;;;40653:26:0;:13;:18;;;-1:-1:-1;;;;;40653:26:0;;40649:67;;40688:28;;-1:-1:-1;;;40688:28:0;;;;;;;;;;;40649:67;40729:22;4024:10;-1:-1:-1;;;;;40755:20:0;;;;:73;;-1:-1:-1;40792:36:0;40809:4;4024:10;34939:164;:::i;40792:36::-;40755:126;;;-1:-1:-1;4024:10:0;40845:20;40857:7;40845:11;:20::i;:::-;-1:-1:-1;;;;;40845:36:0;;40755:126;40729:153;;40900:17;40895:66;;40926:35;;-1:-1:-1;;;40926:35:0;;;;;;;;;;;40895:66;-1:-1:-1;;;;;40976:16:0;;40972:52;;41001:23;;-1:-1:-1;;;41001:23:0;;;;;;;;;;;40972:52;41145:35;41162:1;41166:7;41175:4;41145:8;:35::i;:::-;-1:-1:-1;;;;;41476:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;41476:31:0;;;;;;;-1:-1:-1;;41476:31:0;;;;;;;41522:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;41522:29:0;;;;;;;;;;;41602:20;;;:11;:20;;;;;;41637:18;;-1:-1:-1;;;;;;41670:49:0;;;;-1:-1:-1;;;41703:15:0;41670:49;;;;;;;;;;41993:11;;42053:24;;;;;42096:13;;41602:20;;42053:24;;42096:13;42092:384;;42306:13;;42291:11;:28;42287:174;;42344:20;;42413:28;;;;42387:54;;-1:-1:-1;;;42387:54:0;-1:-1:-1;;;;;;42387:54:0;;;-1:-1:-1;;;;;42344:20:0;;42387:54;;;;42287:174;41451:1036;;;42523:7;42519:2;-1:-1:-1;;;;;42504:27:0;42513:4;-1:-1:-1;;;;;42504:27:0;;;;;;;;;;;40566:2026;;40462:2130;;;:::o;36550:104::-;36619:27;36629:2;36633:8;36619:27;;;;;;;;;;;;:9;:27::i;31436:1111::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;31547:7:0;;51841:1;31596:23;31592:888;;31632:13;;31625:4;:20;31621:859;;;31666:31;31700:17;;;:11;:17;;;;;;;;;31666:51;;;;;;;;;-1:-1:-1;;;;;31666:51:0;;;;-1:-1:-1;;;31666:51:0;;;;;;;;;;;-1:-1:-1;;;31666:51:0;;;;;;;;;;;;;;31736:729;;31786:14;;-1:-1:-1;;;;;31786:28:0;;31782:101;;31850:9;31436:1111;-1:-1:-1;;;31436:1111:0:o;31782:101::-;-1:-1:-1;;;32225:6:0;32270:17;;;;:11;:17;;;;;;;;;32258:29;;;;;;;;;-1:-1:-1;;;;;32258:29:0;;;;;-1:-1:-1;;;32258:29:0;;;;;;;;;;;-1:-1:-1;;;32258:29:0;;;;;;;;;;;;;32318:28;32314:109;;32386:9;31436:1111;-1:-1:-1;;;31436:1111:0:o;32314:109::-;32185:261;;;31647:833;31621:859;32508:31;;-1:-1:-1;;;32508:31:0;;;;;;;;;;;6490:191;6583:6;;;-1:-1:-1;;;;;6600:17:0;;;-1:-1:-1;;;;;;6600:17:0;;;;;;;6633:40;;6583:6;;;6600:17;6583:6;;6633:40;;6564:16;;6633:40;6553:128;6490:191;:::o;46202:667::-;46386:72;;-1:-1:-1;;;46386:72:0;;46365:4;;-1:-1:-1;;;;;46386:36:0;;;;;:72;;4024:10;;46437:4;;46443:7;;46452:5;;46386:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46386:72:0;;;;;;;;-1:-1:-1;;46386:72:0;;;;;;;;;;;;:::i;:::-;;;46382:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46620:13:0;;46616:235;;46666:40;;-1:-1:-1;;;46666:40:0;;;;;;;;;;;46616:235;46809:6;46803:13;46794:6;46790:2;46786:15;46779:38;46382:480;-1:-1:-1;;;;;;46505:55:0;-1:-1:-1;;;46505:55:0;;-1:-1:-1;46382:480:0;46202:667;;;;;;:::o;49316:108::-;49376:13;49405:7;49398:14;;;;;:::i;1506:723::-;1562:13;1783:10;1779:53;;-1:-1:-1;;1810:10:0;;;;;;;;;;;;-1:-1:-1;;;1810:10:0;;;;;1506:723::o;1779:53::-;1857:5;1842:12;1898:78;1905:9;;1898:78;;1931:8;;;;:::i;:::-;;-1:-1:-1;1954:10:0;;-1:-1:-1;1962:2:0;1954:10;;:::i;:::-;;;1898:78;;;1986:19;2018:6;2008:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2008:17:0;;1986:39;;2036:154;2043:10;;2036:154;;2070:11;2080:1;2070:11;;:::i;:::-;;-1:-1:-1;2139:10:0;2147:2;2139:5;:10;:::i;:::-;2126:24;;:2;:24;:::i;:::-;2113:39;;2096:6;2103;2096:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2096:56:0;;;;;;;;-1:-1:-1;2167:11:0;2176:2;2167:11;;:::i;:::-;;;2036:154;;37027:1749;37150:20;37173:13;-1:-1:-1;;;;;37201:16:0;;37197:48;;37226:19;;-1:-1:-1;;;37226:19:0;;;;;;;;;;;37197:48;37260:13;37256:44;;37282:18;;-1:-1:-1;;;37282:18:0;;;;;;;;;;;37256:44;-1:-1:-1;;;;;37651:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;37710:49:0;;37651:44;;;;;;;;37710:49;;;-1:-1:-1;;;;;37651:44:0;;;;;;37710:49;;;;;;;;;;;;;;;;37776:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;37826:66:0;;;-1:-1:-1;;;37876:15:0;37826:66;;;;;;;;;;;;;37776:25;;37973:23;;;;8216:19;:23;38013:631;;38053:313;38084:38;;38109:12;;-1:-1:-1;;;;;38084:38:0;;;38101:1;;38084:38;;38101:1;;38084:38;38150:69;38189:1;38193:2;38197:14;;;;;;38213:5;38150:30;:69::i;:::-;38145:174;;38255:40;;-1:-1:-1;;;38255:40:0;;;;;;;;;;;38145:174;38361:3;38346:12;:18;38053:313;;38447:12;38430:13;;:29;38426:43;;38461:8;;;38426:43;38013:631;;;38510:119;38541:40;;38566:14;;;;;-1:-1:-1;;;;;38541:40:0;;;38558:1;;38541:40;;38558:1;;38541:40;38624:3;38609:12;:18;38510:119;;38013:631;-1:-1:-1;38658:13:0;:28;;;38708:60;;38741:2;38745:12;38759:8;38708:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2173:160::-;2238:20;;2294:13;;2287:21;2277:32;;2267:60;;2323:1;2320;2313:12;2338:180;2394:6;2447:2;2435:9;2426:7;2422:23;2418:32;2415:52;;;2463:1;2460;2453:12;2415:52;2486:26;2502:9;2486:26;:::i;2705:328::-;2782:6;2790;2798;2851:2;2839:9;2830:7;2826:23;2822:32;2819:52;;;2867:1;2864;2857:12;2819:52;2890:29;2909:9;2890:29;:::i;:::-;2880:39;;2938:38;2972:2;2961:9;2957:18;2938:38;:::i;:::-;2928:48;;3023:2;3012:9;3008:18;2995:32;2985:42;;2705:328;;;;;:::o;3038:254::-;3106:6;3114;3167:2;3155:9;3146:7;3142:23;3138:32;3135:52;;;3183:1;3180;3173:12;3135:52;3219:9;3206:23;3196:33;;3248:38;3282:2;3271:9;3267:18;3248:38;:::i;:::-;3238:48;;3038:254;;;;;:::o;3297:127::-;3358:10;3353:3;3349:20;3346:1;3339:31;3389:4;3386:1;3379:15;3413:4;3410:1;3403:15;3429:632;3494:5;3524:18;3565:2;3557:6;3554:14;3551:40;;;3571:18;;:::i;:::-;3646:2;3640:9;3614:2;3700:15;;-1:-1:-1;;3696:24:1;;;3722:2;3692:33;3688:42;3676:55;;;3746:18;;;3766:22;;;3743:46;3740:72;;;3792:18;;:::i;:::-;3832:10;3828:2;3821:22;3861:6;3852:15;;3891:6;3883;3876:22;3931:3;3922:6;3917:3;3913:16;3910:25;3907:45;;;3948:1;3945;3938:12;3907:45;3998:6;3993:3;3986:4;3978:6;3974:17;3961:44;4053:1;4046:4;4037:6;4029;4025:19;4021:30;4014:41;;;;3429:632;;;;;:::o;4066:451::-;4135:6;4188:2;4176:9;4167:7;4163:23;4159:32;4156:52;;;4204:1;4201;4194:12;4156:52;4244:9;4231:23;4277:18;4269:6;4266:30;4263:50;;;4309:1;4306;4299:12;4263:50;4332:22;;4385:4;4377:13;;4373:27;-1:-1:-1;4363:55:1;;4414:1;4411;4404:12;4363:55;4437:74;4503:7;4498:2;4485:16;4480:2;4476;4472:11;4437:74;:::i;4522:186::-;4581:6;4634:2;4622:9;4613:7;4609:23;4605:32;4602:52;;;4650:1;4647;4640:12;4602:52;4673:29;4692:9;4673:29;:::i;4713:254::-;4778:6;4786;4839:2;4827:9;4818:7;4814:23;4810:32;4807:52;;;4855:1;4852;4845:12;4807:52;4878:29;4897:9;4878:29;:::i;:::-;4868:39;;4926:35;4957:2;4946:9;4942:18;4926:35;:::i;4972:667::-;5067:6;5075;5083;5091;5144:3;5132:9;5123:7;5119:23;5115:33;5112:53;;;5161:1;5158;5151:12;5112:53;5184:29;5203:9;5184:29;:::i;:::-;5174:39;;5232:38;5266:2;5255:9;5251:18;5232:38;:::i;:::-;5222:48;;5317:2;5306:9;5302:18;5289:32;5279:42;;5372:2;5361:9;5357:18;5344:32;5399:18;5391:6;5388:30;5385:50;;;5431:1;5428;5421:12;5385:50;5454:22;;5507:4;5499:13;;5495:27;-1:-1:-1;5485:55:1;;5536:1;5533;5526:12;5485:55;5559:74;5625:7;5620:2;5607:16;5602:2;5598;5594:11;5559:74;:::i;:::-;5549:84;;;4972:667;;;;;;;:::o;5644:260::-;5712:6;5720;5773:2;5761:9;5752:7;5748:23;5744:32;5741:52;;;5789:1;5786;5779:12;5741:52;5812:29;5831:9;5812:29;:::i;:::-;5802:39;;5860:38;5894:2;5883:9;5879:18;5860:38;:::i;5909:380::-;5988:1;5984:12;;;;6031;;;6052:61;;6106:4;6098:6;6094:17;6084:27;;6052:61;6159:2;6151:6;6148:14;6128:18;6125:38;6122:161;;;6205:10;6200:3;6196:20;6193:1;6186:31;6240:4;6237:1;6230:15;6268:4;6265:1;6258:15;6122:161;;5909:380;;;:::o;6294:356::-;6496:2;6478:21;;;6515:18;;;6508:30;6574:34;6569:2;6554:18;;6547:62;6641:2;6626:18;;6294:356::o;7208:127::-;7269:10;7264:3;7260:20;7257:1;7250:31;7300:4;7297:1;7290:15;7324:4;7321:1;7314:15;7340:128;7380:3;7411:1;7407:6;7404:1;7401:13;7398:39;;;7417:18;;:::i;:::-;-1:-1:-1;7453:9:1;;7340:128::o;7473:168::-;7513:7;7579:1;7575;7571:6;7567:14;7564:1;7561:21;7556:1;7549:9;7542:17;7538:45;7535:71;;;7586:18;;:::i;:::-;-1:-1:-1;7626:9:1;;7473:168::o;9991:1527::-;10215:3;10253:6;10247:13;10279:4;10292:51;10336:6;10331:3;10326:2;10318:6;10314:15;10292:51;:::i;:::-;10406:13;;10365:16;;;;10428:55;10406:13;10365:16;10450:15;;;10428:55;:::i;:::-;10572:13;;10505:20;;;10545:1;;10632;10654:18;;;;10707;;;;10734:93;;10812:4;10802:8;10798:19;10786:31;;10734:93;10875:2;10865:8;10862:16;10842:18;10839:40;10836:167;;;-1:-1:-1;;;10902:33:1;;10958:4;10955:1;10948:15;10988:4;10909:3;10976:17;10836:167;11019:18;11046:110;;;;11170:1;11165:328;;;;11012:481;;11046:110;-1:-1:-1;;11081:24:1;;11067:39;;11126:20;;;;-1:-1:-1;11046:110:1;;11165:328;9938:1;9931:14;;;9975:4;9962:18;;11260:1;11274:169;11288:8;11285:1;11282:15;11274:169;;;11370:14;;11355:13;;;11348:37;11413:16;;;;11305:10;;11274:169;;;11278:3;;11474:8;11467:5;11463:20;11456:27;;11012:481;-1:-1:-1;11509:3:1;;9991:1527;-1:-1:-1;;;;;;;;;;;9991:1527:1:o;11930:489::-;-1:-1:-1;;;;;12199:15:1;;;12181:34;;12251:15;;12246:2;12231:18;;12224:43;12298:2;12283:18;;12276:34;;;12346:3;12341:2;12326:18;;12319:31;;;12124:4;;12367:46;;12393:19;;12385:6;12367:46;:::i;:::-;12359:54;11930:489;-1:-1:-1;;;;;;11930:489:1:o;12424:249::-;12493:6;12546:2;12534:9;12525:7;12521:23;12517:32;12514:52;;;12562:1;12559;12552:12;12514:52;12594:9;12588:16;12613:30;12637:5;12613:30;:::i;12678:135::-;12717:3;-1:-1:-1;;12738:17:1;;12735:43;;;12758:18;;:::i;:::-;-1:-1:-1;12805:1:1;12794:13;;12678:135::o;12818:127::-;12879:10;12874:3;12870:20;12867:1;12860:31;12910:4;12907:1;12900:15;12934:4;12931:1;12924:15;12950:120;12990:1;13016;13006:35;;13021:18;;:::i;:::-;-1:-1:-1;13055:9:1;;12950:120::o;13075:125::-;13115:4;13143:1;13140;13137:8;13134:34;;;13148:18;;:::i;:::-;-1:-1:-1;13185:9:1;;13075:125::o;13205:112::-;13237:1;13263;13253:35;;13268:18;;:::i;:::-;-1:-1:-1;13302:9:1;;13205:112::o;13322:127::-;13383:10;13378:3;13374:20;13371:1;13364:31;13414:4;13411:1;13404:15;13438:4;13435:1;13428:15

Swarm Source

ipfs://49b64ddfc7e8805cd738bef773cefd9553ad5f8d4023214b491d4b9b120158b1
Loading...
Loading
Loading...
Loading
[ 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.