ETH Price: $3,039.63 (+0.52%)
Gas: 3 Gwei

Token

AI MURAKAMI (AIMK)
 

Overview

Max Total Supply

999 AIMK

Holders

963

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 AIMK
0x2660d0f4a4e5c90da1ef0e7c197e80d71e2ddb32
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:
AIMURAKAMI

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: erc721a/contracts/IERC721A.sol

/** Template created by arczi.eth - I do not take responsibility for 
 any malfunctions in the script operation and I also declare that I have no influence or 
 connection with any frauds for which my template was used.**/

// ERC721A Contracts v4.1.0

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * 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();

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

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    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;
        // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`.
        uint24 extraData;
    }

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

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

    // ==============================
    //            IERC721
    // ==============================

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

    // ==============================
    //        IERC721Metadata
    // ==============================

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

    // ==============================
    //            IERC2309
    // ==============================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @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 IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with `_mintERC2309`.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309`
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

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

    // The number of tokens burned.
    uint256 private _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 `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    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();
        }
    }

    /**
     * @dev 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 Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

    /**
     * Sets the auxiliary 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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // 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.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA);
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * 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) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, BITMASK_ADDRESS)
            // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

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

    /**
     * @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, _toString(tokenId))) : '';
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`.
            result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

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

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

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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 == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), 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-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 {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            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 && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not 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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @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 for each mint.
     */
    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` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    /**
     * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`.
     */
    function _isOwnerOrApproved(
        address approvedAddress,
        address from,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
            from := and(from, BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, BITMASK_ADDRESS)
            // `msgSender == from || msgSender == approvedAddress`.
            result := or(eq(msgSender, from), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @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 transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        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 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 ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

// File: erc721a/contracts/extensions/IERC721AQueryable.sol


// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev Interface of an ERC721AQueryable compliant contract.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

// File: erc721a/contracts/extensions/ERC721AQueryable.sol


// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;



/**
 * @title ERC721A Queryable
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *   - `extraData` = `0`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *   - `extraData` = `<Extra data when token was burned>`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     *   - `extraData` = `<Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) public view override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view override returns (TokenOwnership[] memory) {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// File: @openzeppelin/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. It the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`.
        // We also know that `k`, the position of the most significant bit, is such that `msb(a) = 2**k`.
        // This gives `2**k < a <= 2**(k+1)` → `2**(k/2) <= sqrt(a) < 2 ** (k/2+1)`.
        // Using an algorithm similar to the msb conmputation, we are able to compute `result = 2**(k/2)` which is a
        // good first aproximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1;
        uint256 x = a;
        if (x >> 128 > 0) {
            x >>= 128;
            result <<= 64;
        }
        if (x >> 64 > 0) {
            x >>= 64;
            result <<= 32;
        }
        if (x >> 32 > 0) {
            x >>= 32;
            result <<= 16;
        }
        if (x >> 16 > 0) {
            x >>= 16;
            result <<= 8;
        }
        if (x >> 8 > 0) {
            x >>= 8;
            result <<= 4;
        }
        if (x >> 4 > 0) {
            x >>= 4;
            result <<= 2;
        }
        if (x >> 2 > 0) {
            result <<= 1;
        }

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        uint256 result = sqrt(a);
        if (rounding == Rounding.Up && result * result < a) {
            result += 1;
        }
        return result;
    }
}

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


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

pragma solidity ^0.8.0;


/**
 * @dev Collection of functions related to array types.
 */
library Arrays {
    /**
     * @dev Searches a sorted `array` and returns the first index that contains
     * a value greater or equal to `element`. If no such index exists (i.e. all
     * values in the array are strictly less than `element`), the array length is
     * returned. Time complexity O(log n).
     *
     * `array` is expected to be sorted in ascending order, and to contain no
     * repeated elements.
     */
    function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) {
        if (array.length == 0) {
            return 0;
        }

        uint256 low = 0;
        uint256 high = array.length;

        while (low < high) {
            uint256 mid = Math.average(low, high);

            // Note that mid will always be strictly less than high (i.e. it will be a valid array index)
            // because Math.average rounds down (it does integer division with truncation).
            if (array[mid] > element) {
                high = mid;
            } else {
                low = mid + 1;
            }
        }

        // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound.
        if (low > 0 && array[low - 1] == element) {
            return low - 1;
        } else {
            return low;
        }
    }
}

// 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 (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    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: contracts/AIMURAKAMI.sol


/** Template created by arczi.eth - I do not take responsibility for 
 any malfunctions in the script operation and I also declare that I have no influence or 
 connection with any frauds for which my template was used.**/







pragma solidity >=0.8.13 <0.9.0;

contract AIMURAKAMI is ERC721A, Ownable, ReentrancyGuard { //Change contract name from SampleNFTLowGas

  using Strings for uint256;

// ================== Variables Start =======================

  string public uri; //you don't change this
  string public uriSuffix = ".json"; //you don't change this
  string public hiddenMetadataUri; //you don't change this
  uint256 public cost1 = 0 ether; //here you change phase 1 cost (for example first 1k for free, then 0.004 eth each nft)
  uint256 public cost2 = 0.0099 ether; //here you change phase 2 cost
  uint256 public supplyLimitPhase1 = 999;  //change to your NFT supply for phase1
  uint256 public supplyLimit = 3333;  //change it to your total NFT supply
  uint256 public maxMintAmountPerTxPhase1 = 1; //decide how many NFT's you want to mint with cost1
  uint256 public maxMintAmountPerTxPhase2 = 5; //decide how many NFT's you want to mint with cost2
  uint256 public maxLimitPerWallet = 20; //decide how many NFT's you want to let customers mint per wallet
  bool public sale = false;  //if false, then mint is paused. If true - mint is started
  bool public revealed = false; //when you want instant reveal, leave true. 

// ================== Variables End =======================

// ================== Constructor Start =======================
  constructor(
    string memory _uri,
    string memory _hiddenMetadataUri
  ) ERC721A("AI MURAKAMI", "AIMK")  { //change this line to your full and short NFT name
    seturi(_uri);
    setHiddenMetadataUri(_hiddenMetadataUri);
  }

// ================== Mint Functions Start =======================

   function UpdateCost(uint256 _mintAmount) internal view returns  (uint256 _cost) {

    if (balanceOf(msg.sender) + _mintAmount <= maxMintAmountPerTxPhase1 && totalSupply() < supplyLimitPhase1) {
        return cost1;
    }
    if (balanceOf(msg.sender) + _mintAmount <= maxLimitPerWallet){
        return cost2;
    }
  }
  
  function Mint(uint256 _mintAmount) public payable {
    // Normal requirements 
    require(sale, 'The Sale is paused!');
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTxPhase2, 'Invalid mint amount!');
    require(totalSupply() + _mintAmount <= supplyLimit, 'Max supply exceeded!');
    require(balanceOf(msg.sender) + _mintAmount <= maxLimitPerWallet, 'Max mint per wallet exceeded!');
    require(msg.value >= UpdateCost(_mintAmount) * _mintAmount, 'Insufficient funds!');
     
     _safeMint(_msgSender(), _mintAmount);
  }  

  function Airdrop(uint256 _mintAmount, address _receiver) public onlyOwner {
    require(totalSupply() + _mintAmount <= supplyLimit, 'Max supply exceeded!');
    _safeMint(_receiver, _mintAmount);
  }

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function seturi(string memory _uri) public onlyOwner {
    uri = _uri;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setSaleStatus(bool _sale) public onlyOwner {
    sale = _sale;
  }

  function setMaxMintAmountPerTxPhase1(uint256 _maxMintAmountPerTxPhase1) public onlyOwner {
    maxMintAmountPerTxPhase1 = _maxMintAmountPerTxPhase1;
  }

  function setMaxMintAmountPerTxPhase2(uint256 _maxMintAmountPerTxPhase2) public onlyOwner {
    maxMintAmountPerTxPhase2 = _maxMintAmountPerTxPhase2;
  }

  function setmaxLimitPerWallet(uint256 _maxLimitPerWallet) public onlyOwner {
    maxLimitPerWallet = _maxLimitPerWallet;
  }

  function setcost1(uint256 _cost1) public onlyOwner {
    cost1 = _cost1;
  }  

  function setcost2(uint256 _cost2) public onlyOwner {
    cost2 = _cost2;
  }  

  function setsupplyLimit(uint256 _supplyLimit) public onlyOwner {
    supplyLimit = _supplyLimit;
  }

  function withdraw() public onlyOwner {
    (bool hs, ) = payable(0xa953009a7A67A02D5E3c3cB11523bD91A598A4e5).call{value: address(this).balance * 15 / 100}("");
    require(hs);
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }
 
  function price(uint256 _mintAmount) public view returns (uint256){
         if (balanceOf(msg.sender) + _mintAmount <= maxMintAmountPerTxPhase1 && totalSupply() <supplyLimitPhase1) {
          return cost1;
          }
         if (balanceOf(msg.sender) + _mintAmount <= maxMintAmountPerTxPhase2 && totalSupply() < supplyLimit){
          return cost2;
        }
        return cost2;
  }

function tokensOfOwner(address owner) external view returns (uint256[] memory) {
    unchecked {
        uint256[] memory a = new uint256[](balanceOf(owner)); 
        uint256 end = _nextTokenId();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;
        for (uint256 i; i < end; i++) {
            TokenOwnership memory ownership = _ownershipAt(i);
            if (ownership.burned) {
                continue;
            }
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                a[tokenIdsIdx++] = i;
            }
        }
        return a;    
    }
}

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

  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token');

    if (revealed == false) {
      return hiddenMetadataUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : '';
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_uri","type":"string"},{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxLimitPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTxPhase1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTxPhase2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":[],"name":"sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTxPhase1","type":"uint256"}],"name":"setMaxMintAmountPerTxPhase1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTxPhase2","type":"uint256"}],"name":"setMaxMintAmountPerTxPhase2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_sale","type":"bool"}],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost1","type":"uint256"}],"name":"setcost1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost2","type":"uint256"}],"name":"setcost2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxLimitPerWallet","type":"uint256"}],"name":"setmaxLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supplyLimit","type":"uint256"}],"name":"setsupplyLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"seturi","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supplyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supplyLimitPhase1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","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":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608090815264173539b7b760d91b60a052600b90620000269082620002b0565b506000600d5566232bff5f46c000600e556103e7600f55610d056010556001601155600560125560146013819055805461ffff191690553480156200006a57600080fd5b50604051620025d9380380620025d98339810160408190526200008d9162000433565b6040518060400160405280600b81526020016a4149204d5552414b414d4960a81b8152506040518060400160405280600481526020016341494d4b60e01b8152508160029081620000df9190620002b0565b506003620000ee8282620002b0565b5050600160005550620001013362000124565b6001600955620001118262000176565b6200011c8162000192565b50506200049d565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000180620001aa565b600a6200018e8282620002b0565b5050565b6200019c620001aa565b600c6200018e8282620002b0565b6008546001600160a01b03163314620002095760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200023657607f821691505b6020821081036200025757634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002ab57600081815260208120601f850160051c81016020861015620002865750805b601f850160051c820191505b81811015620002a75782815560010162000292565b5050505b505050565b81516001600160401b03811115620002cc57620002cc6200020b565b620002e481620002dd845462000221565b846200025d565b602080601f8311600181146200031c5760008415620003035750858301515b600019600386901b1c1916600185901b178555620002a7565b600085815260208120601f198616915b828110156200034d578886015182559484019460019091019084016200032c565b50858210156200036c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f8301126200038e57600080fd5b81516001600160401b0380821115620003ab57620003ab6200020b565b604051601f8301601f19908116603f01168101908282118183101715620003d657620003d66200020b565b81604052838152602092508683858801011115620003f357600080fd5b600091505b83821015620004175785820183015181830184015290820190620003f8565b83821115620004295760008385830101525b9695505050505050565b600080604083850312156200044757600080fd5b82516001600160401b03808211156200045f57600080fd5b6200046d868387016200037c565b935060208501519150808211156200048457600080fd5b5062000493858286016200037c565b9150509250929050565b61212c80620004ad6000396000f3fe6080604052600436106102715760003560e01c8063684ed5f21161014f578063a22cb465116100c1578063da5e1f4d1161007a578063da5e1f4d14610704578063e0a8085314610724578063e985e9c514610744578063eac989f81461078d578063f2fde38b146107a2578063f6484980146107c257600080fd5b8063a22cb4651461064f578063a45ba8e71461066f578063b88d4fde14610684578063c87b56dd146106a4578063d897833e146106c4578063d9f0a671146106e457600080fd5b80637871e154116101135780637871e154146105a35780638462151c146105c35780638da5cb5b146105f05780639320b5c11461060e57806395d89b41146106245780639a1b28851461063957600080fd5b8063684ed5f21461051e5780636ad1fe021461053457806370a082311461054e578063715018a61461056e578063783806411461058357600080fd5b806323b872dd116101e85780634fdd43cb116101ac5780634fdd43cb1461047457806351830227146104945780635503a0e8146104b35780635a0b8b23146104c857806360bb41b6146104de5780636352211e146104fe57600080fd5b806323b872dd146103e957806326a49e371461040957806333573dc2146104295780633ccfd60b1461043f57806342842e0e1461045457600080fd5b8063095ea7b31161023a578063095ea7b31461033a57806316ba10e01461035a57806318160ddd1461037a57806319d1997a1461039d57806321a3c248146103b357806321f6b017146103d357600080fd5b806275770a1461027657806301ffc9a71461029857806306fdde03146102cd57806307883703146102ef578063081812fc14610302575b600080fd5b34801561028257600080fd5b50610296610291366004611a5c565b6107e2565b005b3480156102a457600080fd5b506102b86102b3366004611a8b565b6107ef565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102e2610841565b6040516102c49190611b00565b6102966102fd366004611a5c565b6108d3565b34801561030e57600080fd5b5061032261031d366004611a5c565b610a9b565b6040516001600160a01b0390911681526020016102c4565b34801561034657600080fd5b50610296610355366004611b2a565b610adf565b34801561036657600080fd5b50610296610375366004611be0565b610b7f565b34801561038657600080fd5b5061038f610b97565b6040519081526020016102c4565b3480156103a957600080fd5b5061038f60105481565b3480156103bf57600080fd5b506102966103ce366004611a5c565b610ba5565b3480156103df57600080fd5b5061038f60115481565b3480156103f557600080fd5b50610296610404366004611c29565b610bb2565b34801561041557600080fd5b5061038f610424366004611a5c565b610d4b565b34801561043557600080fd5b5061038f600d5481565b34801561044b57600080fd5b50610296610dc9565b34801561046057600080fd5b5061029661046f366004611c29565b610ebf565b34801561048057600080fd5b5061029661048f366004611be0565b610edf565b3480156104a057600080fd5b506014546102b890610100900460ff1681565b3480156104bf57600080fd5b506102e2610ef3565b3480156104d457600080fd5b5061038f60135481565b3480156104ea57600080fd5b506102966104f9366004611a5c565b610f81565b34801561050a57600080fd5b50610322610519366004611a5c565b610f8e565b34801561052a57600080fd5b5061038f60125481565b34801561054057600080fd5b506014546102b89060ff1681565b34801561055a57600080fd5b5061038f610569366004611c65565b610f99565b34801561057a57600080fd5b50610296610fe8565b34801561058f57600080fd5b5061029661059e366004611a5c565b610ffc565b3480156105af57600080fd5b506102966105be366004611c80565b611009565b3480156105cf57600080fd5b506105e36105de366004611c65565b611076565b6040516102c49190611cac565b3480156105fc57600080fd5b506008546001600160a01b0316610322565b34801561061a57600080fd5b5061038f600f5481565b34801561063057600080fd5b506102e2611168565b34801561064557600080fd5b5061038f600e5481565b34801561065b57600080fd5b5061029661066a366004611d00565b611177565b34801561067b57600080fd5b506102e261120c565b34801561069057600080fd5b5061029661069f366004611d2a565b611219565b3480156106b057600080fd5b506102e26106bf366004611a5c565b611263565b3480156106d057600080fd5b506102966106df366004611da6565b6113d7565b3480156106f057600080fd5b506102966106ff366004611a5c565b6113f2565b34801561071057600080fd5b5061029661071f366004611a5c565b6113ff565b34801561073057600080fd5b5061029661073f366004611da6565b61140c565b34801561075057600080fd5b506102b861075f366004611dc1565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561079957600080fd5b506102e261142e565b3480156107ae57600080fd5b506102966107bd366004611c65565b61143b565b3480156107ce57600080fd5b506102966107dd366004611be0565b6114b1565b6107ea6114c5565b601055565b60006301ffc9a760e01b6001600160e01b03198316148061082057506380ac58cd60e01b6001600160e01b03198316145b8061083b5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461085090611deb565b80601f016020809104026020016040519081016040528092919081815260200182805461087c90611deb565b80156108c95780601f1061089e576101008083540402835291602001916108c9565b820191906000526020600020905b8154815290600101906020018083116108ac57829003601f168201915b5050505050905090565b60145460ff166109205760405162461bcd60e51b81526020600482015260136024820152725468652053616c65206973207061757365642160681b60448201526064015b60405180910390fd5b60008111801561093257506012548111155b6109755760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610917565b60105481610981610b97565b61098b9190611e3b565b11156109d05760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610917565b601354816109dd33610f99565b6109e79190611e3b565b1115610a355760405162461bcd60e51b815260206004820152601d60248201527f4d6178206d696e74207065722077616c6c6574206578636565646564210000006044820152606401610917565b80610a3f8261151f565b610a499190611e53565b341015610a8e5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610917565b610a983382611584565b50565b6000610aa68261159e565b610ac3576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610aea82610f8e565b9050336001600160a01b03821614610b2357610b06813361075f565b610b23576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610b876114c5565b600b610b938282611eb8565b5050565b600154600054036000190190565b610bad6114c5565b600e55565b6000610bbd826115d3565b9050836001600160a01b0316816001600160a01b031614610bf05760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610c3d57610c20863361075f565b610c3d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610c6457604051633a954ecd60e21b815260040160405180910390fd5b8015610c6f57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610d0157600184016000818152600460205260408120549003610cff576000548114610cff5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600060115482610d5a33610f99565b610d649190611e3b565b11158015610d7a5750600f54610d78610b97565b105b15610d87575050600d5490565b60125482610d9433610f99565b610d9e9190611e3b565b11158015610db45750601054610db2610b97565b105b15610dc1575050600e5490565b5050600e5490565b610dd16114c5565b600073a953009a7a67a02d5e3c3cb11523bd91a598a4e56064610df547600f611e53565b610dff9190611f8e565b604051600081818185875af1925050503d8060008114610e3b576040519150601f19603f3d011682016040523d82523d6000602084013e610e40565b606091505b5050905080610e4e57600080fd5b6000610e626008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610eac576040519150601f19603f3d011682016040523d82523d6000602084013e610eb1565b606091505b5050905080610b9357600080fd5b610eda83838360405180602001604052806000815250611219565b505050565b610ee76114c5565b600c610b938282611eb8565b600b8054610f0090611deb565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2c90611deb565b8015610f795780601f10610f4e57610100808354040283529160200191610f79565b820191906000526020600020905b815481529060010190602001808311610f5c57829003601f168201915b505050505081565b610f896114c5565b601155565b600061083b826115d3565b60006001600160a01b038216610fc2576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610ff06114c5565b610ffa6000611642565b565b6110046114c5565b601255565b6110116114c5565b6010548261101d610b97565b6110279190611e3b565b111561106c5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610917565b610b938183611584565b6060600061108383610f99565b67ffffffffffffffff81111561109b5761109b611b54565b6040519080825280602002602001820160405280156110c4578160200160208202803683370190505b50905060006110d260005490565b905060008060005b8381101561115d5760006110ed82611694565b90508060400151156110ff5750611155565b80516001600160a01b03161561111457805192505b876001600160a01b0316836001600160a01b031603611153578186858060010196508151811061114657611146611fa2565b6020026020010181815250505b505b6001016110da565b509295945050505050565b60606003805461085090611deb565b336001600160a01b038316036111a05760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c8054610f0090611deb565b611224848484610bb2565b6001600160a01b0383163b1561125d5761124084848484611713565b61125d576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061126e8261159e565b6112d25760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610917565b601454610100900460ff16151560000361137857600c80546112f390611deb565b80601f016020809104026020016040519081016040528092919081815260200182805461131f90611deb565b801561136c5780601f106113415761010080835404028352916020019161136c565b820191906000526020600020905b81548152906001019060200180831161134f57829003601f168201915b50505050509050919050565b60006113826117ff565b905060008151116113a257604051806020016040528060008152506113d0565b806113ac8461180e565b600b6040516020016113c093929190611fb8565b6040516020818303038152906040525b9392505050565b6113df6114c5565b6014805460ff1916911515919091179055565b6113fa6114c5565b601355565b6114076114c5565b600d55565b6114146114c5565b601480549115156101000261ff0019909216919091179055565b600a8054610f0090611deb565b6114436114c5565b6001600160a01b0381166114a85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610917565b610a9881611642565b6114b96114c5565b600a610b938282611eb8565b6008546001600160a01b03163314610ffa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610917565b60006011548261152e33610f99565b6115389190611e3b565b1115801561154e5750600f5461154c610b97565b105b1561155b575050600d5490565b6013548261156833610f99565b6115729190611e3b565b1161157f575050600e5490565b919050565b610b9382826040518060200160405280600081525061190f565b6000816001111580156115b2575060005482105b801561083b575050600090815260046020526040902054600160e01b161590565b60008180600111611629576000548110156116295760008181526004602052604081205490600160e01b82169003611627575b806000036113d0575060001901600081815260046020526040902054611606565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051608081018252600080825260208201819052918101829052606081019190915260008281526004602052604090205461083b90604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611748903390899088908890600401612058565b6020604051808303816000875af1925050508015611783575060408051601f3d908101601f1916820190925261178091810190612095565b60015b6117e1573d8080156117b1576040519150601f19603f3d011682016040523d82523d6000602084013e6117b6565b606091505b5080516000036117d9576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461085090611deb565b6060816000036118355750506040805180820190915260018152600360fc1b602082015290565b8160005b811561185f5780611849816120b2565b91506118589050600a83611f8e565b9150611839565b60008167ffffffffffffffff81111561187a5761187a611b54565b6040519080825280601f01601f1916602001820160405280156118a4576020820181803683370190505b5090505b84156117f7576118b96001836120cb565b91506118c6600a866120e2565b6118d1906030611e3b565b60f81b8183815181106118e6576118e6611fa2565b60200101906001600160f81b031916908160001a905350611908600a86611f8e565b94506118a8565b611919838361197c565b6001600160a01b0383163b15610eda576000548281035b6119436000868380600101945086611713565b611960576040516368d2bf6b60e11b815260040160405180910390fd5b81811061193057816000541461197557600080fd5b5050505050565b6000546001600160a01b0383166119a557604051622e076360e81b815260040160405180910390fd5b816000036119c65760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611a105760005550505050565b600060208284031215611a6e57600080fd5b5035919050565b6001600160e01b031981168114610a9857600080fd5b600060208284031215611a9d57600080fd5b81356113d081611a75565b60005b83811015611ac3578181015183820152602001611aab565b8381111561125d5750506000910152565b60008151808452611aec816020860160208601611aa8565b601f01601f19169290920160200192915050565b6020815260006113d06020830184611ad4565b80356001600160a01b038116811461157f57600080fd5b60008060408385031215611b3d57600080fd5b611b4683611b13565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611b8557611b85611b54565b604051601f8501601f19908116603f01168101908282118183101715611bad57611bad611b54565b81604052809350858152868686011115611bc657600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611bf257600080fd5b813567ffffffffffffffff811115611c0957600080fd5b8201601f81018413611c1a57600080fd5b6117f784823560208401611b6a565b600080600060608486031215611c3e57600080fd5b611c4784611b13565b9250611c5560208501611b13565b9150604084013590509250925092565b600060208284031215611c7757600080fd5b6113d082611b13565b60008060408385031215611c9357600080fd5b82359150611ca360208401611b13565b90509250929050565b6020808252825182820181905260009190848201906040850190845b81811015611ce457835183529284019291840191600101611cc8565b50909695505050505050565b8035801515811461157f57600080fd5b60008060408385031215611d1357600080fd5b611d1c83611b13565b9150611ca360208401611cf0565b60008060008060808587031215611d4057600080fd5b611d4985611b13565b9350611d5760208601611b13565b925060408501359150606085013567ffffffffffffffff811115611d7a57600080fd5b8501601f81018713611d8b57600080fd5b611d9a87823560208401611b6a565b91505092959194509250565b600060208284031215611db857600080fd5b6113d082611cf0565b60008060408385031215611dd457600080fd5b611ddd83611b13565b9150611ca360208401611b13565b600181811c90821680611dff57607f821691505b602082108103611e1f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611e4e57611e4e611e25565b500190565b6000816000190483118215151615611e6d57611e6d611e25565b500290565b601f821115610eda57600081815260208120601f850160051c81016020861015611e995750805b601f850160051c820191505b81811015610d4357828155600101611ea5565b815167ffffffffffffffff811115611ed257611ed2611b54565b611ee681611ee08454611deb565b84611e72565b602080601f831160018114611f1b5760008415611f035750858301515b600019600386901b1c1916600185901b178555610d43565b600085815260208120601f198616915b82811015611f4a57888601518255948401946001909101908401611f2b565b5085821015611f685787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601260045260246000fd5b600082611f9d57611f9d611f78565b500490565b634e487b7160e01b600052603260045260246000fd5b600084516020611fcb8285838a01611aa8565b855191840191611fde8184848a01611aa8565b8554920191600090611fef81611deb565b60018281168015612007576001811461201c57612048565b60ff1984168752821515830287019450612048565b896000528560002060005b8481101561204057815489820152908301908701612027565b505082870194505b50929a9950505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061208b90830184611ad4565b9695505050505050565b6000602082840312156120a757600080fd5b81516113d081611a75565b6000600182016120c4576120c4611e25565b5060010190565b6000828210156120dd576120dd611e25565b500390565b6000826120f1576120f1611f78565b50069056fea26469706673582212203b2608fb5bcb53fe1880a8895af6072f833955bed6eb9d3d71c026e678fb716f64736f6c634300080f0033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d54377452446f5335796d396171754a715a587168323741386d38565a63657962344d52565556746b516877342f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d62734669564c59504b54486871716b575946764836383333586f724d384135566f5553755a755766546b53482f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102715760003560e01c8063684ed5f21161014f578063a22cb465116100c1578063da5e1f4d1161007a578063da5e1f4d14610704578063e0a8085314610724578063e985e9c514610744578063eac989f81461078d578063f2fde38b146107a2578063f6484980146107c257600080fd5b8063a22cb4651461064f578063a45ba8e71461066f578063b88d4fde14610684578063c87b56dd146106a4578063d897833e146106c4578063d9f0a671146106e457600080fd5b80637871e154116101135780637871e154146105a35780638462151c146105c35780638da5cb5b146105f05780639320b5c11461060e57806395d89b41146106245780639a1b28851461063957600080fd5b8063684ed5f21461051e5780636ad1fe021461053457806370a082311461054e578063715018a61461056e578063783806411461058357600080fd5b806323b872dd116101e85780634fdd43cb116101ac5780634fdd43cb1461047457806351830227146104945780635503a0e8146104b35780635a0b8b23146104c857806360bb41b6146104de5780636352211e146104fe57600080fd5b806323b872dd146103e957806326a49e371461040957806333573dc2146104295780633ccfd60b1461043f57806342842e0e1461045457600080fd5b8063095ea7b31161023a578063095ea7b31461033a57806316ba10e01461035a57806318160ddd1461037a57806319d1997a1461039d57806321a3c248146103b357806321f6b017146103d357600080fd5b806275770a1461027657806301ffc9a71461029857806306fdde03146102cd57806307883703146102ef578063081812fc14610302575b600080fd5b34801561028257600080fd5b50610296610291366004611a5c565b6107e2565b005b3480156102a457600080fd5b506102b86102b3366004611a8b565b6107ef565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102e2610841565b6040516102c49190611b00565b6102966102fd366004611a5c565b6108d3565b34801561030e57600080fd5b5061032261031d366004611a5c565b610a9b565b6040516001600160a01b0390911681526020016102c4565b34801561034657600080fd5b50610296610355366004611b2a565b610adf565b34801561036657600080fd5b50610296610375366004611be0565b610b7f565b34801561038657600080fd5b5061038f610b97565b6040519081526020016102c4565b3480156103a957600080fd5b5061038f60105481565b3480156103bf57600080fd5b506102966103ce366004611a5c565b610ba5565b3480156103df57600080fd5b5061038f60115481565b3480156103f557600080fd5b50610296610404366004611c29565b610bb2565b34801561041557600080fd5b5061038f610424366004611a5c565b610d4b565b34801561043557600080fd5b5061038f600d5481565b34801561044b57600080fd5b50610296610dc9565b34801561046057600080fd5b5061029661046f366004611c29565b610ebf565b34801561048057600080fd5b5061029661048f366004611be0565b610edf565b3480156104a057600080fd5b506014546102b890610100900460ff1681565b3480156104bf57600080fd5b506102e2610ef3565b3480156104d457600080fd5b5061038f60135481565b3480156104ea57600080fd5b506102966104f9366004611a5c565b610f81565b34801561050a57600080fd5b50610322610519366004611a5c565b610f8e565b34801561052a57600080fd5b5061038f60125481565b34801561054057600080fd5b506014546102b89060ff1681565b34801561055a57600080fd5b5061038f610569366004611c65565b610f99565b34801561057a57600080fd5b50610296610fe8565b34801561058f57600080fd5b5061029661059e366004611a5c565b610ffc565b3480156105af57600080fd5b506102966105be366004611c80565b611009565b3480156105cf57600080fd5b506105e36105de366004611c65565b611076565b6040516102c49190611cac565b3480156105fc57600080fd5b506008546001600160a01b0316610322565b34801561061a57600080fd5b5061038f600f5481565b34801561063057600080fd5b506102e2611168565b34801561064557600080fd5b5061038f600e5481565b34801561065b57600080fd5b5061029661066a366004611d00565b611177565b34801561067b57600080fd5b506102e261120c565b34801561069057600080fd5b5061029661069f366004611d2a565b611219565b3480156106b057600080fd5b506102e26106bf366004611a5c565b611263565b3480156106d057600080fd5b506102966106df366004611da6565b6113d7565b3480156106f057600080fd5b506102966106ff366004611a5c565b6113f2565b34801561071057600080fd5b5061029661071f366004611a5c565b6113ff565b34801561073057600080fd5b5061029661073f366004611da6565b61140c565b34801561075057600080fd5b506102b861075f366004611dc1565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561079957600080fd5b506102e261142e565b3480156107ae57600080fd5b506102966107bd366004611c65565b61143b565b3480156107ce57600080fd5b506102966107dd366004611be0565b6114b1565b6107ea6114c5565b601055565b60006301ffc9a760e01b6001600160e01b03198316148061082057506380ac58cd60e01b6001600160e01b03198316145b8061083b5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461085090611deb565b80601f016020809104026020016040519081016040528092919081815260200182805461087c90611deb565b80156108c95780601f1061089e576101008083540402835291602001916108c9565b820191906000526020600020905b8154815290600101906020018083116108ac57829003601f168201915b5050505050905090565b60145460ff166109205760405162461bcd60e51b81526020600482015260136024820152725468652053616c65206973207061757365642160681b60448201526064015b60405180910390fd5b60008111801561093257506012548111155b6109755760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610917565b60105481610981610b97565b61098b9190611e3b565b11156109d05760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610917565b601354816109dd33610f99565b6109e79190611e3b565b1115610a355760405162461bcd60e51b815260206004820152601d60248201527f4d6178206d696e74207065722077616c6c6574206578636565646564210000006044820152606401610917565b80610a3f8261151f565b610a499190611e53565b341015610a8e5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610917565b610a983382611584565b50565b6000610aa68261159e565b610ac3576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610aea82610f8e565b9050336001600160a01b03821614610b2357610b06813361075f565b610b23576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610b876114c5565b600b610b938282611eb8565b5050565b600154600054036000190190565b610bad6114c5565b600e55565b6000610bbd826115d3565b9050836001600160a01b0316816001600160a01b031614610bf05760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610c3d57610c20863361075f565b610c3d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610c6457604051633a954ecd60e21b815260040160405180910390fd5b8015610c6f57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610d0157600184016000818152600460205260408120549003610cff576000548114610cff5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600060115482610d5a33610f99565b610d649190611e3b565b11158015610d7a5750600f54610d78610b97565b105b15610d87575050600d5490565b60125482610d9433610f99565b610d9e9190611e3b565b11158015610db45750601054610db2610b97565b105b15610dc1575050600e5490565b5050600e5490565b610dd16114c5565b600073a953009a7a67a02d5e3c3cb11523bd91a598a4e56064610df547600f611e53565b610dff9190611f8e565b604051600081818185875af1925050503d8060008114610e3b576040519150601f19603f3d011682016040523d82523d6000602084013e610e40565b606091505b5050905080610e4e57600080fd5b6000610e626008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610eac576040519150601f19603f3d011682016040523d82523d6000602084013e610eb1565b606091505b5050905080610b9357600080fd5b610eda83838360405180602001604052806000815250611219565b505050565b610ee76114c5565b600c610b938282611eb8565b600b8054610f0090611deb565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2c90611deb565b8015610f795780601f10610f4e57610100808354040283529160200191610f79565b820191906000526020600020905b815481529060010190602001808311610f5c57829003601f168201915b505050505081565b610f896114c5565b601155565b600061083b826115d3565b60006001600160a01b038216610fc2576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610ff06114c5565b610ffa6000611642565b565b6110046114c5565b601255565b6110116114c5565b6010548261101d610b97565b6110279190611e3b565b111561106c5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610917565b610b938183611584565b6060600061108383610f99565b67ffffffffffffffff81111561109b5761109b611b54565b6040519080825280602002602001820160405280156110c4578160200160208202803683370190505b50905060006110d260005490565b905060008060005b8381101561115d5760006110ed82611694565b90508060400151156110ff5750611155565b80516001600160a01b03161561111457805192505b876001600160a01b0316836001600160a01b031603611153578186858060010196508151811061114657611146611fa2565b6020026020010181815250505b505b6001016110da565b509295945050505050565b60606003805461085090611deb565b336001600160a01b038316036111a05760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c8054610f0090611deb565b611224848484610bb2565b6001600160a01b0383163b1561125d5761124084848484611713565b61125d576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061126e8261159e565b6112d25760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610917565b601454610100900460ff16151560000361137857600c80546112f390611deb565b80601f016020809104026020016040519081016040528092919081815260200182805461131f90611deb565b801561136c5780601f106113415761010080835404028352916020019161136c565b820191906000526020600020905b81548152906001019060200180831161134f57829003601f168201915b50505050509050919050565b60006113826117ff565b905060008151116113a257604051806020016040528060008152506113d0565b806113ac8461180e565b600b6040516020016113c093929190611fb8565b6040516020818303038152906040525b9392505050565b6113df6114c5565b6014805460ff1916911515919091179055565b6113fa6114c5565b601355565b6114076114c5565b600d55565b6114146114c5565b601480549115156101000261ff0019909216919091179055565b600a8054610f0090611deb565b6114436114c5565b6001600160a01b0381166114a85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610917565b610a9881611642565b6114b96114c5565b600a610b938282611eb8565b6008546001600160a01b03163314610ffa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610917565b60006011548261152e33610f99565b6115389190611e3b565b1115801561154e5750600f5461154c610b97565b105b1561155b575050600d5490565b6013548261156833610f99565b6115729190611e3b565b1161157f575050600e5490565b919050565b610b9382826040518060200160405280600081525061190f565b6000816001111580156115b2575060005482105b801561083b575050600090815260046020526040902054600160e01b161590565b60008180600111611629576000548110156116295760008181526004602052604081205490600160e01b82169003611627575b806000036113d0575060001901600081815260046020526040902054611606565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051608081018252600080825260208201819052918101829052606081019190915260008281526004602052604090205461083b90604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611748903390899088908890600401612058565b6020604051808303816000875af1925050508015611783575060408051601f3d908101601f1916820190925261178091810190612095565b60015b6117e1573d8080156117b1576040519150601f19603f3d011682016040523d82523d6000602084013e6117b6565b606091505b5080516000036117d9576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461085090611deb565b6060816000036118355750506040805180820190915260018152600360fc1b602082015290565b8160005b811561185f5780611849816120b2565b91506118589050600a83611f8e565b9150611839565b60008167ffffffffffffffff81111561187a5761187a611b54565b6040519080825280601f01601f1916602001820160405280156118a4576020820181803683370190505b5090505b84156117f7576118b96001836120cb565b91506118c6600a866120e2565b6118d1906030611e3b565b60f81b8183815181106118e6576118e6611fa2565b60200101906001600160f81b031916908160001a905350611908600a86611f8e565b94506118a8565b611919838361197c565b6001600160a01b0383163b15610eda576000548281035b6119436000868380600101945086611713565b611960576040516368d2bf6b60e11b815260040160405180910390fd5b81811061193057816000541461197557600080fd5b5050505050565b6000546001600160a01b0383166119a557604051622e076360e81b815260040160405180910390fd5b816000036119c65760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611a105760005550505050565b600060208284031215611a6e57600080fd5b5035919050565b6001600160e01b031981168114610a9857600080fd5b600060208284031215611a9d57600080fd5b81356113d081611a75565b60005b83811015611ac3578181015183820152602001611aab565b8381111561125d5750506000910152565b60008151808452611aec816020860160208601611aa8565b601f01601f19169290920160200192915050565b6020815260006113d06020830184611ad4565b80356001600160a01b038116811461157f57600080fd5b60008060408385031215611b3d57600080fd5b611b4683611b13565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611b8557611b85611b54565b604051601f8501601f19908116603f01168101908282118183101715611bad57611bad611b54565b81604052809350858152868686011115611bc657600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611bf257600080fd5b813567ffffffffffffffff811115611c0957600080fd5b8201601f81018413611c1a57600080fd5b6117f784823560208401611b6a565b600080600060608486031215611c3e57600080fd5b611c4784611b13565b9250611c5560208501611b13565b9150604084013590509250925092565b600060208284031215611c7757600080fd5b6113d082611b13565b60008060408385031215611c9357600080fd5b82359150611ca360208401611b13565b90509250929050565b6020808252825182820181905260009190848201906040850190845b81811015611ce457835183529284019291840191600101611cc8565b50909695505050505050565b8035801515811461157f57600080fd5b60008060408385031215611d1357600080fd5b611d1c83611b13565b9150611ca360208401611cf0565b60008060008060808587031215611d4057600080fd5b611d4985611b13565b9350611d5760208601611b13565b925060408501359150606085013567ffffffffffffffff811115611d7a57600080fd5b8501601f81018713611d8b57600080fd5b611d9a87823560208401611b6a565b91505092959194509250565b600060208284031215611db857600080fd5b6113d082611cf0565b60008060408385031215611dd457600080fd5b611ddd83611b13565b9150611ca360208401611b13565b600181811c90821680611dff57607f821691505b602082108103611e1f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611e4e57611e4e611e25565b500190565b6000816000190483118215151615611e6d57611e6d611e25565b500290565b601f821115610eda57600081815260208120601f850160051c81016020861015611e995750805b601f850160051c820191505b81811015610d4357828155600101611ea5565b815167ffffffffffffffff811115611ed257611ed2611b54565b611ee681611ee08454611deb565b84611e72565b602080601f831160018114611f1b5760008415611f035750858301515b600019600386901b1c1916600185901b178555610d43565b600085815260208120601f198616915b82811015611f4a57888601518255948401946001909101908401611f2b565b5085821015611f685787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601260045260246000fd5b600082611f9d57611f9d611f78565b500490565b634e487b7160e01b600052603260045260246000fd5b600084516020611fcb8285838a01611aa8565b855191840191611fde8184848a01611aa8565b8554920191600090611fef81611deb565b60018281168015612007576001811461201c57612048565b60ff1984168752821515830287019450612048565b896000528560002060005b8481101561204057815489820152908301908701612027565b505082870194505b50929a9950505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061208b90830184611ad4565b9695505050505050565b6000602082840312156120a757600080fd5b81516113d081611a75565b6000600182016120c4576120c4611e25565b5060010190565b6000828210156120dd576120dd611e25565b500390565b6000826120f1576120f1611f78565b50069056fea26469706673582212203b2608fb5bcb53fe1880a8895af6072f833955bed6eb9d3d71c026e678fb716f64736f6c634300080f0033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d54377452446f5335796d396171754a715a587168323741386d38565a63657962344d52565556746b516877342f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d62734669564c59504b54486871716b575946764836383333586f724d384135566f5553755a755766546b53482f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _uri (string): ipfs://QmT7tRDoS5ym9aquJqZXqh27A8m8VZceyb4MRVUVtkQhw4/
Arg [1] : _hiddenMetadataUri (string): ipfs://QmbsFiVLYPKTHhqqkWYFvH6833XorM8A5VoUSuZuWfTkSH/hidden.json

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d54377452446f5335796d396171754a715a587168323741
Arg [4] : 386d38565a63657962344d52565556746b516877342f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [6] : 697066733a2f2f516d62734669564c59504b54486871716b5759467648363833
Arg [7] : 33586f724d384135566f5553755a755766546b53482f68696464656e2e6a736f
Arg [8] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

