ETH Price: $2,627.78 (+1.43%)

Token

Hollows NFT (HOLLOWS)
 

Overview

Max Total Supply

3,027 HOLLOWS

Holders

551

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 HOLLOWS
0xc09afb85ad34fcf81656c553f76e4ea0b7c5eeaf
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:
HollowsNFT

Compiler Version
v0.8.4+commit.c7e474f2

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

//  _   _       _ _                     _   _ _____ _____
// | | | | ___ | | | _____      _____  | \ | |  ___|_   _|
// | |_| |/ _ \| | |/ _ \ \ /\ / / __| |  \| | |_    | |
// |  _  | (_) | | | (_) \ V  V /\__ \ | |\  |  _|   | |
// |_| |_|\___/|_|_|\___/ \_/\_/ |___/ |_| \_|_|     |_|
//
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

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

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

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

    // 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;
        assembly {
            // Cast aux without masking.
            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 value)
    {
        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`.
            value := 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), ".json"))
                : "";
    }

    /**
     * @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 Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @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-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.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 or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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,
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED) |
                    _nextExtraData(address(0), to, 0)
            );

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

            _currentIndex = startTokenId + quantity;
        }
        _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 number minted.
            _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,
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED) |
                    _nextExtraData(address(0), to, 0)
            );

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

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

    /**
     * @dev Zeroes out _tokenApprovals[tokenId]
     */
    function _removeTokenApproval(uint256 tokenId) private {
        mapping(uint256 => address) storage tokenApprovalPtr = _tokenApprovals;
        assembly {
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalPtr.slot)
            let hash := keccak256(0, 0x40)
            sstore(hash, 0)
        }
    }

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

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

        address approvedAddress = _tokenApprovals[tokenId];

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            approvedAddress == _msgSenderERC721A());

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        if (approvedAddress != address(0)) {
            _removeTokenApproval(tokenId);
        }

        // 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));
        address approvedAddress = _tokenApprovals[tokenId];

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                approvedAddress == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        if (approvedAddress != address(0)) {
            _removeTokenApproval(tokenId);
        }

        // 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 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
    ) internal view virtual returns (uint256) {
        uint24 previousExtraData;
        assembly {
            previousExtraData := shr(BITPOS_EXTRA_DATA, prevOwnershipPacked)
        }
        return
            uint256(_extraData(from, to, previousExtraData)) <<
            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)
        }
    }
}

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

pragma solidity ^0.8.4;

contract HollowsNFT is Ownable, ERC721A {
    uint256 public constant maxPerTx = 5;
    uint256 public constant maxFree = 2;
    uint256 public constant freeMints = 1000;
    uint256 public constant price = 0.002 ether;
    uint256 public maxSupply = 3600;
    bool public mintActive;
    string private _baseTokenURI;

    constructor(string memory _inputURI) ERC721A("Hollows NFT", "HOLLOWS") {
        _baseTokenURI = _inputURI;
    }

    modifier mintCompliance() {
        require(tx.origin == msg.sender, "Wrong Caller");
        require(mintActive, "Mint inactive");
        _;
    }

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

    function freeMint(uint256 _quantity) external mintCompliance {
        require(
            _numberMinted(msg.sender) + _quantity <= maxFree,
            "Exceeds users free mints"
        );
        require(freeMints >= totalSupply() + _quantity, "Free mint over");
        _safeMint(msg.sender, _quantity);
    }

    //Ownable functions
    function teamMint(uint256 _quantity, address _to) external onlyOwner {
        require(maxSupply >= totalSupply() + _quantity, "Exceeds max supply");
        _safeMint(_to, _quantity);
    }

    function flipMintState() external onlyOwner {
        mintActive = !mintActive;
    }

    function reduceSupply(uint256 _amount) external onlyOwner {
        require(_amount >= totalSupply(), "Less than current supply");
        require(_amount < maxSupply, "Can't increase supply");
        maxSupply = _amount;
    }

    function setBaseURI(string memory _inputURI) public onlyOwner {
        _baseTokenURI = _inputURI;
    }

    function withdrawFunds(address _to) external onlyOwner {
        (bool success, ) = payable(_to).call{value: address(this).balance}("");
        require(success, "transfer failed.");
    }

    //Payable functions

    function paidMint(uint256 _quantity) external payable mintCompliance {
        require(_quantity <= maxPerTx, "Exceeds max per tx");
        require(msg.value >= price * _quantity, "Not enough eth");
        require(maxSupply >= totalSupply() + _quantity, "Exceeds max supply");
        _safeMint(msg.sender, _quantity);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_inputURI","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":"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":"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":"flipMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_quantity","type":"uint256"}],"name":"paidMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"reduceSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_inputURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052610e106009553480156200001757600080fd5b5060405162001d4b38038062001d4b8339810160408190526200003a91620001e2565b6040518060400160405280600b81526020016a121bdb1b1bdddcc813919560aa1b81525060405180604001604052806007815260200166484f4c4c4f575360c81b8152506200009862000092620000e860201b60201c565b620000ec565b8151620000ad9060039060208501906200013c565b508051620000c39060049060208401906200013c565b50600060015550508051620000e090600b9060208401906200013c565b50506200030b565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200014a90620002b8565b90600052602060002090601f0160209004810192826200016e5760008555620001b9565b82601f106200018957805160ff1916838001178555620001b9565b82800160010185558215620001b9579182015b82811115620001b95782518255916020019190600101906200019c565b50620001c7929150620001cb565b5090565b5b80821115620001c75760008155600101620001cc565b60006020808385031215620001f5578182fd5b82516001600160401b03808211156200020c578384fd5b818501915085601f83011262000220578384fd5b815181811115620002355762000235620002f5565b604051601f8201601f19908116603f01168101908382118183101715620002605762000260620002f5565b81604052828152888684870101111562000278578687fd5b8693505b828410156200029b57848401860151818501870152928501926200027c565b82841115620002ac57868684830101525b98975050505050505050565b600181811c90821680620002cd57607f821691505b60208210811415620002ef57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611a30806200031b6000396000f3fe6080604052600436106101cd5760003560e01c8063715018a6116100f7578063a22cb46511610095578063d5abeb0111610064578063d5abeb01146104f6578063e985e9c51461050c578063f2fde38b14610555578063f968adbe1461057557600080fd5b8063a22cb46514610476578063b88d4fde14610496578063bfa457bc146104b6578063c87b56dd146104d657600080fd5b806380b17335116100d157806380b17335146104125780638da5cb5b1461042857806395d89b4114610446578063a035b1fe1461045b57600080fd5b8063715018a6146103bd5780637c928fe9146103d257806380623444146103f257600080fd5b806342842e0e1161016f5780636352211e1161013e5780636352211e1461034a57806365cde7331461036a57806368742da61461037d57806370a082311461039d57600080fd5b806342842e0e146102e0578063485a68a31461030057806355f804b31461031557806359c74f291461033557600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806318160ddd1461028357806323b872dd146102a657806325fd90f3146102c657600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611772565b61058a565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105dc565b6040516101fe91906118d2565b34801561023557600080fd5b506102496102443660046117f0565b61066e565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611749565b6106b2565b005b34801561028f57600080fd5b50600254600154035b6040519081526020016101fe565b3480156102b257600080fd5b506102816102c136600461165b565b610752565b3480156102d257600080fd5b50600a546101f29060ff1681565b3480156102ec57600080fd5b506102816102fb36600461165b565b610762565b34801561030c57600080fd5b50610298600281565b34801561032157600080fd5b506102816103303660046117aa565b61077d565b34801561034157600080fd5b506102816107c7565b34801561035657600080fd5b506102496103653660046117f0565b610805565b6102816103783660046117f0565b610810565b34801561038957600080fd5b5061028161039836600461160f565b610992565b3480156103a957600080fd5b506102986103b836600461160f565b610a52565b3480156103c957600080fd5b50610281610aa1565b3480156103de57600080fd5b506102816103ed3660046117f0565b610ad7565b3480156103fe57600080fd5b5061028161040d3660046117f0565b610c2a565b34801561041e57600080fd5b506102986103e881565b34801561043457600080fd5b506000546001600160a01b0316610249565b34801561045257600080fd5b5061021c610cf8565b34801561046757600080fd5b5061029866071afd498d000081565b34801561048257600080fd5b5061028161049136600461170f565b610d07565b3480156104a257600080fd5b506102816104b1366004611696565b610d9d565b3480156104c257600080fd5b506102816104d1366004611808565b610de7565b3480156104e257600080fd5b5061021c6104f13660046117f0565b610e79565b34801561050257600080fd5b5061029860095481565b34801561051857600080fd5b506101f2610527366004611629565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561056157600080fd5b5061028161057036600461160f565b610efe565b34801561058157600080fd5b50610298600581565b60006301ffc9a760e01b6001600160e01b0319831614806105bb57506380ac58cd60e01b6001600160e01b03198316145b806105d65750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546105eb9061197d565b80601f01602080910402602001604051908101604052809291908181526020018280546106179061197d565b80156106645780601f1061063957610100808354040283529160200191610664565b820191906000526020600020905b81548152906001019060200180831161064757829003601f168201915b5050505050905090565b600061067982610f96565b610696576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006106bd82610805565b9050336001600160a01b038216146106f6576106d98133610527565b6106f6576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61075d838383610fbe565b505050565b61075d83838360405180602001604052806000815250610d9d565b6000546001600160a01b031633146107b05760405162461bcd60e51b81526004016107a7906118e5565b60405180910390fd5b80516107c390600b9060208401906114e4565b5050565b6000546001600160a01b031633146107f15760405162461bcd60e51b81526004016107a7906118e5565b600a805460ff19811660ff90911615179055565b60006105d682611179565b32331461084e5760405162461bcd60e51b815260206004820152600c60248201526b2bb937b7339021b0b63632b960a11b60448201526064016107a7565b600a5460ff166108905760405162461bcd60e51b815260206004820152600d60248201526c4d696e7420696e61637469766560981b60448201526064016107a7565b60058111156108d65760405162461bcd60e51b815260206004820152601260248201527108af0c6cacac8e640dac2f040e0cae440e8f60731b60448201526064016107a7565b6108e78166071afd498d0000611932565b3410156109275760405162461bcd60e51b815260206004820152600e60248201526d09cdee840cadcdeeaced040cae8d60931b60448201526064016107a7565b806109356002546001540390565b61093f919061191a565b60095410156109855760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016107a7565b61098f33826111da565b50565b6000546001600160a01b031633146109bc5760405162461bcd60e51b81526004016107a7906118e5565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114610a09576040519150601f19603f3d011682016040523d82523d6000602084013e610a0e565b606091505b50509050806107c35760405162461bcd60e51b815260206004820152601060248201526f3a3930b739b332b9103330b4b632b21760811b60448201526064016107a7565b60006001600160a01b038216610a7b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610acb5760405162461bcd60e51b81526004016107a7906118e5565b610ad560006111f4565b565b323314610b155760405162461bcd60e51b815260206004820152600c60248201526b2bb937b7339021b0b63632b960a11b60448201526064016107a7565b600a5460ff16610b575760405162461bcd60e51b815260206004820152600d60248201526c4d696e7420696e61637469766560981b60448201526064016107a7565b336000908152600660205260409081902054600291610b829184911c67ffffffffffffffff1661191a565b1115610bd05760405162461bcd60e51b815260206004820152601860248201527f457863656564732075736572732066726565206d696e7473000000000000000060448201526064016107a7565b80610bde6002546001540390565b610be8919061191a565b6103e810156109855760405162461bcd60e51b815260206004820152600e60248201526d233932b29036b4b73a1037bb32b960911b60448201526064016107a7565b6000546001600160a01b03163314610c545760405162461bcd60e51b81526004016107a7906118e5565b60025460015403811015610caa5760405162461bcd60e51b815260206004820152601860248201527f4c657373207468616e2063757272656e7420737570706c79000000000000000060448201526064016107a7565b6009548110610cf35760405162461bcd60e51b815260206004820152601560248201527443616e277420696e63726561736520737570706c7960581b60448201526064016107a7565b600955565b6060600480546105eb9061197d565b6001600160a01b038216331415610d315760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610da8848484610fbe565b6001600160a01b0383163b15610de157610dc484848484611244565b610de1576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000546001600160a01b03163314610e115760405162461bcd60e51b81526004016107a7906118e5565b81610e1f6002546001540390565b610e29919061191a565b6009541015610e6f5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016107a7565b6107c381836111da565b6060610e8482610f96565b610ea157604051630a14c4b560e41b815260040160405180910390fd5b6000610eab61133c565b9050805160001415610ecc5760405180602001604052806000815250610ef7565b80610ed68461134b565b604051602001610ee7929190611856565b6040516020818303038152906040525b9392505050565b6000546001600160a01b03163314610f285760405162461bcd60e51b81526004016107a7906118e5565b6001600160a01b038116610f8d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107a7565b61098f816111f4565b6000600154821080156105d6575050600090815260056020526040902054600160e01b161590565b6000610fc982611179565b9050836001600160a01b0316816001600160a01b031614610ffc5760405162a1148160e81b815260040160405180910390fd5b6000828152600760205260408120546001600160a01b039081169190861633148061102c575061102c8633610527565b8061103f57506001600160a01b03821633145b90508061105f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661108657604051633a954ecd60e21b815260040160405180910390fd5b6001600160a01b038216156110a5576000848152600760205260408120555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040902055600160e11b8316611130576001840160008181526005602052604090205461112e57600154811461112e5760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6000816001548110156111c157600081815260056020526040902054600160e01b81166111bf575b80610ef75750600019016000818152600560205260409020546111a1565b505b604051636f96cda160e11b815260040160405180910390fd5b6107c382826040518060200160405280600081525061139a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611279903390899088908890600401611895565b602060405180830381600087803b15801561129357600080fd5b505af19250505080156112c3575060408051601f3d908101601f191682019092526112c09181019061178e565b60015b61131e573d8080156112f1576040519150601f19603f3d011682016040523d82523d6000602084013e6112f6565b606091505b508051611316576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b80546105eb9061197d565b604080516080810191829052607f0190826030600a8206018353600a90045b801561138857600183039250600a81066030018353600a900461136a565b50819003601f19909101908152919050565b6113a48383611407565b6001600160a01b0383163b1561075d576001548281035b6113ce6000868380600101945086611244565b6113eb576040516368d2bf6b60e11b815260040160405180910390fd5b8181106113bb57816001541461140057600080fd5b5050505050565b6001546001600160a01b03831661143057604051622e076360e81b815260040160405180910390fd5b8161144e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106114985750500160015550565b8280546114f09061197d565b90600052602060002090601f0160209004810192826115125760008555611558565b82601f1061152b57805160ff1916838001178555611558565b82800160010185558215611558579182015b8281111561155857825182559160200191906001019061153d565b50611564929150611568565b5090565b5b808211156115645760008155600101611569565b600067ffffffffffffffff80841115611598576115986119ce565b604051601f8501601f19908116603f011681019082821181831017156115c0576115c06119ce565b816040528093508581528686860111156115d957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461160a57600080fd5b919050565b600060208284031215611620578081fd5b610ef7826115f3565b6000806040838503121561163b578081fd5b611644836115f3565b9150611652602084016115f3565b90509250929050565b60008060006060848603121561166f578081fd5b611678846115f3565b9250611686602085016115f3565b9150604084013590509250925092565b600080600080608085870312156116ab578081fd5b6116b4856115f3565b93506116c2602086016115f3565b925060408501359150606085013567ffffffffffffffff8111156116e4578182fd5b8501601f810187136116f4578182fd5b6117038782356020840161157d565b91505092959194509250565b60008060408385031215611721578182fd5b61172a836115f3565b91506020830135801515811461173e578182fd5b809150509250929050565b6000806040838503121561175b578182fd5b611764836115f3565b946020939093013593505050565b600060208284031215611783578081fd5b8135610ef7816119e4565b60006020828403121561179f578081fd5b8151610ef7816119e4565b6000602082840312156117bb578081fd5b813567ffffffffffffffff8111156117d1578182fd5b8201601f810184136117e1578182fd5b6113348482356020840161157d565b600060208284031215611801578081fd5b5035919050565b6000806040838503121561181a578182fd5b82359150611652602084016115f3565b60008151808452611842816020860160208601611951565b601f01601f19169290920160200192915050565b60008351611868818460208801611951565b83519083019061187c818360208801611951565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906118c89083018461182a565b9695505050505050565b602081526000610ef7602083018461182a565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561192d5761192d6119b8565b500190565b600081600019048311821515161561194c5761194c6119b8565b500290565b60005b8381101561196c578181015183820152602001611954565b83811115610de15750506000910152565b600181811c9082168061199157607f821691505b602082108114156119b257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461098f57600080fdfea2646970667358221220c006586a31caee21ea1688e4b3a3a5838b33f24694e13d3a3c90ca843b84bb8a64736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696176366165637470333473636933666762347573626134697a76676234786b756971696f32376774376e65686d7272786d34786d2f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c8063715018a6116100f7578063a22cb46511610095578063d5abeb0111610064578063d5abeb01146104f6578063e985e9c51461050c578063f2fde38b14610555578063f968adbe1461057557600080fd5b8063a22cb46514610476578063b88d4fde14610496578063bfa457bc146104b6578063c87b56dd146104d657600080fd5b806380b17335116100d157806380b17335146104125780638da5cb5b1461042857806395d89b4114610446578063a035b1fe1461045b57600080fd5b8063715018a6146103bd5780637c928fe9146103d257806380623444146103f257600080fd5b806342842e0e1161016f5780636352211e1161013e5780636352211e1461034a57806365cde7331461036a57806368742da61461037d57806370a082311461039d57600080fd5b806342842e0e146102e0578063485a68a31461030057806355f804b31461031557806359c74f291461033557600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806318160ddd1461028357806323b872dd146102a657806325fd90f3146102c657600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611772565b61058a565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105dc565b6040516101fe91906118d2565b34801561023557600080fd5b506102496102443660046117f0565b61066e565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611749565b6106b2565b005b34801561028f57600080fd5b50600254600154035b6040519081526020016101fe565b3480156102b257600080fd5b506102816102c136600461165b565b610752565b3480156102d257600080fd5b50600a546101f29060ff1681565b3480156102ec57600080fd5b506102816102fb36600461165b565b610762565b34801561030c57600080fd5b50610298600281565b34801561032157600080fd5b506102816103303660046117aa565b61077d565b34801561034157600080fd5b506102816107c7565b34801561035657600080fd5b506102496103653660046117f0565b610805565b6102816103783660046117f0565b610810565b34801561038957600080fd5b5061028161039836600461160f565b610992565b3480156103a957600080fd5b506102986103b836600461160f565b610a52565b3480156103c957600080fd5b50610281610aa1565b3480156103de57600080fd5b506102816103ed3660046117f0565b610ad7565b3480156103fe57600080fd5b5061028161040d3660046117f0565b610c2a565b34801561041e57600080fd5b506102986103e881565b34801561043457600080fd5b506000546001600160a01b0316610249565b34801561045257600080fd5b5061021c610cf8565b34801561046757600080fd5b5061029866071afd498d000081565b34801561048257600080fd5b5061028161049136600461170f565b610d07565b3480156104a257600080fd5b506102816104b1366004611696565b610d9d565b3480156104c257600080fd5b506102816104d1366004611808565b610de7565b3480156104e257600080fd5b5061021c6104f13660046117f0565b610e79565b34801561050257600080fd5b5061029860095481565b34801561051857600080fd5b506101f2610527366004611629565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561056157600080fd5b5061028161057036600461160f565b610efe565b34801561058157600080fd5b50610298600581565b60006301ffc9a760e01b6001600160e01b0319831614806105bb57506380ac58cd60e01b6001600160e01b03198316145b806105d65750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546105eb9061197d565b80601f01602080910402602001604051908101604052809291908181526020018280546106179061197d565b80156106645780601f1061063957610100808354040283529160200191610664565b820191906000526020600020905b81548152906001019060200180831161064757829003601f168201915b5050505050905090565b600061067982610f96565b610696576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006106bd82610805565b9050336001600160a01b038216146106f6576106d98133610527565b6106f6576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61075d838383610fbe565b505050565b61075d83838360405180602001604052806000815250610d9d565b6000546001600160a01b031633146107b05760405162461bcd60e51b81526004016107a7906118e5565b60405180910390fd5b80516107c390600b9060208401906114e4565b5050565b6000546001600160a01b031633146107f15760405162461bcd60e51b81526004016107a7906118e5565b600a805460ff19811660ff90911615179055565b60006105d682611179565b32331461084e5760405162461bcd60e51b815260206004820152600c60248201526b2bb937b7339021b0b63632b960a11b60448201526064016107a7565b600a5460ff166108905760405162461bcd60e51b815260206004820152600d60248201526c4d696e7420696e61637469766560981b60448201526064016107a7565b60058111156108d65760405162461bcd60e51b815260206004820152601260248201527108af0c6cacac8e640dac2f040e0cae440e8f60731b60448201526064016107a7565b6108e78166071afd498d0000611932565b3410156109275760405162461bcd60e51b815260206004820152600e60248201526d09cdee840cadcdeeaced040cae8d60931b60448201526064016107a7565b806109356002546001540390565b61093f919061191a565b60095410156109855760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016107a7565b61098f33826111da565b50565b6000546001600160a01b031633146109bc5760405162461bcd60e51b81526004016107a7906118e5565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114610a09576040519150601f19603f3d011682016040523d82523d6000602084013e610a0e565b606091505b50509050806107c35760405162461bcd60e51b815260206004820152601060248201526f3a3930b739b332b9103330b4b632b21760811b60448201526064016107a7565b60006001600160a01b038216610a7b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610acb5760405162461bcd60e51b81526004016107a7906118e5565b610ad560006111f4565b565b323314610b155760405162461bcd60e51b815260206004820152600c60248201526b2bb937b7339021b0b63632b960a11b60448201526064016107a7565b600a5460ff16610b575760405162461bcd60e51b815260206004820152600d60248201526c4d696e7420696e61637469766560981b60448201526064016107a7565b336000908152600660205260409081902054600291610b829184911c67ffffffffffffffff1661191a565b1115610bd05760405162461bcd60e51b815260206004820152601860248201527f457863656564732075736572732066726565206d696e7473000000000000000060448201526064016107a7565b80610bde6002546001540390565b610be8919061191a565b6103e810156109855760405162461bcd60e51b815260206004820152600e60248201526d233932b29036b4b73a1037bb32b960911b60448201526064016107a7565b6000546001600160a01b03163314610c545760405162461bcd60e51b81526004016107a7906118e5565b60025460015403811015610caa5760405162461bcd60e51b815260206004820152601860248201527f4c657373207468616e2063757272656e7420737570706c79000000000000000060448201526064016107a7565b6009548110610cf35760405162461bcd60e51b815260206004820152601560248201527443616e277420696e63726561736520737570706c7960581b60448201526064016107a7565b600955565b6060600480546105eb9061197d565b6001600160a01b038216331415610d315760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610da8848484610fbe565b6001600160a01b0383163b15610de157610dc484848484611244565b610de1576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000546001600160a01b03163314610e115760405162461bcd60e51b81526004016107a7906118e5565b81610e1f6002546001540390565b610e29919061191a565b6009541015610e6f5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016107a7565b6107c381836111da565b6060610e8482610f96565b610ea157604051630a14c4b560e41b815260040160405180910390fd5b6000610eab61133c565b9050805160001415610ecc5760405180602001604052806000815250610ef7565b80610ed68461134b565b604051602001610ee7929190611856565b6040516020818303038152906040525b9392505050565b6000546001600160a01b03163314610f285760405162461bcd60e51b81526004016107a7906118e5565b6001600160a01b038116610f8d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107a7565b61098f816111f4565b6000600154821080156105d6575050600090815260056020526040902054600160e01b161590565b6000610fc982611179565b9050836001600160a01b0316816001600160a01b031614610ffc5760405162a1148160e81b815260040160405180910390fd5b6000828152600760205260408120546001600160a01b039081169190861633148061102c575061102c8633610527565b8061103f57506001600160a01b03821633145b90508061105f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661108657604051633a954ecd60e21b815260040160405180910390fd5b6001600160a01b038216156110a5576000848152600760205260408120555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040902055600160e11b8316611130576001840160008181526005602052604090205461112e57600154811461112e5760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6000816001548110156111c157600081815260056020526040902054600160e01b81166111bf575b80610ef75750600019016000818152600560205260409020546111a1565b505b604051636f96cda160e11b815260040160405180910390fd5b6107c382826040518060200160405280600081525061139a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611279903390899088908890600401611895565b602060405180830381600087803b15801561129357600080fd5b505af19250505080156112c3575060408051601f3d908101601f191682019092526112c09181019061178e565b60015b61131e573d8080156112f1576040519150601f19603f3d011682016040523d82523d6000602084013e6112f6565b606091505b508051611316576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b80546105eb9061197d565b604080516080810191829052607f0190826030600a8206018353600a90045b801561138857600183039250600a81066030018353600a900461136a565b50819003601f19909101908152919050565b6113a48383611407565b6001600160a01b0383163b1561075d576001548281035b6113ce6000868380600101945086611244565b6113eb576040516368d2bf6b60e11b815260040160405180910390fd5b8181106113bb57816001541461140057600080fd5b5050505050565b6001546001600160a01b03831661143057604051622e076360e81b815260040160405180910390fd5b8161144e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106114985750500160015550565b8280546114f09061197d565b90600052602060002090601f0160209004810192826115125760008555611558565b82601f1061152b57805160ff1916838001178555611558565b82800160010185558215611558579182015b8281111561155857825182559160200191906001019061153d565b50611564929150611568565b5090565b5b808211156115645760008155600101611569565b600067ffffffffffffffff80841115611598576115986119ce565b604051601f8501601f19908116603f011681019082821181831017156115c0576115c06119ce565b816040528093508581528686860111156115d957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461160a57600080fd5b919050565b600060208284031215611620578081fd5b610ef7826115f3565b6000806040838503121561163b578081fd5b611644836115f3565b9150611652602084016115f3565b90509250929050565b60008060006060848603121561166f578081fd5b611678846115f3565b9250611686602085016115f3565b9150604084013590509250925092565b600080600080608085870312156116ab578081fd5b6116b4856115f3565b93506116c2602086016115f3565b925060408501359150606085013567ffffffffffffffff8111156116e4578182fd5b8501601f810187136116f4578182fd5b6117038782356020840161157d565b91505092959194509250565b60008060408385031215611721578182fd5b61172a836115f3565b91506020830135801515811461173e578182fd5b809150509250929050565b6000806040838503121561175b578182fd5b611764836115f3565b946020939093013593505050565b600060208284031215611783578081fd5b8135610ef7816119e4565b60006020828403121561179f578081fd5b8151610ef7816119e4565b6000602082840312156117bb578081fd5b813567ffffffffffffffff8111156117d1578182fd5b8201601f810184136117e1578182fd5b6113348482356020840161157d565b600060208284031215611801578081fd5b5035919050565b6000806040838503121561181a578182fd5b82359150611652602084016115f3565b60008151808452611842816020860160208601611951565b601f01601f19169290920160200192915050565b60008351611868818460208801611951565b83519083019061187c818360208801611951565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906118c89083018461182a565b9695505050505050565b602081526000610ef7602083018461182a565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561192d5761192d6119b8565b500190565b600081600019048311821515161561194c5761194c6119b8565b500290565b60005b8381101561196c578181015183820152602001611954565b83811115610de15750506000910152565b600181811c9082168061199157607f821691505b602082108114156119b257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461098f57600080fdfea2646970667358221220c006586a31caee21ea1688e4b3a3a5838b33f24694e13d3a3c90ca843b84bb8a64736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696176366165637470333473636933666762347573626134697a76676234786b756971696f32376774376e65686d7272786d34786d2f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _inputURI (string): ipfs://bafybeiav6aectp34sci3fgb4usba4izvgb4xkuiqio27gt7nehmrrxm4xm/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [2] : 697066733a2f2f62616679626569617636616563747033347363693366676234
Arg [3] : 7573626134697a76676234786b756971696f32376774376e65686d7272786d34
Arg [4] : 786d2f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

47493:2302:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14688:665;;;;;;;;;;-1:-1:-1;14688:665:0;;;;;:::i;:::-;;:::i;:::-;;;6442:14:1;;6435:22;6417:41;;6405:2;6390:18;14688:665:0;;;;;;;;20621:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22478:245::-;;;;;;;;;;-1:-1:-1;22478:245:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5740:32:1;;;5722:51;;5710:2;5695:18;22478:245:0;5677:102:1;22026:386:0;;;;;;;;;;-1:-1:-1;22026:386:0;;;;;:::i;:::-;;:::i;:::-;;13742:315;;;;;;;;;;-1:-1:-1;14008:12:0;;13992:13;;:28;13742:315;;;11071:25:1;;;11059:2;11044:18;13742:315:0;11026:76:1;23487:170:0;;;;;;;;;;-1:-1:-1;23487:170:0;;;;;:::i;:::-;;:::i;47760:22::-;;;;;;;;;;-1:-1:-1;47760:22:0;;;;;;;;23728:185;;;;;;;;;;-1:-1:-1;23728:185:0;;;;;:::i;:::-;;:::i;47583:35::-;;;;;;;;;;;;47617:1;47583:35;;49121:106;;;;;;;;;;-1:-1:-1;49121:106:0;;;;;:::i;:::-;;:::i;48786:87::-;;;;;;;;;;;;;:::i;20410:144::-;;;;;;;;;;-1:-1:-1;20410:144:0;;;;;:::i;:::-;;:::i;49461:331::-;;;;;;:::i;:::-;;:::i;49235:191::-;;;;;;;;;;-1:-1:-1;49235:191:0;;;;;:::i;:::-;;:::i;15417:224::-;;;;;;;;;;-1:-1:-1;15417:224:0;;;;;:::i;:::-;;:::i;46612:103::-;;;;;;;;;;;;;:::i;48231:321::-;;;;;;;;;;-1:-1:-1;48231:321:0;;;;;:::i;:::-;;:::i;48881:232::-;;;;;;;;;;-1:-1:-1;48881:232:0;;;;;:::i;:::-;;:::i;47625:40::-;;;;;;;;;;;;47661:4;47625:40;;45961:87;;;;;;;;;;-1:-1:-1;46007:7:0;46034:6;-1:-1:-1;;;;;46034:6:0;45961:87;;20790:104;;;;;;;;;;;;;:::i;47672:43::-;;;;;;;;;;;;47704:11;47672:43;;22795:340;;;;;;;;;;-1:-1:-1;22795:340:0;;;;;:::i;:::-;;:::i;23984:396::-;;;;;;;;;;-1:-1:-1;23984:396:0;;;;;:::i;:::-;;:::i;48585:193::-;;;;;;;;;;-1:-1:-1;48585:193:0;;;;;:::i;:::-;;:::i;20965:424::-;;;;;;;;;;-1:-1:-1;20965:424:0;;;;;:::i;:::-;;:::i;47722:31::-;;;;;;;;;;;;;;;;23206:214;;;;;;;;;;-1:-1:-1;23206:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;23377:25:0;;;23348:4;23377:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23206:214;46870:238;;;;;;;;;;-1:-1:-1;46870:238:0;;;;;:::i;:::-;;:::i;47540:36::-;;;;;;;;;;;;47575:1;47540:36;;14688:665;14818:4;-1:-1:-1;;;;;;;;;15123:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;15200:25:0;;;15123:102;:179;;;-1:-1:-1;;;;;;;;;;15277:25:0;;;15123:179;15103:199;14688:665;-1:-1:-1;;14688:665:0:o;20621:100::-;20675:13;20708:5;20701:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20621:100;:::o;22478:245::-;22582:7;22612:16;22620:7;22612;:16::i;:::-;22607:64;;22637:34;;-1:-1:-1;;;22637:34:0;;;;;;;;;;;22607:64;-1:-1:-1;22691:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22691:24:0;;22478:245::o;22026:386::-;22099:13;22115:16;22123:7;22115;:16::i;:::-;22099:32;-1:-1:-1;42029:10:0;-1:-1:-1;;;;;22148:28:0;;;22144:175;;22196:44;22213:5;42029:10;23206:214;:::i;22196:44::-;22191:128;;22268:35;;-1:-1:-1;;;22268:35:0;;;;;;;;;;;22191:128;22331:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;22331:29:0;-1:-1:-1;;;;;22331:29:0;;;;;;;;;22376:28;;22331:24;;22376:28;;;;;;;22026:386;;;:::o;23487:170::-;23621:28;23631:4;23637:2;23641:7;23621:9;:28::i;:::-;23487:170;;;:::o;23728:185::-;23866:39;23883:4;23889:2;23893:7;23866:39;;;;;;;;;;;;:16;:39::i;49121:106::-;46007:7;46034:6;-1:-1:-1;;;;;46034:6:0;42029:10;46181:23;46173:68;;;;-1:-1:-1;;;46173:68:0;;;;;;;:::i;:::-;;;;;;;;;49194:25;;::::1;::::0;:13:::1;::::0;:25:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49121:106:::0;:::o;48786:87::-;46007:7;46034:6;-1:-1:-1;;;;;46034:6:0;42029:10;46181:23;46173:68;;;;-1:-1:-1;;;46173:68:0;;;;;;;:::i;:::-;48855:10:::1;::::0;;-1:-1:-1;;48841:24:0;::::1;48855:10;::::0;;::::1;48854:11;48841:24;::::0;;48786:87::o;20410:144::-;20474:7;20517:27;20536:7;20517:18;:27::i;49461:331::-;47994:9;48007:10;47994:23;47986:48;;;;-1:-1:-1;;;47986:48:0;;10094:2:1;47986:48:0;;;10076:21:1;10133:2;10113:18;;;10106:30;-1:-1:-1;;;10152:18:1;;;10145:42;10204:18;;47986:48:0;10066:162:1;47986:48:0;48053:10;;;;48045:36;;;;-1:-1:-1;;;48045:36:0;;10435:2:1;48045:36:0;;;10417:21:1;10474:2;10454:18;;;10447:30;-1:-1:-1;;;10493:18:1;;;10486:43;10546:18;;48045:36:0;10407:163:1;48045:36:0;47575:1:::1;49549:9;:21;;49541:52;;;::::0;-1:-1:-1;;;49541:52:0;;7655:2:1;49541:52:0::1;::::0;::::1;7637:21:1::0;7694:2;7674:18;;;7667:30;-1:-1:-1;;;7713:18:1;;;7706:48;7771:18;;49541:52:0::1;7627:168:1::0;49541:52:0::1;49625:17;49633:9:::0;47704:11:::1;49625:17;:::i;:::-;49612:9;:30;;49604:57;;;::::0;-1:-1:-1;;;49604:57:0;;8002:2:1;49604:57:0::1;::::0;::::1;7984:21:1::0;8041:2;8021:18;;;8014:30;-1:-1:-1;;;8060:18:1;;;8053:44;8114:18;;49604:57:0::1;7974:164:1::0;49604:57:0::1;49709:9;49693:13;14008:12:::0;;13992:13;;:28;;13742:315;49693:13:::1;:25;;;;:::i;:::-;49680:9;;:38;;49672:69;;;::::0;-1:-1:-1;;;49672:69:0;;9033:2:1;49672:69:0::1;::::0;::::1;9015:21:1::0;9072:2;9052:18;;;9045:30;-1:-1:-1;;;9091:18:1;;;9084:48;9149:18;;49672:69:0::1;9005:168:1::0;49672:69:0::1;49752:32;49762:10;49774:9;49752;:32::i;:::-;49461:331:::0;:::o;49235:191::-;46007:7;46034:6;-1:-1:-1;;;;;46034:6:0;42029:10;46181:23;46173:68;;;;-1:-1:-1;;;46173:68:0;;;;;;;:::i;:::-;49302:12:::1;49328:3;-1:-1:-1::0;;;;;49320:17:0::1;49345:21;49320:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49301:70;;;49390:7;49382:36;;;::::0;-1:-1:-1;;;49382:36:0;;8688:2:1;49382:36:0::1;::::0;::::1;8670:21:1::0;8727:2;8707:18;;;8700:30;-1:-1:-1;;;8746:18:1;;;8739:46;8802:18;;49382:36:0::1;8660:166:1::0;15417:224:0;15481:7;-1:-1:-1;;;;;15505:19:0;;15501:60;;15533:28;;-1:-1:-1;;;15533:28:0;;;;;;;;;;;15501:60;-1:-1:-1;;;;;;15579:25:0;;;;;:18;:25;;;;;;10089:13;15579:54;;15417:224::o;46612:103::-;46007:7;46034:6;-1:-1:-1;;;;;46034:6:0;42029:10;46181:23;46173:68;;;;-1:-1:-1;;;46173:68:0;;;;;;;:::i;:::-;46677:30:::1;46704:1;46677:18;:30::i;:::-;46612:103::o:0;48231:321::-;47994:9;48007:10;47994:23;47986:48;;;;-1:-1:-1;;;47986:48:0;;10094:2:1;47986:48:0;;;10076:21:1;10133:2;10113:18;;;10106:30;-1:-1:-1;;;10152:18:1;;;10145:42;10204:18;;47986:48:0;10066:162:1;47986:48:0;48053:10;;;;48045:36;;;;-1:-1:-1;;;48045:36:0;;10435:2:1;48045:36:0;;;10417:21:1;10474:2;10454:18;;;10447:30;-1:-1:-1;;;10493:18:1;;;10486:43;10546:18;;48045:36:0;10407:163:1;48045:36:0;48339:10:::1;15784:7:::0;15825:25;;;:18;:25;;10226:2;15825:25;;;;;47617:1:::1;::::0;48325:37:::1;::::0;48353:9;;15825:49;10089:13;15824:93;48325:37:::1;:::i;:::-;:48;;48303:122;;;::::0;-1:-1:-1;;;48303:122:0;;9741:2:1;48303:122:0::1;::::0;::::1;9723:21:1::0;9780:2;9760:18;;;9753:30;9819:26;9799:18;;;9792:54;9863:18;;48303:122:0::1;9713:174:1::0;48303:122:0::1;48473:9;48457:13;14008:12:::0;;13992:13;;:28;;13742:315;48457:13:::1;:25;;;;:::i;:::-;47661:4;48444:38;;48436:65;;;::::0;-1:-1:-1;;;48436:65:0;;8345:2:1;48436:65:0::1;::::0;::::1;8327:21:1::0;8384:2;8364:18;;;8357:30;-1:-1:-1;;;8403:18:1;;;8396:44;8457:18;;48436:65:0::1;8317:164:1::0;48881:232:0;46007:7;46034:6;-1:-1:-1;;;;;46034:6:0;42029:10;46181:23;46173:68;;;;-1:-1:-1;;;46173:68:0;;;;;;;:::i;:::-;14008:12;;13992:13;;:28;48958:7:::1;:24;;48950:61;;;::::0;-1:-1:-1;;;48950:61:0;;6895:2:1;48950:61:0::1;::::0;::::1;6877:21:1::0;6934:2;6914:18;;;6907:30;6973:26;6953:18;;;6946:54;7017:18;;48950:61:0::1;6867:174:1::0;48950:61:0::1;49040:9;;49030:7;:19;49022:53;;;::::0;-1:-1:-1;;;49022:53:0;;10777:2:1;49022:53:0::1;::::0;::::1;10759:21:1::0;10816:2;10796:18;;;10789:30;-1:-1:-1;;;10835:18:1;;;10828:51;10896:18;;49022:53:0::1;10749:171:1::0;49022:53:0::1;49086:9;:19:::0;48881:232::o;20790:104::-;20846:13;20879:7;20872:14;;;;;:::i;22795:340::-;-1:-1:-1;;;;;22926:31:0;;42029:10;22926:31;22922:61;;;22966:17;;-1:-1:-1;;;22966:17:0;;;;;;;;;;;22922:61;42029:10;22996:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;22996:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;22996:60:0;;;;;;;;;;23072:55;;6417:41:1;;;22996:49:0;;42029:10;23072:55;;6390:18:1;23072:55:0;;;;;;;22795:340;;:::o;23984:396::-;24151:28;24161:4;24167:2;24171:7;24151:9;:28::i;:::-;-1:-1:-1;;;;;24194:14:0;;;:19;24190:183;;24233:56;24264:4;24270:2;24274:7;24283:5;24233:30;:56::i;:::-;24228:145;;24317:40;;-1:-1:-1;;;24317:40:0;;;;;;;;;;;24228:145;23984:396;;;;:::o;48585:193::-;46007:7;46034:6;-1:-1:-1;;;;;46034:6:0;42029:10;46181:23;46173:68;;;;-1:-1:-1;;;46173:68:0;;;;;;;:::i;:::-;48702:9:::1;48686:13;14008:12:::0;;13992:13;;:28;;13742:315;48686:13:::1;:25;;;;:::i;:::-;48673:9;;:38;;48665:69;;;::::0;-1:-1:-1;;;48665:69:0;;9033:2:1;48665:69:0::1;::::0;::::1;9015:21:1::0;9072:2;9052:18;;;9045:30;-1:-1:-1;;;9091:18:1;;;9084:48;9149:18;;48665:69:0::1;9005:168:1::0;48665:69:0::1;48745:25;48755:3;48760:9;48745;:25::i;20965:424::-:0;21083:13;21119:16;21127:7;21119;:16::i;:::-;21114:59;;21144:29;;-1:-1:-1;;;21144:29:0;;;;;;;;;;;21114:59;21186:21;21210:10;:8;:10::i;:::-;21186:34;;21257:7;21251:21;21276:1;21251:26;;:130;;;;;;;;;;;;;;;;;21321:7;21330:18;21340:7;21330:9;:18::i;:::-;21304:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;21251:130;21231:150;20965:424;-1:-1:-1;;;20965:424:0:o;46870:238::-;46007:7;46034:6;-1:-1:-1;;;;;46034:6:0;42029:10;46181:23;46173:68;;;;-1:-1:-1;;;46173:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46973:22:0;::::1;46951:110;;;::::0;-1:-1:-1;;;46951:110:0;;7248:2:1;46951:110:0::1;::::0;::::1;7230:21:1::0;7287:2;7267:18;;;7260:30;7326:34;7306:18;;;7299:62;-1:-1:-1;;;7377:18:1;;;7370:36;7423:19;;46951:110:0::1;7220:228:1::0;46951:110:0::1;47072:28;47091:8;47072:18;:28::i;24635:273::-:0;24692:4;24782:13;;24772:7;:23;24729:152;;;;-1:-1:-1;;24833:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;24833:43:0;:48;;24635:273::o;31512:2666::-;31627:27;31657;31676:7;31657:18;:27::i;:::-;31627:57;;31742:4;-1:-1:-1;;;;;31701:45:0;31717:19;-1:-1:-1;;;;;31701:45:0;;31697:99;;31768:28;;-1:-1:-1;;;31768:28:0;;;;;;;;;;;31697:99;31809:23;31835:24;;;:15;:24;;;;;;-1:-1:-1;;;;;31835:24:0;;;;31809:23;31898:27;;42029:10;31898:27;;:87;;-1:-1:-1;31942:43:0;31959:4;42029:10;23206:214;:::i;31942:43::-;31898:142;;;-1:-1:-1;;;;;;32002:38:0;;42029:10;32002:38;31898:142;31872:169;;32059:17;32054:66;;32085:35;;-1:-1:-1;;;32085:35:0;;;;;;;;;;;32054:66;-1:-1:-1;;;;;32135:16:0;;32131:52;;32160:23;;-1:-1:-1;;;32160:23:0;;;;;;;;;;;32131:52;-1:-1:-1;;;;;32309:29:0;;;32305:91;;30992:52;31097:21;;;31047:15;31139:4;31132:35;31206:4;31193:18;;31225:15;32355:29;-1:-1:-1;;;;;32763:24:0;;;;;;;:18;:24;;;;;;32761:26;;-1:-1:-1;;32761:26:0;;;32832:22;;;;;;;;;32830:24;;-1:-1:-1;32830:24:0;;;20295:11;20271:22;20267:40;20219:111;-1:-1:-1;;;20219:111:0;33125:26;;;;:17;:26;;;;;:195;-1:-1:-1;;;33440:46:0;;33436:626;;33544:1;33534:11;;33512:19;33667:30;;;:17;:30;;;;;;33663:384;;33805:13;;33790:11;:28;33786:242;;33952:30;;;;:17;:30;;;;;:52;;;33786:242;33436:626;;34109:7;34105:2;-1:-1:-1;;;;;34090:27:0;34099:4;-1:-1:-1;;;;;34090:27:0;;;;;;;;;;;31512:2666;;;;;;:::o;17120:1161::-;17214:7;17254;17356:13;;17349:4;:20;17345:869;;;17394:14;17411:23;;;:17;:23;;;;;;-1:-1:-1;;;17500:23:0;;17496:699;;18019:113;18026:11;18019:113;;-1:-1:-1;;;18097:6:0;18079:25;;;;:17;:25;;;;;;18019:113;;17496:699;17345:869;;18242:31;;-1:-1:-1;;;18242:31:0;;;;;;;;;;;24992:104;25061:27;25071:2;25075:8;25061:27;;;;;;;;;;;;:9;:27::i;47268:191::-;47342:16;47361:6;;-1:-1:-1;;;;;47378:17:0;;;-1:-1:-1;;;;;;47378:17:0;;;;;;47411:40;;47361:6;;;;;;;47411:40;;47342:16;47411:40;47268:191;;:::o;38003:831::-;38200:171;;-1:-1:-1;;;38200:171:0;;38166:4;;-1:-1:-1;;;;;38200:45:0;;;;;:171;;42029:10;;38302:4;;38325:7;;38351:5;;38200:171;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38200:171:0;;;;;;;;-1:-1:-1;;38200:171:0;;;;;;;;;;;;:::i;:::-;;;38183:644;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38585:13:0;;38581:235;;38631:40;;-1:-1:-1;;;38631:40:0;;;;;;;;;;;38581:235;38774:6;38768:13;38759:6;38755:2;38751:15;38744:38;38183:644;-1:-1:-1;;;;;;38444:81:0;-1:-1:-1;;;38444:81:0;;-1:-1:-1;38183:644:0;38003:831;;;;;;:::o;48109:114::-;48169:13;48202;48195:20;;;;;:::i;42153:1992::-;42654:4;42648:11;;42661:3;42644:21;;42739:17;;;;43435:11;;;43314:5;43567:2;43581;43571:13;;43563:22;43435:11;43550:36;43622:2;43612:13;;43206:697;43641:4;43206:697;;;43832:1;43827:3;43823:11;43816:18;;43883:2;43877:4;43873:13;43869:2;43865:22;43860:3;43852:36;43736:2;43726:13;;43206:697;;;-1:-1:-1;43933:13:0;;;-1:-1:-1;;44048:12:0;;;44108:19;;;44048:12;42281:1857;-1:-1:-1;42281:1857:0:o;25512:872::-;25635:19;25641:2;25645:8;25635:5;:19::i;:::-;-1:-1:-1;;;;;25696:14:0;;;:19;25692:674;;25750:13;;25798:14;;;25831:424;25888:205;25957:1;25990:2;26023:7;;;;;;26061:5;25888:30;:205::i;:::-;25857:358;;26151:40;;-1:-1:-1;;;26151:40:0;;;;;;;;;;;25857:358;26250:3;26242:5;:11;25831:424;;26337:3;26320:13;;:20;26316:34;;26342:8;;;26316:34;25692:674;;25512:872;;;:::o;26657:1690::-;26745:13;;-1:-1:-1;;;;;26773:16:0;;26769:48;;26798:19;;-1:-1:-1;;;26798:19:0;;;;;;;;;;;26769:48;26832:13;26828:44;;26854:18;;-1:-1:-1;;;26854:18:0;;;;;;;;;;;26828:44;-1:-1:-1;;;;;27421:22:0;;;;;;:18;:22;;10226:2;27421:22;;:104;;27493:31;27464:61;;27421:104;;;20295:11;20271:22;20267:40;-1:-1:-1;27876:13:0;;11002:3;27861:56;20264:51;20219:111;27768:31;;;;:17;:31;;;;;:222;27786:12;28065:23;;;28103:99;28130:34;;28155:8;;;;;-1:-1:-1;;;;;28130:34:0;;;28147:1;;28130:34;;28147:1;;28130:34;28197:3;28188:6;:12;28103:99;;-1:-1:-1;;28234:23:0;28218:13;:39;-1:-1:-1;23487:170:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:196::-;887:6;940:2;928:9;919:7;915:23;911:32;908:2;;;961:6;953;946:22;908:2;989:29;1008:9;989:29;:::i;1029:270::-;1097:6;1105;1158:2;1146:9;1137:7;1133:23;1129:32;1126:2;;;1179:6;1171;1164:22;1126:2;1207:29;1226:9;1207:29;:::i;:::-;1197:39;;1255:38;1289:2;1278:9;1274:18;1255:38;:::i;:::-;1245:48;;1116:183;;;;;:::o;1304:338::-;1381:6;1389;1397;1450:2;1438:9;1429:7;1425:23;1421:32;1418:2;;;1471:6;1463;1456:22;1418:2;1499:29;1518:9;1499:29;:::i;:::-;1489:39;;1547:38;1581:2;1570:9;1566:18;1547:38;:::i;:::-;1537:48;;1632:2;1621:9;1617:18;1604:32;1594:42;;1408:234;;;;;:::o;1647:696::-;1742:6;1750;1758;1766;1819:3;1807:9;1798:7;1794:23;1790:33;1787:2;;;1841:6;1833;1826:22;1787:2;1869:29;1888:9;1869:29;:::i;:::-;1859:39;;1917:38;1951:2;1940:9;1936:18;1917:38;:::i;:::-;1907:48;;2002:2;1991:9;1987:18;1974:32;1964:42;;2057:2;2046:9;2042:18;2029:32;2084:18;2076:6;2073:30;2070:2;;;2121:6;2113;2106:22;2070:2;2149:22;;2202:4;2194:13;;2190:27;-1:-1:-1;2180:2:1;;2236:6;2228;2221:22;2180:2;2264:73;2329:7;2324:2;2311:16;2306:2;2302;2298:11;2264:73;:::i;:::-;2254:83;;;1777:566;;;;;;;:::o;2348:367::-;2413:6;2421;2474:2;2462:9;2453:7;2449:23;2445:32;2442:2;;;2495:6;2487;2480:22;2442:2;2523:29;2542:9;2523:29;:::i;:::-;2513:39;;2602:2;2591:9;2587:18;2574:32;2649:5;2642:13;2635:21;2628:5;2625:32;2615:2;;2676:6;2668;2661:22;2615:2;2704:5;2694:15;;;2432:283;;;;;:::o;2720:264::-;2788:6;2796;2849:2;2837:9;2828:7;2824:23;2820:32;2817:2;;;2870:6;2862;2855:22;2817:2;2898:29;2917:9;2898:29;:::i;:::-;2888:39;2974:2;2959:18;;;;2946:32;;-1:-1:-1;;;2807:177:1:o;2989:255::-;3047:6;3100:2;3088:9;3079:7;3075:23;3071:32;3068:2;;;3121:6;3113;3106:22;3068:2;3165:9;3152:23;3184:30;3208:5;3184:30;:::i;3249:259::-;3318:6;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:30;3472:5;3448:30;:::i;3513:480::-;3582:6;3635:2;3623:9;3614:7;3610:23;3606:32;3603:2;;;3656:6;3648;3641:22;3603:2;3701:9;3688:23;3734:18;3726:6;3723:30;3720:2;;;3771:6;3763;3756:22;3720:2;3799:22;;3852:4;3844:13;;3840:27;-1:-1:-1;3830:2:1;;3886:6;3878;3871:22;3830:2;3914:73;3979:7;3974:2;3961:16;3956:2;3952;3948:11;3914:73;:::i;3998:190::-;4057:6;4110:2;4098:9;4089:7;4085:23;4081:32;4078:2;;;4131:6;4123;4116:22;4078:2;-1:-1:-1;4159:23:1;;4068:120;-1:-1:-1;4068:120:1:o;4193:264::-;4261:6;4269;4322:2;4310:9;4301:7;4297:23;4293:32;4290:2;;;4343:6;4335;4328:22;4290:2;4384:9;4371:23;4361:33;;4413:38;4447:2;4436:9;4432:18;4413:38;:::i;4462:257::-;4503:3;4541:5;4535:12;4568:6;4563:3;4556:19;4584:63;4640:6;4633:4;4628:3;4624:14;4617:4;4610:5;4606:16;4584:63;:::i;:::-;4701:2;4680:15;-1:-1:-1;;4676:29:1;4667:39;;;;4708:4;4663:50;;4511:208;-1:-1:-1;;4511:208:1:o;4724:637::-;5004:3;5042:6;5036:13;5058:53;5104:6;5099:3;5092:4;5084:6;5080:17;5058:53;:::i;:::-;5174:13;;5133:16;;;;5196:57;5174:13;5133:16;5230:4;5218:17;;5196:57;:::i;:::-;-1:-1:-1;;;5275:20:1;;5304:22;;;5353:1;5342:13;;5012:349;-1:-1:-1;;;;5012:349:1:o;5784:488::-;-1:-1:-1;;;;;6053:15:1;;;6035:34;;6105:15;;6100:2;6085:18;;6078:43;6152:2;6137:18;;6130:34;;;6200:3;6195:2;6180:18;;6173:31;;;5978:4;;6221:45;;6246:19;;6238:6;6221:45;:::i;:::-;6213:53;5987:285;-1:-1:-1;;;;;;5987:285:1:o;6469:219::-;6618:2;6607:9;6600:21;6581:4;6638:44;6678:2;6667:9;6663:18;6655:6;6638:44;:::i;9178:356::-;9380:2;9362:21;;;9399:18;;;9392:30;9458:34;9453:2;9438:18;;9431:62;9525:2;9510:18;;9352:182::o;11107:128::-;11147:3;11178:1;11174:6;11171:1;11168:13;11165:2;;;11184:18;;:::i;:::-;-1:-1:-1;11220:9:1;;11155:80::o;11240:168::-;11280:7;11346:1;11342;11338:6;11334:14;11331:1;11328:21;11323:1;11316:9;11309:17;11305:45;11302:2;;;11353:18;;:::i;:::-;-1:-1:-1;11393:9:1;;11292:116::o;11413:258::-;11485:1;11495:113;11509:6;11506:1;11503:13;11495:113;;;11585:11;;;11579:18;11566:11;;;11559:39;11531:2;11524:10;11495:113;;;11626:6;11623:1;11620:13;11617:2;;;-1:-1:-1;;11661:1:1;11643:16;;11636:27;11466:205::o;11676:380::-;11755:1;11751:12;;;;11798;;;11819:2;;11873:4;11865:6;11861:17;11851:27;;11819:2;11926;11918:6;11915:14;11895:18;11892:38;11889:2;;;11972:10;11967:3;11963:20;11960:1;11953:31;12007:4;12004:1;11997:15;12035:4;12032:1;12025:15;11889:2;;11731:325;;;:::o;12061:127::-;12122:10;12117:3;12113:20;12110:1;12103:31;12153:4;12150:1;12143:15;12177:4;12174:1;12167:15;12193:127;12254:10;12249:3;12245:20;12242:1;12235:31;12285:4;12282:1;12275:15;12309:4;12306:1;12299:15;12325:131;-1:-1:-1;;;;;;12399:32:1;;12389:43;;12379:2;;12446:1;12443;12436:12

Swarm Source

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