73582:6033:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77452:102;;;;;;;;;;-1:-1:-1;77452:102:0;;;;;:::i;:::-;;:::i;:::-;;14827:615;;;;;;;;;;-1:-1:-1;14827:615:0;;;;;:::i;:::-;;:::i;:::-;;;750:14:1;;743:22;725:41;;713:2;698:18;14827:615:0;;;;;;;;20474:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;75563:553::-;;;;;;:::i;:::-;;:::i;22420:204::-;;;;;;;;;;-1:-1:-1;22420:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;22420:204:0;1528:203:1;21968:386:0;;;;;;;;;;-1:-1:-1;21968:386:0;;;;;:::i;:::-;;:::i;76639:100::-;;;;;;;;;;-1:-1:-1;76639:100:0;;;;;:::i;:::-;;:::i;13881:315::-;;;;;;;;;;;;;:::i;:::-;;;3544:25:1;;;3532:2;3517:18;13881:315:0;3398:177:1;74232:33:0;;;;;;;;;;;;;;;;77366:78;;;;;;;;;;-1:-1:-1;77366:78:0;;;;;:::i;:::-;;:::i;74308:43::-;;;;;;;;;;;;;;;;31685:2800;;;;;;;;;;-1:-1:-1;31685:2800:0;;;;;:::i;:::-;;:::i;77844:396::-;;;;;;;;;;-1:-1:-1;77844:396:0;;;;;:::i;:::-;;:::i;73955:30::-;;;;;;;;;;;;;;;;77560:277;;;;;;;;;;;;;:::i;23310:185::-;;;;;;;;;;-1:-1:-1;23310:185:0;;;;;:::i;:::-;;:::i;76501:132::-;;;;;;;;;;-1:-1:-1;76501:132:0;;;;;:::i;:::-;;:::i;74705:28::-;;;;;;;;;;-1:-1:-1;74705:28:0;;;;;;;;;;;73833:33;;;;;;;;;;;;;:::i;74508:37::-;;;;;;;;;;;;;;;;76828:154;;;;;;;;;;-1:-1:-1;76828:154:0;;;;;:::i;:::-;;:::i;20263:144::-;;;;;;;;;;-1:-1:-1;20263:144:0;;;;;:::i;:::-;;:::i;74408:43::-;;;;;;;;;;;;;;;;74616:24;;;;;;;;;;-1:-1:-1;74616:24:0;;;;;;;;15506:224;;;;;;;;;;-1:-1:-1;15506:224:0;;;;;:::i;:::-;;:::i;69691:103::-;;;;;;;;;;;;;:::i;76988:154::-;;;;;;;;;;-1:-1:-1;76988:154:0;;;;;:::i;:::-;;:::i;76124:202::-;;;;;;;;;;-1:-1:-1;76124:202:0;;;;;:::i;:::-;;:::i;78244:712::-;;;;;;;;;;-1:-1:-1;78244:712:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;69043:87::-;;;;;;;;;;-1:-1:-1;69116:6:0;;-1:-1:-1;;;;;69116:6:0;69043:87;;74149:38;;;;;;;;;;;;;;;;20643:104;;;;;;;;;;;;;:::i;74078:35::-;;;;;;;;;;;;;;;;22696:308;;;;;;;;;;-1:-1:-1;22696:308:0;;;;;:::i;:::-;;:::i;73895:31::-;;;;;;;;;;;;;:::i;23566:399::-;;;;;;;;;;-1:-1:-1;23566:399:0;;;;;:::i;:::-;;:::i;79063:445::-;;;;;;;;;;-1:-1:-1;79063:445:0;;;;;:::i;:::-;;:::i;76745:77::-;;;;;;;;;;-1:-1:-1;76745:77:0;;;;;:::i;:::-;;:::i;77148:126::-;;;;;;;;;;-1:-1:-1;77148:126:0;;;;;:::i;:::-;;:::i;77280:78::-;;;;;;;;;;-1:-1:-1;77280:78:0;;;;;:::i;:::-;;:::i;76332:81::-;;;;;;;;;;-1:-1:-1;76332:81:0;;;;;:::i;:::-;;:::i;23075:164::-;;;;;;;;;;-1:-1:-1;23075:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;23196:25:0;;;23172:4;23196:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23075:164;73787:17;;;;;;;;;;;;;:::i;69949:201::-;;;;;;;;;;-1:-1:-1;69949:201:0;;;;;:::i;:::-;;:::i;76419:76::-;;;;;;;;;;-1:-1:-1;76419:76:0;;;;;:::i;:::-;;:::i;77452:102::-;68929:13;:11;:13::i;:::-;77522:11:::1;:26:::0;77452:102::o;14827:615::-;14912:4;-1:-1:-1;;;;;;;;;15212:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;15289:25:0;;;15212:102;:179;;;-1:-1:-1;;;;;;;;;;15366:25:0;;;15212:179;15192:199;14827:615;-1:-1:-1;;14827:615:0:o;20474:100::-;20528:13;20561:5;20554:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20474:100;:::o;75563:553::-;75657:4;;;;75649:36;;;;-1:-1:-1;;;75649:36:0;;7133:2:1;75649:36:0;;;7115:21:1;7172:2;7152:18;;;7145:30;-1:-1:-1;;;7191:18:1;;;7184:49;7250:18;;75649:36:0;;;;;;;;;75714:1;75700:11;:15;:58;;;;;75734:24;;75719:11;:39;;75700:58;75692:91;;;;-1:-1:-1;;;75692:91:0;;7481:2:1;75692:91:0;;;7463:21:1;7520:2;7500:18;;;7493:30;-1:-1:-1;;;7539:18:1;;;7532:50;7599:18;;75692:91:0;7279:344:1;75692:91:0;75829:11;;75814;75798:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:42;;75790:75;;;;-1:-1:-1;;;75790:75:0;;8095:2:1;75790:75:0;;;8077:21:1;8134:2;8114:18;;;8107:30;-1:-1:-1;;;8153:18:1;;;8146:50;8213:18;;75790:75:0;7893:344:1;75790:75:0;75919:17;;75904:11;75880:21;75890:10;75880:9;:21::i;:::-;:35;;;;:::i;:::-;:56;;75872:98;;;;-1:-1:-1;;;75872:98:0;;8444:2:1;75872:98:0;;;8426:21:1;8483:2;8463:18;;;8456:30;8522:31;8502:18;;;8495:59;8571:18;;75872:98:0;8242:353:1;75872:98:0;76024:11;75998:23;76009:11;75998:10;:23::i;:::-;:37;;;;:::i;:::-;75985:9;:50;;75977:82;;;;-1:-1:-1;;;75977:82:0;;8975:2:1;75977:82:0;;;8957:21:1;9014:2;8994:18;;;8987:30;-1:-1:-1;;;9033:18:1;;;9026:49;9092:18;;75977:82:0;8773:343:1;75977:82:0;76074:36;67674:10;76098:11;76074:9;:36::i;:::-;75563:553;:::o;22420:204::-;22488:7;22513:16;22521:7;22513;:16::i;:::-;22508:64;;22538:34;;-1:-1:-1;;;22538:34:0;;;;;;;;;;;22508:64;-1:-1:-1;22592:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22592:24:0;;22420:204::o;21968:386::-;22041:13;22057:16;22065:7;22057;:16::i;:::-;22041:32;-1:-1:-1;67674:10:0;-1:-1:-1;;;;;22090:28:0;;;22086:175;;22138:44;22155:5;67674:10;23075:164;:::i;22138:44::-;22133:128;;22210:35;;-1:-1:-1;;;22210:35:0;;;;;;;;;;;22133:128;22273:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;22273:29:0;-1:-1:-1;;;;;22273:29:0;;;;;;;;;22318:28;;22273:24;;22318:28;;;;;;;22030:324;21968:386;;:::o;76639:100::-;68929:13;:11;:13::i;:::-;76711:9:::1;:22;76723:10:::0;76711:9;:22:::1;:::i;:::-;;76639:100:::0;:::o;13881:315::-;79050:1;14147:12;13934:7;14131:13;:28;-1:-1:-1;;14131:46:0;;13881:315::o;77366:78::-;68929:13;:11;:13::i;:::-;77424:5:::1;:14:::0;77366:78::o;31685:2800::-;31819:27;31849;31868:7;31849:18;:27::i;:::-;31819:57;;31934:4;-1:-1:-1;;;;;31893:45:0;31909:19;-1:-1:-1;;;;;31893:45:0;;31889:86;;31947:28;;-1:-1:-1;;;31947:28:0;;;;;;;;;;;31889:86;31989:27;30415:21;;;30242:15;30457:4;30450:36;30539:4;30523:21;;30629:26;;67674:10;31382:30;;;-1:-1:-1;;;;;31080:26:0;;31361:19;;;31358:55;32168:174;;32255:43;32272:4;67674:10;23075:164;:::i;32255:43::-;32250:92;;32307:35;;-1:-1:-1;;;32307:35:0;;;;;;;;;;;32250:92;-1:-1:-1;;;;;32359:16:0;;32355:52;;32384:23;;-1:-1:-1;;;32384:23:0;;;;;;;;;;;32355:52;32556:15;32553:160;;;32696:1;32675:19;32668:30;32553:160;-1:-1:-1;;;;;33091:24:0;;;;;;;:18;:24;;;;;;33089:26;;-1:-1:-1;;33089:26:0;;;33160:22;;;;;;;;;33158:24;;-1:-1:-1;33158:24:0;;;20162:11;20138:22;20134:40;20121:62;-1:-1:-1;;;20121:62:0;33453:26;;;;:17;:26;;;;;:174;;;;-1:-1:-1;;;33747:46:0;;:51;;33743:626;;33851:1;33841:11;;33819:19;33974:30;;;:17;:30;;;;;;:35;;33970:384;;34112:13;;34097:11;:28;34093:242;;34259:30;;;;:17;:30;;;;;:52;;;34093:242;33800:569;33743:626;34416:7;34412:2;-1:-1:-1;;;;;34397:27:0;34406:4;-1:-1:-1;;;;;34397:27:0;;;;;;;;;;;34435:42;31808:2677;;;31685:2800;;;:::o;77844:396::-;77901:7;77964:24;;77949:11;77925:21;77935:10;77925:9;:21::i;:::-;:35;;;;:::i;:::-;:63;;:99;;;;;78007:17;;77992:13;:11;:13::i;:::-;:32;77925:99;77921:144;;;-1:-1:-1;;78046:5:0;;;77844:396::o;77921:144::-;78119:24;;78104:11;78080:21;78090:10;78080:9;:21::i;:::-;:35;;;;:::i;:::-;:63;;:94;;;;;78163:11;;78147:13;:11;:13::i;:::-;:27;78080:94;78076:136;;;-1:-1:-1;;78195:5:0;;;77844:396::o;78076:136::-;-1:-1:-1;;78229:5:0;;;77844:396::o;77560:277::-;68929:13;:11;:13::i;:::-;77605:7:::1;77626:42;77711:3;77682:26;:21;77706:2;77682:26;:::i;:::-;:32;;;;:::i;:::-;77618:101;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77604:115;;;77734:2;77726:11;;;::::0;::::1;;77745:7;77766;69116:6:::0;;-1:-1:-1;;;;;69116:6:0;;69043:87;77766:7:::1;-1:-1:-1::0;;;;;77758:21:0::1;77787;77758:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77744:69;;;77828:2;77820:11;;;::::0;::::1;23310:185:::0;23448:39;23465:4;23471:2;23475:7;23448:39;;;;;;;;;;;;:16;:39::i;:::-;23310:185;;;:::o;76501:132::-;68929:13;:11;:13::i;:::-;76589:17:::1;:38;76609:18:::0;76589:17;:38:::1;:::i;73833:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;76828:154::-;68929:13;:11;:13::i;:::-;76924:24:::1;:52:::0;76828:154::o;20263:144::-;20327:7;20370:27;20389:7;20370:18;:27::i;15506:224::-;15570:7;-1:-1:-1;;;;;15594:19:0;;15590:60;;15622:28;;-1:-1:-1;;;15622:28:0;;;;;;;;;;;15590:60;-1:-1:-1;;;;;;15668:25:0;;;;;:18;:25;;;;;;10061:13;15668:54;;15506:224::o;69691:103::-;68929:13;:11;:13::i;:::-;69756:30:::1;69783:1;69756:18;:30::i;:::-;69691:103::o:0;76988:154::-;68929:13;:11;:13::i;:::-;77084:24:::1;:52:::0;76988:154::o;76124:202::-;68929:13;:11;:13::i;:::-;76244:11:::1;;76229;76213:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:42;;76205:75;;;::::0;-1:-1:-1;;;76205:75:0;;8095:2:1;76205:75:0::1;::::0;::::1;8077:21:1::0;8134:2;8114:18;;;8107:30;-1:-1:-1;;;8153:18:1;;;8146:50;8213:18;;76205:75:0::1;7893:344:1::0;76205:75:0::1;76287:33;76297:9;76308:11;76287:9;:33::i;78244:712::-:0;78305:16;78351:18;78386:16;78396:5;78386:9;:16::i;:::-;78372:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;78372:31:0;;78351:52;;78415:11;78429:14;13623:7;13650:13;;13576:95;78429:14;78415:28;;78454:19;78484:25;78525:9;78520:403;78540:3;78536:1;:7;78520:403;;;78565:31;78599:15;78612:1;78599:12;:15::i;:::-;78565:49;;78633:9;:16;;;78629:65;;;78670:8;;;78629:65;78712:14;;-1:-1:-1;;;;;78712:28:0;;78708:103;;78781:14;;;-1:-1:-1;78708:103:0;78850:5;-1:-1:-1;;;;;78829:26:0;:17;-1:-1:-1;;;;;78829:26:0;;78825:87;;78895:1;78876;78878:13;;;;;;78876:16;;;;;;;;:::i;:::-;;;;;;:20;;;;;78825:87;78550:373;78520:403;78545:3;;78520:403;;;-1:-1:-1;78940:1:0;;78244:712;-1:-1:-1;;;;;78244:712:0:o;20643:104::-;20699:13;20732:7;20725:14;;;;;:::i;22696:308::-;67674:10;-1:-1:-1;;;;;22795:31:0;;;22791:61;;22835:17;;-1:-1:-1;;;22835:17:0;;;;;;;;;;;22791:61;67674:10;22865:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;22865:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;22865:60:0;;;;;;;;;;22941:55;;725:41:1;;;22865:49:0;;67674:10;22941:55;;698:18:1;22941:55:0;;;;;;;22696:308;;:::o;73895:31::-;;;;;;;:::i;23566:399::-;23733:31;23746:4;23752:2;23756:7;23733:12;:31::i;:::-;-1:-1:-1;;;;;23779:14:0;;;:19;23775:183;;23818:56;23849:4;23855:2;23859:7;23868:5;23818:30;:56::i;:::-;23813:145;;23902:40;;-1:-1:-1;;;23902:40:0;;;;;;;;;;;23813:145;23566:399;;;;:::o;79063:445::-;79137:13;79167:17;79175:8;79167:7;:17::i;:::-;79159:77;;;;-1:-1:-1;;;79159:77:0;;12126:2:1;79159:77:0;;;12108:21:1;12165:2;12145:18;;;12138:30;12204:34;12184:18;;;12177:62;-1:-1:-1;;;12255:18:1;;;12248:45;12310:19;;79159:77:0;11924:411:1;79159:77:0;79249:8;;;;;;;:17;;79261:5;79249:17;79245:64;;79284:17;79277:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79063:445;;;:::o;79245:64::-;79317:28;79348:10;:8;:10::i;:::-;79317:41;;79403:1;79378:14;79372:28;:32;:130;;;;;;;;;;;;;;;;;79440:14;79456:19;:8;:17;:19::i;:::-;79477:9;79423:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;79372:130;79365:137;79063:445;-1:-1:-1;;;79063:445:0:o;76745:77::-;68929:13;:11;:13::i;:::-;76804:4:::1;:12:::0;;-1:-1:-1;;76804:12:0::1;::::0;::::1;;::::0;;;::::1;::::0;;76745:77::o;77148:126::-;68929:13;:11;:13::i;:::-;77230:17:::1;:38:::0;77148:126::o;77280:78::-;68929:13;:11;:13::i;:::-;77338:5:::1;:14:::0;77280:78::o;76332:81::-;68929:13;:11;:13::i;:::-;76390:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;76390:17:0;;::::1;::::0;;;::::1;::::0;;76332:81::o;73787:17::-;;;;;;;:::i;69949:201::-;68929:13;:11;:13::i;:::-;-1:-1:-1;;;;;70038:22:0;::::1;70030:73;;;::::0;-1:-1:-1;;;70030:73:0;;13777:2:1;70030:73:0::1;::::0;::::1;13759:21:1::0;13816:2;13796:18;;;13789:30;13855:34;13835:18;;;13828:62;-1:-1:-1;;;13906:18:1;;;13899:36;13952:19;;70030:73:0::1;13575:402:1::0;70030:73:0::1;70114:28;70133:8;70114:18;:28::i;76419:76::-:0;68929:13;:11;:13::i;:::-;76479:3:::1;:10;76485:4:::0;76479:3;:10:::1;:::i;69208:132::-:0;69116:6;;-1:-1:-1;;;;;69116:6:0;67674:10;69272:23;69264:68;;;;-1:-1:-1;;;69264:68:0;;14184:2:1;69264:68:0;;;14166:21:1;;;14203:18;;;14196:30;14262:34;14242:18;;;14235:62;14314:18;;69264:68:0;13982:356:1;75226:329:0;75291:13;75358:24;;75343:11;75319:21;75329:10;75319:9;:21::i;:::-;:35;;;;:::i;:::-;:63;;:100;;;;;75402:17;;75386:13;:11;:13::i;:::-;:33;75319:100;75315:137;;;-1:-1:-1;;75439:5:0;;;75226:329::o;75315:137::-;75501:17;;75486:11;75462:21;75472:10;75462:9;:21::i;:::-;:35;;;;:::i;:::-;:56;75458:92;;-1:-1:-1;;75537:5:0;;;75226:329::o;75458:92::-;75226:329;;;:::o;24577:104::-;24646:27;24656:2;24660:8;24646:27;;;;;;;;;;;;:9;:27::i;24220:273::-;24277:4;24333:7;79050:1;24314:26;;:66;;;;;24367:13;;24357:7;:23;24314:66;:152;;;;-1:-1:-1;;24418:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;24418:43:0;:48;;24220:273::o;17180:1129::-;17247:7;17282;;79050:1;17331:23;17327:915;;17384:13;;17377:4;:20;17373:869;;;17422:14;17439:23;;;:17;:23;;;;;;;-1:-1:-1;;;17528:23:0;;:28;;17524:699;;18047:113;18054:6;18064:1;18054:11;18047:113;;-1:-1:-1;;;18125:6:0;18107:25;;;;:17;:25;;;;;;18047:113;;17524:699;17399:843;17373:869;18270:31;;-1:-1:-1;;;18270:31:0;;;;;;;;;;;70310:191;70403:6;;;-1:-1:-1;;;;;70420:17:0;;;-1:-1:-1;;;;;;70420:17:0;;;;;;;70453:40;;70403:6;;;70420:17;70403:6;;70453:40;;70384:16;;70453:40;70373:128;70310:191;:::o;18857:153::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18977:24:0;;;;:17;:24;;;;;;18958:44;;-1:-1:-1;;;;;;;;;;;;;18513:41:0;;;;10715:3;18599:32;;;18565:67;;-1:-1:-1;;;18565:67:0;-1:-1:-1;;;18662:23:0;;:28;;-1:-1:-1;;;18643:47:0;;;;11232:3;18730:27;;;;-1:-1:-1;;;18701:57:0;-1:-1:-1;18403:363:0;38436:716;38620:88;;-1:-1:-1;;;38620:88:0;;38599:4;;-1:-1:-1;;;;;38620:45:0;;;;;:88;;67674:10;;38687:4;;38693:7;;38702:5;;38620:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38620:88:0;;;;;;;;-1:-1:-1;;38620:88:0;;;;;;;;;;;;:::i;:::-;;;38616:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38903:6;:13;38920:1;38903:18;38899:235;;38949:40;;-1:-1:-1;;;38949:40:0;;;;;;;;;;;38899:235;39092:6;39086:13;39077:6;39073:2;39069:15;39062:38;38616:529;-1:-1:-1;;;;;;38779:64:0;-1:-1:-1;;;38779:64:0;;-1:-1:-1;38616:529:0;38436:716;;;;;;:::o;79514:98::-;79574:13;79603:3;79596:10;;;;;:::i;54194:723::-;54250:13;54471:5;54480:1;54471:10;54467:53;;-1:-1:-1;;54498:10:0;;;;;;;;;;;;-1:-1:-1;;;54498:10:0;;;;;54194:723::o;54467:53::-;54545:5;54530:12;54586:78;54593:9;;54586:78;;54619:8;;;;:::i;:::-;;-1:-1:-1;54642:10:0;;-1:-1:-1;54650:2:0;54642:10;;:::i;:::-;;;54586:78;;;54674:19;54706:6;54696:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54696:17:0;;54674:39;;54724:154;54731:10;;54724:154;;54758:11;54768:1;54758:11;;:::i;:::-;;-1:-1:-1;54827:10:0;54835:2;54827:5;:10;:::i;:::-;54814:24;;:2;:24;:::i;:::-;54801:39;;54784:6;54791;54784:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;54784:56:0;;;;;;;;-1:-1:-1;54855:11:0;54864:2;54855:11;;:::i;:::-;;;54724:154;;25097:681;25220:19;25226:2;25230:8;25220:5;:19::i;:::-;-1:-1:-1;;;;;25281:14:0;;;:19;25277:483;;25321:11;25335:13;25383:14;;;25416:233;25447:62;25486:1;25490:2;25494:7;;;;;;25503:5;25447:30;:62::i;:::-;25442:167;;25545:40;;-1:-1:-1;;;25545:40:0;;;;;;;;;;;25442:167;25644:3;25636:5;:11;25416:233;;25731:3;25714:13;;:20;25710:34;;25736:8;;;25710:34;25302:458;;25097:681;;;:::o;26051:1529::-;26116:20;26139:13;-1:-1:-1;;;;;26167:16:0;;26163:48;;26192:19;;-1:-1:-1;;;26192:19:0;;;;;;;;;;;26163:48;26226:8;26238:1;26226:13;26222:44;;26248:18;;-1:-1:-1;;;26248:18:0;;;;;;;;;;;26222:44;-1:-1:-1;;;;;26754:22:0;;;;;;:18;:22;;10198:2;26754:22;;:70;;26792:31;26780:44;;26754:70;;;20162:11;20138:22;20134:40;-1:-1:-1;21872:15:0;;21847:23;21843:45;20131:51;20121:62;27067:31;;;;:17;:31;;;;;:173;27085:12;27316:23;;;27354:101;27381:35;;27406:9;;;;;-1:-1:-1;;;;;27381:35:0;;;27398:1;;27381:35;;27398:1;;27381:35;27450:3;27440:7;:13;27354:101;;27471:13;:19;-1:-1:-1;23310:185:0;;;:::o;14:180:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:1;;14:180;-1:-1:-1;14:180:1:o;199:131::-;-1:-1:-1;;;;;;273:32:1;;263:43;;253:71;;320:1;317;310:12;335:245;393:6;446:2;434:9;425:7;421:23;417:32;414:52;;;462:1;459;452:12;414:52;501:9;488:23;520:30;544:5;520:30;:::i;777:258::-;849:1;859:113;873:6;870:1;867:13;859:113;;;949:11;;;943:18;930:11;;;923:39;895:2;888:10;859:113;;;990:6;987:1;984:13;981:48;;;-1:-1:-1;;1025:1:1;1007:16;;1000:27;777:258::o;1040:::-;1082:3;1120:5;1114:12;1147:6;1142:3;1135:19;1163:63;1219:6;1212:4;1207:3;1203:14;1196:4;1189:5;1185:16;1163:63;:::i;:::-;1280:2;1259:15;-1:-1:-1;;1255:29:1;1246:39;;;;1287:4;1242:50;;1040:258;-1:-1:-1;;1040:258:1:o;1303:220::-;1452:2;1441:9;1434:21;1415:4;1472:45;1513:2;1502:9;1498:18;1490:6;1472:45;:::i;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;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:127::-;2234:10;2229:3;2225:20;2222:1;2215:31;2265:4;2262:1;2255:15;2289:4;2286:1;2279:15;2305:632;2370:5;2400:18;2441:2;2433:6;2430:14;2427:40;;;2447:18;;:::i;:::-;2522:2;2516:9;2490:2;2576:15;;-1:-1:-1;;2572:24:1;;;2598:2;2568:33;2564:42;2552:55;;;2622:18;;;2642:22;;;2619:46;2616:72;;;2668:18;;:::i;:::-;2708:10;2704:2;2697:22;2737:6;2728:15;;2767:6;2759;2752:22;2807:3;2798:6;2793:3;2789:16;2786:25;2783:45;;;2824:1;2821;2814:12;2783:45;2874:6;2869:3;2862:4;2854:6;2850:17;2837:44;2929:1;2922:4;2913:6;2905;2901:19;2897:30;2890:41;;;;2305:632;;;;;:::o;2942:451::-;3011:6;3064:2;3052:9;3043:7;3039:23;3035:32;3032:52;;;3080:1;3077;3070:12;3032:52;3120:9;3107:23;3153:18;3145:6;3142:30;3139:50;;;3185:1;3182;3175:12;3139:50;3208:22;;3261:4;3253:13;;3249:27;-1:-1:-1;3239:55:1;;3290:1;3287;3280:12;3239:55;3313:74;3379:7;3374:2;3361:16;3356:2;3352;3348:11;3313:74;:::i;3580:328::-;3657:6;3665;3673;3726:2;3714:9;3705:7;3701:23;3697:32;3694:52;;;3742:1;3739;3732:12;3694:52;3765:29;3784:9;3765:29;:::i;:::-;3755:39;;3813:38;3847:2;3836:9;3832:18;3813:38;:::i;:::-;3803:48;;3898:2;3887:9;3883:18;3870:32;3860:42;;3580:328;;;;;:::o;3913:186::-;3972:6;4025:2;4013:9;4004:7;4000:23;3996:32;3993:52;;;4041:1;4038;4031:12;3993:52;4064:29;4083:9;4064:29;:::i;4104:254::-;4172:6;4180;4233:2;4221:9;4212:7;4208:23;4204:32;4201:52;;;4249:1;4246;4239:12;4201:52;4285:9;4272:23;4262:33;;4314:38;4348:2;4337:9;4333:18;4314:38;:::i;:::-;4304:48;;4104:254;;;;;:::o;4363:632::-;4534:2;4586:21;;;4656:13;;4559:18;;;4678:22;;;4505:4;;4534:2;4757:15;;;;4731:2;4716:18;;;4505:4;4800:169;4814:6;4811:1;4808:13;4800:169;;;4875:13;;4863:26;;4944:15;;;;4909:12;;;;4836:1;4829:9;4800:169;;;-1:-1:-1;4986:3:1;;4363:632;-1:-1:-1;;;;;;4363:632:1:o;5000:160::-;5065:20;;5121:13;;5114:21;5104:32;;5094:60;;5150:1;5147;5140:12;5165:254;5230:6;5238;5291:2;5279:9;5270:7;5266:23;5262:32;5259:52;;;5307:1;5304;5297:12;5259:52;5330:29;5349:9;5330:29;:::i;:::-;5320:39;;5378:35;5409:2;5398:9;5394:18;5378:35;:::i;5424:667::-;5519:6;5527;5535;5543;5596:3;5584:9;5575:7;5571:23;5567:33;5564:53;;;5613:1;5610;5603:12;5564:53;5636:29;5655:9;5636:29;:::i;:::-;5626:39;;5684:38;5718:2;5707:9;5703:18;5684:38;:::i;:::-;5674:48;;5769:2;5758:9;5754:18;5741:32;5731:42;;5824:2;5813:9;5809:18;5796:32;5851:18;5843:6;5840:30;5837:50;;;5883:1;5880;5873:12;5837:50;5906:22;;5959:4;5951:13;;5947:27;-1:-1:-1;5937:55:1;;5988:1;5985;5978:12;5937:55;6011:74;6077:7;6072:2;6059:16;6054:2;6050;6046:11;6011:74;:::i;:::-;6001:84;;;5424:667;;;;;;;:::o;6096:180::-;6152:6;6205:2;6193:9;6184:7;6180:23;6176:32;6173:52;;;6221:1;6218;6211:12;6173:52;6244:26;6260:9;6244:26;:::i;6281:260::-;6349:6;6357;6410:2;6398:9;6389:7;6385:23;6381:32;6378:52;;;6426:1;6423;6416:12;6378:52;6449:29;6468:9;6449:29;:::i;:::-;6439:39;;6497:38;6531:2;6520:9;6516:18;6497:38;:::i;6546:380::-;6625:1;6621:12;;;;6668;;;6689:61;;6743:4;6735:6;6731:17;6721:27;;6689:61;6796:2;6788:6;6785:14;6765:18;6762:38;6759:161;;6842:10;6837:3;6833:20;6830:1;6823:31;6877:4;6874:1;6867:15;6905:4;6902:1;6895:15;6759:161;;6546:380;;;:::o;7628:127::-;7689:10;7684:3;7680:20;7677:1;7670:31;7720:4;7717:1;7710:15;7744:4;7741:1;7734:15;7760:128;7800:3;7831:1;7827:6;7824:1;7821:13;7818:39;;;7837:18;;:::i;:::-;-1:-1:-1;7873:9:1;;7760:128::o;8600:168::-;8640:7;8706:1;8702;8698:6;8694:14;8691:1;8688:21;8683:1;8676:9;8669:17;8665:45;8662:71;;;8713:18;;:::i;:::-;-1:-1:-1;8753:9:1;;8600:168::o;9247:545::-;9349:2;9344:3;9341:11;9338:448;;;9385:1;9410:5;9406:2;9399:17;9455:4;9451:2;9441:19;9525:2;9513:10;9509:19;9506:1;9502:27;9496:4;9492:38;9561:4;9549:10;9546:20;9543:47;;;-1:-1:-1;9584:4:1;9543:47;9639:2;9634:3;9630:12;9627:1;9623:20;9617:4;9613:31;9603:41;;9694:82;9712:2;9705:5;9702:13;9694:82;;;9757:17;;;9738:1;9727:13;9694:82;;9968:1352;10094:3;10088:10;10121:18;10113:6;10110:30;10107:56;;;10143:18;;:::i;:::-;10172:97;10262:6;10222:38;10254:4;10248:11;10222:38;:::i;:::-;10216:4;10172:97;:::i;:::-;10324:4;;10388:2;10377:14;;10405:1;10400:663;;;;11107:1;11124:6;11121:89;;;-1:-1:-1;11176:19:1;;;11170:26;11121:89;-1:-1:-1;;9925:1:1;9921:11;;;9917:24;9913:29;9903:40;9949:1;9945:11;;;9900:57;11223:81;;10370:944;;10400:663;9194:1;9187:14;;;9231:4;9218:18;;-1:-1:-1;;10436:20:1;;;10554:236;10568:7;10565:1;10562:14;10554:236;;;10657:19;;;10651:26;10636:42;;10749:27;;;;10717:1;10705:14;;;;10584:19;;10554:236;;;10558:3;10818:6;10809:7;10806:19;10803:201;;;10879:19;;;10873:26;-1:-1:-1;;10962:1:1;10958:14;;;10974:3;10954:24;10950:37;10946:42;10931:58;10916:74;;10803:201;-1:-1:-1;;;;;11050:1:1;11034:14;;;11030:22;11017:36;;-1:-1:-1;9968:1352:1:o;11325:127::-;11386:10;11381:3;11377:20;11374:1;11367:31;11417:4;11414:1;11407:15;11441:4;11438:1;11431:15;11457:120;11497:1;11523;11513:35;;11528:18;;:::i;:::-;-1:-1:-1;11562:9:1;;11457:120::o;11792:127::-;11853:10;11848:3;11844:20;11841:1;11834:31;11884:4;11881:1;11874:15;11908:4;11905:1;11898:15;12340:1230;12564:3;12602:6;12596:13;12628:4;12641:51;12685:6;12680:3;12675:2;12667:6;12663:15;12641:51;:::i;:::-;12755:13;;12714:16;;;;12777:55;12755:13;12714:16;12799:15;;;12777:55;:::i;:::-;12921:13;;12854:20;;;12894:1;;12959:36;12921:13;12959:36;:::i;:::-;13014:1;13031:18;;;13058:141;;;;13213:1;13208:337;;;;13024:521;;13058:141;-1:-1:-1;;13093:24:1;;13079:39;;13170:16;;13163:24;13149:39;;13138:51;;;-1:-1:-1;13058:141:1;;13208:337;13239:6;13236:1;13229:17;13287:2;13284:1;13274:16;13312:1;13326:169;13340:8;13337:1;13334:15;13326:169;;;13422:14;;13407:13;;;13400:37;13465:16;;;;13357:10;;13326:169;;;13330:3;;13526:8;13519:5;13515:20;13508:27;;13024:521;-1:-1:-1;13561:3:1;;12340:1230;-1:-1:-1;;;;;;;;;;12340:1230:1:o;14343:489::-;-1:-1:-1;;;;;14612:15:1;;;14594:34;;14664:15;;14659:2;14644:18;;14637:43;14711:2;14696:18;;14689:34;;;14759:3;14754:2;14739:18;;14732:31;;;14537:4;;14780:46;;14806:19;;14798:6;14780:46;:::i;:::-;14772:54;14343:489;-1:-1:-1;;;;;;14343:489:1:o;14837:249::-;14906:6;14959:2;14947:9;14938:7;14934:23;14930:32;14927:52;;;14975:1;14972;14965:12;14927:52;15007:9;15001:16;15026:30;15050:5;15026:30;:::i;15091:135::-;15130:3;15151:17;;;15148:43;;15171:18;;:::i;:::-;-1:-1:-1;15218:1:1;15207:13;;15091:135::o;15231:125::-;15271:4;15299:1;15296;15293:8;15290:34;;;15304:18;;:::i;:::-;-1:-1:-1;15341:9:1;;15231:125::o;15361:112::-;15393:1;15419;15409:35;;15424:18;;:::i;:::-;-1:-1:-1;15458:9:1;;15361:112::o

Swarm Source

ipfs://3b2608fb5bcb53fe1880a8895af6072f833955bed6eb9d3d71c026e678fb716f
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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