ETH Price: $3,330.11 (-4.39%)
Gas: 3 Gwei

Token

InnerDegens (INRDGNS)
 

Overview

Max Total Supply

184 INRDGNS

Holders

168

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 INRDGNS
0x857d0d9c5562c84f17b25657e113f5acf9e73ef2
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:
InnerDegens

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-12
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

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

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



pragma solidity ^0.8.0;

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

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

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



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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: erc721a/contracts/IERC721A.sol


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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

    // The 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`
    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 auxillary 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 auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        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;
    }

    /**
     * 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 See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

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

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

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

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @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 = address(uint160(_packedOwnershipOf(tokenId)));
        if (to == owner) revert ApprovalToCurrentOwner();

        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.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

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

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[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] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

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

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

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

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

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

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

// File: contracts/INDGN_Flat.sol



pragma solidity >=0.8.9 <0.9.0;






contract InnerDegens is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint256;

  string public uriPrefix = '';
  string public uriSuffix = '.json';
  string public hiddenMetadataUri;
  
  uint256 public cost;
  uint256 public maxSupply;
  uint256 public maxMintAmountPerTx;

  bool public paused = true;
  bool public revealed = false;

  mapping(address => bool) public addressMinted;

  constructor(
    string memory _tokenName,
    string memory _tokenSymbol,
    uint256 _cost,
    uint256 _maxSupply,
    uint256 _maxMintAmountPerTx,
    string memory _hiddenMetadataUri
  ) ERC721A(_tokenName, _tokenSymbol) {
    setCost(_cost);
    maxSupply = _maxSupply;
    setMaxMintAmountPerTx(_maxMintAmountPerTx);
    setHiddenMetadataUri(_hiddenMetadataUri);
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
    require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    _;
  }

  modifier mintPriceCompliance(uint256 _mintAmount) {
    if (totalSupply() >= 5000) {
        require(msg.value >= cost * _mintAmount, 'Insufficient funds!');
    }
    _;
  }

  function mint(uint256 _mintAmount) public payable mintPriceCompliance(_mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
    require(totalSupply() + _mintAmount <= 9000, 'Max supply exceeded!');
    require(!paused, 'The contract is paused!');
    require(!addressMinted[msg.sender], "The address already minted!");
    addressMinted[msg.sender] = true;

    _safeMint(_msgSender(), _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }

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

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

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

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

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

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

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

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

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

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function withdraw() public onlyOwner nonReentrant {
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"uint256","name":"_cost","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"},{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600a916200025c565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600b916200025c565b506010805461ffff191660011790553480156200006657600080fd5b5060405162002407380380620024078339810160408190526200008991620003cf565b855186908690620000a29060029060208501906200025c565b508051620000b89060039060208401906200025c565b5050600160005550620000cb3362000102565b6001600955620000db8462000154565b600e839055620000eb82620001a8565b620000f681620001f8565b505050505050620004b8565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001a35760405162461bcd60e51b81526020600482018190526024820152600080516020620023e783398151915260448201526064015b60405180910390fd5b600d55565b6008546001600160a01b03163314620001f35760405162461bcd60e51b81526020600482018190526024820152600080516020620023e783398151915260448201526064016200019a565b600f55565b6008546001600160a01b03163314620002435760405162461bcd60e51b81526020600482018190526024820152600080516020620023e783398151915260448201526064016200019a565b80516200025890600c9060208401906200025c565b5050565b8280546200026a906200047c565b90600052602060002090601f0160209004810192826200028e5760008555620002d9565b82601f10620002a957805160ff1916838001178555620002d9565b82800160010185558215620002d9579182015b82811115620002d9578251825591602001919060010190620002bc565b50620002e7929150620002eb565b5090565b5b80821115620002e75760008155600101620002ec565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200032a57600080fd5b81516001600160401b038082111562000347576200034762000302565b604051601f8301601f19908116603f0116810190828211818310171562000372576200037262000302565b816040528381526020925086838588010111156200038f57600080fd5b600091505b83821015620003b3578582018301518183018401529082019062000394565b83821115620003c55760008385830101525b9695505050505050565b60008060008060008060c08789031215620003e957600080fd5b86516001600160401b03808211156200040157600080fd5b6200040f8a838b0162000318565b975060208901519150808211156200042657600080fd5b620004348a838b0162000318565b965060408901519550606089015194506080890151935060a08901519150808211156200046057600080fd5b506200046f89828a0162000318565b9150509295509295509295565b600181811c908216806200049157607f821691505b602082108103620004b257634e487b7160e01b600052602260045260246000fd5b50919050565b611f1f80620004c86000396000f3fe60806040526004361061020f5760003560e01c806370a0823111610118578063b071401b116100a0578063e0a808531161006f578063e0a80853146105bb578063e985e9c5146105db578063efbd73f414610624578063f2fde38b14610644578063fa30297e1461066457600080fd5b8063b071401b14610545578063b88d4fde14610565578063c87b56dd14610585578063d5abeb01146105a557600080fd5b806394354fd0116100e757806394354fd0146104d257806395d89b41146104e8578063a0712d68146104fd578063a22cb46514610510578063a45ba8e71461053057600080fd5b806370a082311461045f578063715018a61461047f5780637ec4a659146104945780638da5cb5b146104b457600080fd5b80633ccfd60b1161019b578063518302271161016a57806351830227146103dc5780635503a0e8146103fb5780635c975abb1461041057806362b99ad41461042a5780636352211e1461043f57600080fd5b80633ccfd60b1461036757806342842e0e1461037c57806344a0d68a1461039c5780634fdd43cb146103bc57600080fd5b806313faede6116101e257806313faede6146102c557806316ba10e0146102e957806316c38b3c1461030957806318160ddd1461032957806323b872dd1461034757600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611952565b610694565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106e6565b60405161024091906119c7565b34801561027757600080fd5b5061028b6102863660046119da565b610778565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004611a0f565b6107bc565b005b3480156102d157600080fd5b506102db600d5481565b604051908152602001610240565b3480156102f557600080fd5b506102c3610304366004611ac5565b61088e565b34801561031557600080fd5b506102c3610324366004611b1e565b6108d8565b34801561033557600080fd5b506102db600154600054036000190190565b34801561035357600080fd5b506102c3610362366004611b39565b610915565b34801561037357600080fd5b506102c3610925565b34801561038857600080fd5b506102c3610397366004611b39565b610a1f565b3480156103a857600080fd5b506102c36103b73660046119da565b610a3a565b3480156103c857600080fd5b506102c36103d7366004611ac5565b610a69565b3480156103e857600080fd5b5060105461023490610100900460ff1681565b34801561040757600080fd5b5061025e610aa6565b34801561041c57600080fd5b506010546102349060ff1681565b34801561043657600080fd5b5061025e610b34565b34801561044b57600080fd5b5061028b61045a3660046119da565b610b41565b34801561046b57600080fd5b506102db61047a366004611b75565b610b4c565b34801561048b57600080fd5b506102c3610b9b565b3480156104a057600080fd5b506102c36104af366004611ac5565b610bd1565b3480156104c057600080fd5b506008546001600160a01b031661028b565b3480156104de57600080fd5b506102db600f5481565b3480156104f457600080fd5b5061025e610c0e565b6102c361050b3660046119da565b610c1d565b34801561051c57600080fd5b506102c361052b366004611b90565b610e20565b34801561053c57600080fd5b5061025e610eb5565b34801561055157600080fd5b506102c36105603660046119da565b610ec2565b34801561057157600080fd5b506102c3610580366004611bc3565b610ef1565b34801561059157600080fd5b5061025e6105a03660046119da565b610f3b565b3480156105b157600080fd5b506102db600e5481565b3480156105c757600080fd5b506102c36105d6366004611b1e565b6110af565b3480156105e757600080fd5b506102346105f6366004611c3f565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561063057600080fd5b506102c361063f366004611c69565b6110f3565b34801561065057600080fd5b506102c361065f366004611b75565b6111e1565b34801561067057600080fd5b5061023461067f366004611b75565b60116020526000908152604090205460ff1681565b60006301ffc9a760e01b6001600160e01b0319831614806106c557506380ac58cd60e01b6001600160e01b03198316145b806106e05750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546106f590611c8c565b80601f016020809104026020016040519081016040528092919081815260200182805461072190611c8c565b801561076e5780601f106107435761010080835404028352916020019161076e565b820191906000526020600020905b81548152906001019060200180831161075157829003601f168201915b5050505050905090565b60006107838261127c565b6107a0576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107c7826112b1565b9050806001600160a01b0316836001600160a01b0316036107fb5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146108325761081581336105f6565b610832576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b031633146108c15760405162461bcd60e51b81526004016108b890611cc6565b60405180910390fd5b80516108d490600b9060208401906118a3565b5050565b6008546001600160a01b031633146109025760405162461bcd60e51b81526004016108b890611cc6565b6010805460ff1916911515919091179055565b610920838383611320565b505050565b6008546001600160a01b0316331461094f5760405162461bcd60e51b81526004016108b890611cc6565b6002600954036109a15760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108b8565b600260095560006109ba6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610a04576040519150601f19603f3d011682016040523d82523d6000602084013e610a09565b606091505b5050905080610a1757600080fd5b506001600955565b61092083838360405180602001604052806000815250610ef1565b6008546001600160a01b03163314610a645760405162461bcd60e51b81526004016108b890611cc6565b600d55565b6008546001600160a01b03163314610a935760405162461bcd60e51b81526004016108b890611cc6565b80516108d490600c9060208401906118a3565b600b8054610ab390611c8c565b80601f0160208091040260200160405190810160405280929190818152602001828054610adf90611c8c565b8015610b2c5780601f10610b0157610100808354040283529160200191610b2c565b820191906000526020600020905b815481529060010190602001808311610b0f57829003601f168201915b505050505081565b600a8054610ab390611c8c565b60006106e0826112b1565b60006001600160a01b038216610b75576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610bc55760405162461bcd60e51b81526004016108b890611cc6565b610bcf60006114c7565b565b6008546001600160a01b03163314610bfb5760405162461bcd60e51b81526004016108b890611cc6565b80516108d490600a9060208401906118a3565b6060600380546106f590611c8c565b80611388610c32600154600054036000190190565b10610c8a5780600d54610c459190611d11565b341015610c8a5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016108b8565b600082118015610c9c5750600f548211155b610cdf5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016108b8565b61232882610cf4600154600054036000190190565b610cfe9190611d30565b1115610d435760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016108b8565b60105460ff1615610d965760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016108b8565b3360009081526011602052604090205460ff1615610df65760405162461bcd60e51b815260206004820152601b60248201527f546865206164647265737320616c7265616479206d696e74656421000000000060448201526064016108b8565b336000908152601160205260409020805460ff191660011790556108d4610e1a3390565b83611519565b336001600160a01b03831603610e495760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c8054610ab390611c8c565b6008546001600160a01b03163314610eec5760405162461bcd60e51b81526004016108b890611cc6565b600f55565b610efc848484611320565b6001600160a01b0383163b15610f3557610f1884848484611533565b610f35576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610f468261127c565b610faa5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108b8565b601054610100900460ff16151560000361105057600c8054610fcb90611c8c565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff790611c8c565b80156110445780601f1061101957610100808354040283529160200191611044565b820191906000526020600020905b81548152906001019060200180831161102757829003601f168201915b50505050509050919050565b600061105a61161f565b9050600081511161107a57604051806020016040528060008152506110a8565b806110848461162e565b600b60405160200161109893929190611d48565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146110d95760405162461bcd60e51b81526004016108b890611cc6565b601080549115156101000261ff0019909216919091179055565b816000811180156111065750600f548111155b6111495760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016108b8565b600e548161115e600154600054036000190190565b6111689190611d30565b11156111ad5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016108b8565b6008546001600160a01b031633146111d75760405162461bcd60e51b81526004016108b890611cc6565b6109208284611519565b6008546001600160a01b0316331461120b5760405162461bcd60e51b81526004016108b890611cc6565b6001600160a01b0381166112705760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b8565b611279816114c7565b50565b600081600111158015611290575060005482105b80156106e0575050600090815260046020526040902054600160e01b161590565b60008180600111611307576000548110156113075760008181526004602052604081205490600160e01b82169003611305575b806000036110a85750600019016000818152600460205260409020546112e4565b505b604051636f96cda160e11b815260040160405180910390fd5b600061132b826112b1565b9050836001600160a01b0316816001600160a01b03161461135e5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061137c575061137c85336105f6565b8061139757503361138c84610778565b6001600160a01b0316145b9050806113b757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166113de57604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b871781179091558316900361147f5760018301600081815260046020526040812054900361147d57600054811461147d5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6108d482826040518060200160405280600081525061172f565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611568903390899088908890600401611e0b565b6020604051808303816000875af19250505080156115a3575060408051601f3d908101601f191682019092526115a091810190611e48565b60015b611601573d8080156115d1576040519150601f19603f3d011682016040523d82523d6000602084013e6115d6565b606091505b5080516000036115f9576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a80546106f590611c8c565b6060816000036116555750506040805180820190915260018152600360fc1b602082015290565b8160005b811561167f578061166981611e65565b91506116789050600a83611e94565b9150611659565b60008167ffffffffffffffff81111561169a5761169a611a39565b6040519080825280601f01601f1916602001820160405280156116c4576020820181803683370190505b5090505b8415611617576116d9600183611ea8565b91506116e6600a86611ebf565b6116f1906030611d30565b60f81b81838151811061170657611706611ed3565b60200101906001600160f81b031916908160001a905350611728600a86611e94565b94506116c8565b6000546001600160a01b03841661175857604051622e076360e81b815260040160405180910390fd5b826000036117795760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b1561184e575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46118176000878480600101955087611533565b611834576040516368d2bf6b60e11b815260040160405180910390fd5b8082106117cc57826000541461184957600080fd5b611893565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061184f575b506000908155610f359085838684565b8280546118af90611c8c565b90600052602060002090601f0160209004810192826118d15760008555611917565b82601f106118ea57805160ff1916838001178555611917565b82800160010185558215611917579182015b828111156119175782518255916020019190600101906118fc565b50611923929150611927565b5090565b5b808211156119235760008155600101611928565b6001600160e01b03198116811461127957600080fd5b60006020828403121561196457600080fd5b81356110a88161193c565b60005b8381101561198a578181015183820152602001611972565b83811115610f355750506000910152565b600081518084526119b381602086016020860161196f565b601f01601f19169290920160200192915050565b6020815260006110a8602083018461199b565b6000602082840312156119ec57600080fd5b5035919050565b80356001600160a01b0381168114611a0a57600080fd5b919050565b60008060408385031215611a2257600080fd5b611a2b836119f3565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611a6a57611a6a611a39565b604051601f8501601f19908116603f01168101908282118183101715611a9257611a92611a39565b81604052809350858152868686011115611aab57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611ad757600080fd5b813567ffffffffffffffff811115611aee57600080fd5b8201601f81018413611aff57600080fd5b61161784823560208401611a4f565b80358015158114611a0a57600080fd5b600060208284031215611b3057600080fd5b6110a882611b0e565b600080600060608486031215611b4e57600080fd5b611b57846119f3565b9250611b65602085016119f3565b9150604084013590509250925092565b600060208284031215611b8757600080fd5b6110a8826119f3565b60008060408385031215611ba357600080fd5b611bac836119f3565b9150611bba60208401611b0e565b90509250929050565b60008060008060808587031215611bd957600080fd5b611be2856119f3565b9350611bf0602086016119f3565b925060408501359150606085013567ffffffffffffffff811115611c1357600080fd5b8501601f81018713611c2457600080fd5b611c3387823560208401611a4f565b91505092959194509250565b60008060408385031215611c5257600080fd5b611c5b836119f3565b9150611bba602084016119f3565b60008060408385031215611c7c57600080fd5b82359150611bba602084016119f3565b600181811c90821680611ca057607f821691505b602082108103611cc057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611d2b57611d2b611cfb565b500290565b60008219821115611d4357611d43611cfb565b500190565b600084516020611d5b8285838a0161196f565b855191840191611d6e8184848a0161196f565b8554920191600090600181811c9080831680611d8b57607f831692505b8583108103611da857634e487b7160e01b85526022600452602485fd5b808015611dbc5760018114611dcd57611dfa565b60ff19851688528388019550611dfa565b60008b81526020902060005b85811015611df25781548a820152908401908801611dd9565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e3e9083018461199b565b9695505050505050565b600060208284031215611e5a57600080fd5b81516110a88161193c565b600060018201611e7757611e77611cfb565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611ea357611ea3611e7e565b500490565b600082821015611eba57611eba611cfb565b500390565b600082611ece57611ece611e7e565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212203d8f019c3d18ef6f4bbdb7894373c5df94015747c187bea525303b172c1d7e2564736f6c634300080e00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000470de4df820000000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000b496e6e6572446567656e730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007494e5244474e5300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002868747470733a2f2f696e6e6572646567656e732e7774662f4d6574612f72657665616c2e6a736f6e000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c806370a0823111610118578063b071401b116100a0578063e0a808531161006f578063e0a80853146105bb578063e985e9c5146105db578063efbd73f414610624578063f2fde38b14610644578063fa30297e1461066457600080fd5b8063b071401b14610545578063b88d4fde14610565578063c87b56dd14610585578063d5abeb01146105a557600080fd5b806394354fd0116100e757806394354fd0146104d257806395d89b41146104e8578063a0712d68146104fd578063a22cb46514610510578063a45ba8e71461053057600080fd5b806370a082311461045f578063715018a61461047f5780637ec4a659146104945780638da5cb5b146104b457600080fd5b80633ccfd60b1161019b578063518302271161016a57806351830227146103dc5780635503a0e8146103fb5780635c975abb1461041057806362b99ad41461042a5780636352211e1461043f57600080fd5b80633ccfd60b1461036757806342842e0e1461037c57806344a0d68a1461039c5780634fdd43cb146103bc57600080fd5b806313faede6116101e257806313faede6146102c557806316ba10e0146102e957806316c38b3c1461030957806318160ddd1461032957806323b872dd1461034757600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611952565b610694565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106e6565b60405161024091906119c7565b34801561027757600080fd5b5061028b6102863660046119da565b610778565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004611a0f565b6107bc565b005b3480156102d157600080fd5b506102db600d5481565b604051908152602001610240565b3480156102f557600080fd5b506102c3610304366004611ac5565b61088e565b34801561031557600080fd5b506102c3610324366004611b1e565b6108d8565b34801561033557600080fd5b506102db600154600054036000190190565b34801561035357600080fd5b506102c3610362366004611b39565b610915565b34801561037357600080fd5b506102c3610925565b34801561038857600080fd5b506102c3610397366004611b39565b610a1f565b3480156103a857600080fd5b506102c36103b73660046119da565b610a3a565b3480156103c857600080fd5b506102c36103d7366004611ac5565b610a69565b3480156103e857600080fd5b5060105461023490610100900460ff1681565b34801561040757600080fd5b5061025e610aa6565b34801561041c57600080fd5b506010546102349060ff1681565b34801561043657600080fd5b5061025e610b34565b34801561044b57600080fd5b5061028b61045a3660046119da565b610b41565b34801561046b57600080fd5b506102db61047a366004611b75565b610b4c565b34801561048b57600080fd5b506102c3610b9b565b3480156104a057600080fd5b506102c36104af366004611ac5565b610bd1565b3480156104c057600080fd5b506008546001600160a01b031661028b565b3480156104de57600080fd5b506102db600f5481565b3480156104f457600080fd5b5061025e610c0e565b6102c361050b3660046119da565b610c1d565b34801561051c57600080fd5b506102c361052b366004611b90565b610e20565b34801561053c57600080fd5b5061025e610eb5565b34801561055157600080fd5b506102c36105603660046119da565b610ec2565b34801561057157600080fd5b506102c3610580366004611bc3565b610ef1565b34801561059157600080fd5b5061025e6105a03660046119da565b610f3b565b3480156105b157600080fd5b506102db600e5481565b3480156105c757600080fd5b506102c36105d6366004611b1e565b6110af565b3480156105e757600080fd5b506102346105f6366004611c3f565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561063057600080fd5b506102c361063f366004611c69565b6110f3565b34801561065057600080fd5b506102c361065f366004611b75565b6111e1565b34801561067057600080fd5b5061023461067f366004611b75565b60116020526000908152604090205460ff1681565b60006301ffc9a760e01b6001600160e01b0319831614806106c557506380ac58cd60e01b6001600160e01b03198316145b806106e05750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546106f590611c8c565b80601f016020809104026020016040519081016040528092919081815260200182805461072190611c8c565b801561076e5780601f106107435761010080835404028352916020019161076e565b820191906000526020600020905b81548152906001019060200180831161075157829003601f168201915b5050505050905090565b60006107838261127c565b6107a0576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107c7826112b1565b9050806001600160a01b0316836001600160a01b0316036107fb5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146108325761081581336105f6565b610832576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b031633146108c15760405162461bcd60e51b81526004016108b890611cc6565b60405180910390fd5b80516108d490600b9060208401906118a3565b5050565b6008546001600160a01b031633146109025760405162461bcd60e51b81526004016108b890611cc6565b6010805460ff1916911515919091179055565b610920838383611320565b505050565b6008546001600160a01b0316331461094f5760405162461bcd60e51b81526004016108b890611cc6565b6002600954036109a15760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108b8565b600260095560006109ba6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610a04576040519150601f19603f3d011682016040523d82523d6000602084013e610a09565b606091505b5050905080610a1757600080fd5b506001600955565b61092083838360405180602001604052806000815250610ef1565b6008546001600160a01b03163314610a645760405162461bcd60e51b81526004016108b890611cc6565b600d55565b6008546001600160a01b03163314610a935760405162461bcd60e51b81526004016108b890611cc6565b80516108d490600c9060208401906118a3565b600b8054610ab390611c8c565b80601f0160208091040260200160405190810160405280929190818152602001828054610adf90611c8c565b8015610b2c5780601f10610b0157610100808354040283529160200191610b2c565b820191906000526020600020905b815481529060010190602001808311610b0f57829003601f168201915b505050505081565b600a8054610ab390611c8c565b60006106e0826112b1565b60006001600160a01b038216610b75576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610bc55760405162461bcd60e51b81526004016108b890611cc6565b610bcf60006114c7565b565b6008546001600160a01b03163314610bfb5760405162461bcd60e51b81526004016108b890611cc6565b80516108d490600a9060208401906118a3565b6060600380546106f590611c8c565b80611388610c32600154600054036000190190565b10610c8a5780600d54610c459190611d11565b341015610c8a5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016108b8565b600082118015610c9c5750600f548211155b610cdf5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016108b8565b61232882610cf4600154600054036000190190565b610cfe9190611d30565b1115610d435760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016108b8565b60105460ff1615610d965760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016108b8565b3360009081526011602052604090205460ff1615610df65760405162461bcd60e51b815260206004820152601b60248201527f546865206164647265737320616c7265616479206d696e74656421000000000060448201526064016108b8565b336000908152601160205260409020805460ff191660011790556108d4610e1a3390565b83611519565b336001600160a01b03831603610e495760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c8054610ab390611c8c565b6008546001600160a01b03163314610eec5760405162461bcd60e51b81526004016108b890611cc6565b600f55565b610efc848484611320565b6001600160a01b0383163b15610f3557610f1884848484611533565b610f35576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610f468261127c565b610faa5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108b8565b601054610100900460ff16151560000361105057600c8054610fcb90611c8c565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff790611c8c565b80156110445780601f1061101957610100808354040283529160200191611044565b820191906000526020600020905b81548152906001019060200180831161102757829003601f168201915b50505050509050919050565b600061105a61161f565b9050600081511161107a57604051806020016040528060008152506110a8565b806110848461162e565b600b60405160200161109893929190611d48565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146110d95760405162461bcd60e51b81526004016108b890611cc6565b601080549115156101000261ff0019909216919091179055565b816000811180156111065750600f548111155b6111495760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016108b8565b600e548161115e600154600054036000190190565b6111689190611d30565b11156111ad5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016108b8565b6008546001600160a01b031633146111d75760405162461bcd60e51b81526004016108b890611cc6565b6109208284611519565b6008546001600160a01b0316331461120b5760405162461bcd60e51b81526004016108b890611cc6565b6001600160a01b0381166112705760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b8565b611279816114c7565b50565b600081600111158015611290575060005482105b80156106e0575050600090815260046020526040902054600160e01b161590565b60008180600111611307576000548110156113075760008181526004602052604081205490600160e01b82169003611305575b806000036110a85750600019016000818152600460205260409020546112e4565b505b604051636f96cda160e11b815260040160405180910390fd5b600061132b826112b1565b9050836001600160a01b0316816001600160a01b03161461135e5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061137c575061137c85336105f6565b8061139757503361138c84610778565b6001600160a01b0316145b9050806113b757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166113de57604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b871781179091558316900361147f5760018301600081815260046020526040812054900361147d57600054811461147d5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6108d482826040518060200160405280600081525061172f565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611568903390899088908890600401611e0b565b6020604051808303816000875af19250505080156115a3575060408051601f3d908101601f191682019092526115a091810190611e48565b60015b611601573d8080156115d1576040519150601f19603f3d011682016040523d82523d6000602084013e6115d6565b606091505b5080516000036115f9576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a80546106f590611c8c565b6060816000036116555750506040805180820190915260018152600360fc1b602082015290565b8160005b811561167f578061166981611e65565b91506116789050600a83611e94565b9150611659565b60008167ffffffffffffffff81111561169a5761169a611a39565b6040519080825280601f01601f1916602001820160405280156116c4576020820181803683370190505b5090505b8415611617576116d9600183611ea8565b91506116e6600a86611ebf565b6116f1906030611d30565b60f81b81838151811061170657611706611ed3565b60200101906001600160f81b031916908160001a905350611728600a86611e94565b94506116c8565b6000546001600160a01b03841661175857604051622e076360e81b815260040160405180910390fd5b826000036117795760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b1561184e575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46118176000878480600101955087611533565b611834576040516368d2bf6b60e11b815260040160405180910390fd5b8082106117cc57826000541461184957600080fd5b611893565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061184f575b506000908155610f359085838684565b8280546118af90611c8c565b90600052602060002090601f0160209004810192826118d15760008555611917565b82601f106118ea57805160ff1916838001178555611917565b82800160010185558215611917579182015b828111156119175782518255916020019190600101906118fc565b50611923929150611927565b5090565b5b808211156119235760008155600101611928565b6001600160e01b03198116811461127957600080fd5b60006020828403121561196457600080fd5b81356110a88161193c565b60005b8381101561198a578181015183820152602001611972565b83811115610f355750506000910152565b600081518084526119b381602086016020860161196f565b601f01601f19169290920160200192915050565b6020815260006110a8602083018461199b565b6000602082840312156119ec57600080fd5b5035919050565b80356001600160a01b0381168114611a0a57600080fd5b919050565b60008060408385031215611a2257600080fd5b611a2b836119f3565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611a6a57611a6a611a39565b604051601f8501601f19908116603f01168101908282118183101715611a9257611a92611a39565b81604052809350858152868686011115611aab57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611ad757600080fd5b813567ffffffffffffffff811115611aee57600080fd5b8201601f81018413611aff57600080fd5b61161784823560208401611a4f565b80358015158114611a0a57600080fd5b600060208284031215611b3057600080fd5b6110a882611b0e565b600080600060608486031215611b4e57600080fd5b611b57846119f3565b9250611b65602085016119f3565b9150604084013590509250925092565b600060208284031215611b8757600080fd5b6110a8826119f3565b60008060408385031215611ba357600080fd5b611bac836119f3565b9150611bba60208401611b0e565b90509250929050565b60008060008060808587031215611bd957600080fd5b611be2856119f3565b9350611bf0602086016119f3565b925060408501359150606085013567ffffffffffffffff811115611c1357600080fd5b8501601f81018713611c2457600080fd5b611c3387823560208401611a4f565b91505092959194509250565b60008060408385031215611c5257600080fd5b611c5b836119f3565b9150611bba602084016119f3565b60008060408385031215611c7c57600080fd5b82359150611bba602084016119f3565b600181811c90821680611ca057607f821691505b602082108103611cc057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611d2b57611d2b611cfb565b500290565b60008219821115611d4357611d43611cfb565b500190565b600084516020611d5b8285838a0161196f565b855191840191611d6e8184848a0161196f565b8554920191600090600181811c9080831680611d8b57607f831692505b8583108103611da857634e487b7160e01b85526022600452602485fd5b808015611dbc5760018114611dcd57611dfa565b60ff19851688528388019550611dfa565b60008b81526020902060005b85811015611df25781548a820152908401908801611dd9565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e3e9083018461199b565b9695505050505050565b600060208284031215611e5a57600080fd5b81516110a88161193c565b600060018201611e7757611e77611cfb565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611ea357611ea3611e7e565b500490565b600082821015611eba57611eba611cfb565b500390565b600082611ece57611ece611e7e565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212203d8f019c3d18ef6f4bbdb7894373c5df94015747c187bea525303b172c1d7e2564736f6c634300080e0033

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

00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000470de4df820000000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000b496e6e6572446567656e730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007494e5244474e5300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002868747470733a2f2f696e6e6572646567656e732e7774662f4d6574612f72657665616c2e6a736f6e000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): InnerDegens
Arg [1] : _tokenSymbol (string): INRDGNS
Arg [2] : _cost (uint256): 20000000000000000
Arg [3] : _maxSupply (uint256): 10000
Arg [4] : _maxMintAmountPerTx (uint256): 1
Arg [5] : _hiddenMetadataUri (string): https://innerdegens.wtf/Meta/reveal.json

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 00000000000000000000000000000000000000000000000000470de4df820000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [7] : 496e6e6572446567656e73000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [9] : 494e5244474e5300000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000028
Arg [11] : 68747470733a2f2f696e6e6572646567656e732e7774662f4d6574612f726576
Arg [12] : 65616c2e6a736f6e000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

49099:3414:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23739:615;;;;;;;;;;-1:-1:-1;23739:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;23739:615:0;;;;;;;;28752:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30820:204::-;;;;;;;;;;-1:-1:-1;30820:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;30820:204:0;1528:203:1;30280:474:0;;;;;;;;;;-1:-1:-1;30280:474:0;;;;;:::i;:::-;;:::i;:::-;;49307:19;;;;;;;;;;;;;;;;;;;2319:25:1;;;2307:2;2292:18;49307:19:0;2173:177:1;52061:100:0;;;;;;;;;;-1:-1:-1;52061:100:0;;;;;:::i;:::-;;:::i;52167:77::-;;;;;;;;;;-1:-1:-1;52167:77:0;;;;;:::i;:::-;;:::i;22793:315::-;;;;;;;;;;;;51050:1;23059:12;22846:7;23043:13;:28;-1:-1:-1;;23043:46:0;;22793:315;31706:170;;;;;;;;;;-1:-1:-1;31706:170:0;;;;;:::i;:::-;;:::i;52250:150::-;;;;;;;;;;;;;:::i;31947:185::-;;;;;;;;;;-1:-1:-1;31947:185:0;;;;;:::i;:::-;;:::i;51601:74::-;;;;;;;;;;-1:-1:-1;51601:74:0;;;;;:::i;:::-;;:::i;51817:132::-;;;;;;;;;;-1:-1:-1;51817:132:0;;;;;:::i;:::-;;:::i;49430:28::-;;;;;;;;;;-1:-1:-1;49430:28:0;;;;;;;;;;;49229:33;;;;;;;;;;;;;:::i;49400:25::-;;;;;;;;;;-1:-1:-1;49400:25:0;;;;;;;;49196:28;;;;;;;;;;;;;:::i;28541:144::-;;;;;;;;;;-1:-1:-1;28541:144:0;;;;;:::i;:::-;;:::i;24418:224::-;;;;;;;;;;-1:-1:-1;24418:224:0;;;;;:::i;:::-;;:::i;10037:94::-;;;;;;;;;;;;;:::i;51955:100::-;;;;;;;;;;-1:-1:-1;51955:100:0;;;;;:::i;:::-;;:::i;9386:87::-;;;;;;;;;;-1:-1:-1;9459:6:0;;-1:-1:-1;;;;;9459:6:0;9386:87;;49360:33;;;;;;;;;;;;;;;;28921:104;;;;;;;;;;;;;:::i;50330:463::-;;;;;;:::i;:::-;;:::i;31096:308::-;;;;;;;;;;-1:-1:-1;31096:308:0;;;;;:::i;:::-;;:::i;49267:31::-;;;;;;;;;;;;;:::i;51681:130::-;;;;;;;;;;-1:-1:-1;51681:130:0;;;;;:::i;:::-;;:::i;32203:396::-;;;;;;;;;;-1:-1:-1;32203:396:0;;;;;:::i;:::-;;:::i;51063:445::-;;;;;;;;;;-1:-1:-1;51063:445:0;;;;;:::i;:::-;;:::i;49331:24::-;;;;;;;;;;;;;;;;51514:81;;;;;;;;;;-1:-1:-1;51514:81:0;;;;;:::i;:::-;;:::i;31475:164::-;;;;;;;;;;-1:-1:-1;31475:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31596:25:0;;;31572:4;31596:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31475:164;50801:155;;;;;;;;;;-1:-1:-1;50801:155:0;;;;;:::i;:::-;;:::i;10286:192::-;;;;;;;;;;-1:-1:-1;10286:192:0;;;;;:::i;:::-;;:::i;49465:45::-;;;;;;;;;;-1:-1:-1;49465:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;23739:615;23824:4;-1:-1:-1;;;;;;;;;24124:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;24201:25:0;;;24124:102;:179;;;-1:-1:-1;;;;;;;;;;24278:25:0;;;24124:179;24104:199;23739:615;-1:-1:-1;;23739:615:0:o;28752:100::-;28806:13;28839:5;28832:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28752:100;:::o;30820:204::-;30888:7;30913:16;30921:7;30913;:16::i;:::-;30908:64;;30938:34;;-1:-1:-1;;;30938:34:0;;;;;;;;;;;30908:64;-1:-1:-1;30992:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30992:24:0;;30820:204::o;30280:474::-;30353:13;30385:27;30404:7;30385:18;:27::i;:::-;30353:61;;30435:5;-1:-1:-1;;;;;30429:11:0;:2;-1:-1:-1;;;;;30429:11:0;;30425:48;;30449:24;;-1:-1:-1;;;30449:24:0;;;;;;;;;;;30425:48;46923:10;-1:-1:-1;;;;;30490:28:0;;;30486:175;;30538:44;30555:5;46923:10;31475:164;:::i;30538:44::-;30533:128;;30610:35;;-1:-1:-1;;;30610:35:0;;;;;;;;;;;30533:128;30673:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;30673:29:0;-1:-1:-1;;;;;30673:29:0;;;;;;;;;30718:28;;30673:24;;30718:28;;;;;;;30342:412;30280:474;;:::o;52061:100::-;9459:6;;-1:-1:-1;;;;;9459:6:0;46923:10;9606:23;9598:68;;;;-1:-1:-1;;;9598:68:0;;;;;;;:::i;:::-;;;;;;;;;52133:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;52061:100:::0;:::o;52167:77::-;9459:6;;-1:-1:-1;;;;;9459:6:0;46923:10;9606:23;9598:68;;;;-1:-1:-1;;;9598:68:0;;;;;;;:::i;:::-;52223:6:::1;:15:::0;;-1:-1:-1;;52223:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52167:77::o;31706:170::-;31840:28;31850:4;31856:2;31860:7;31840:9;:28::i;:::-;31706:170;;;:::o;52250:150::-;9459:6;;-1:-1:-1;;;;;9459:6:0;46923:10;9606:23;9598:68;;;;-1:-1:-1;;;9598:68:0;;;;;;;:::i;:::-;1847:1:::1;2445:7;;:19:::0;2437:63:::1;;;::::0;-1:-1:-1;;;2437:63:0;;6857:2:1;2437:63:0::1;::::0;::::1;6839:21:1::0;6896:2;6876:18;;;6869:30;6935:33;6915:18;;;6908:61;6986:18;;2437:63:0::1;6655:355:1::0;2437:63:0::1;1847:1;2578:7;:18:::0;52308:7:::2;52329;9459:6:::0;;-1:-1:-1;;;;;9459:6:0;;9386:87;52329:7:::2;-1:-1:-1::0;;;;;52321:21:0::2;52350;52321:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52307:69;;;52391:2;52383:11;;;::::0;::::2;;-1:-1:-1::0;1803:1:0::1;2757:7;:22:::0;52250:150::o;31947:185::-;32085:39;32102:4;32108:2;32112:7;32085:39;;;;;;;;;;;;:16;:39::i;51601:74::-;9459:6;;-1:-1:-1;;;;;9459:6:0;46923:10;9606:23;9598:68;;;;-1:-1:-1;;;9598:68:0;;;;;;;:::i;:::-;51657:4:::1;:12:::0;51601:74::o;51817:132::-;9459:6;;-1:-1:-1;;;;;9459:6:0;46923:10;9606:23;9598:68;;;;-1:-1:-1;;;9598:68:0;;;;;;;:::i;:::-;51905:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;49229:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49196:28::-;;;;;;;:::i;28541:144::-;28605:7;28648:27;28667:7;28648:18;:27::i;24418:224::-;24482:7;-1:-1:-1;;;;;24506:19:0;;24502:60;;24534:28;;-1:-1:-1;;;24534:28:0;;;;;;;;;;;24502:60;-1:-1:-1;;;;;;24580:25:0;;;;;:18;:25;;;;;;19757:13;24580:54;;24418:224::o;10037:94::-;9459:6;;-1:-1:-1;;;;;9459:6:0;46923:10;9606:23;9598:68;;;;-1:-1:-1;;;9598:68:0;;;;;;;:::i;:::-;10102:21:::1;10120:1;10102:9;:21::i;:::-;10037:94::o:0;51955:100::-;9459:6;;-1:-1:-1;;;;;9459:6:0;46923:10;9606:23;9598:68;;;;-1:-1:-1;;;9598:68:0;;;;;;;:::i;:::-;52027:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;28921:104::-:0;28977:13;29010:7;29003:14;;;;;:::i;50330:463::-;50400:11;50223:4;50206:13;51050:1;23059:12;22846:7;23043:13;:28;-1:-1:-1;;23043:46:0;;22793:315;50206:13;:21;50202:109;;50268:11;50261:4;;:18;;;;:::i;:::-;50248:9;:31;;50240:63;;;;-1:-1:-1;;;50240:63:0;;7732:2:1;50240:63:0;;;7714:21:1;7771:2;7751:18;;;7744:30;-1:-1:-1;;;7790:18:1;;;7783:49;7849:18;;50240:63:0;7530:343:1;50240:63:0;50442:1:::1;50428:11;:15;:52;;;;;50462:18;;50447:11;:33;;50428:52;50420:85;;;::::0;-1:-1:-1;;;50420:85:0;;8080:2:1;50420:85:0::1;::::0;::::1;8062:21:1::0;8119:2;8099:18;;;8092:30;-1:-1:-1;;;8138:18:1;;;8131:50;8198:18;;50420:85:0::1;7878:344:1::0;50420:85:0::1;50551:4;50536:11;50520:13;51050:1:::0;23059:12;22846:7;23043:13;:28;-1:-1:-1;;23043:46:0;;22793:315;50520:13:::1;:27;;;;:::i;:::-;:35;;50512:68;;;::::0;-1:-1:-1;;;50512:68:0;;8562:2:1;50512:68:0::1;::::0;::::1;8544:21:1::0;8601:2;8581:18;;;8574:30;-1:-1:-1;;;8620:18:1;;;8613:50;8680:18;;50512:68:0::1;8360:344:1::0;50512:68:0::1;50596:6;::::0;::::1;;50595:7;50587:43;;;::::0;-1:-1:-1;;;50587:43:0;;8911:2:1;50587:43:0::1;::::0;::::1;8893:21:1::0;8950:2;8930:18;;;8923:30;8989:25;8969:18;;;8962:53;9032:18;;50587:43:0::1;8709:347:1::0;50587:43:0::1;50660:10;50646:25;::::0;;;:13:::1;:25;::::0;;;;;::::1;;50645:26;50637:66;;;::::0;-1:-1:-1;;;50637:66:0;;9263:2:1;50637:66:0::1;::::0;::::1;9245:21:1::0;9302:2;9282:18;;;9275:30;9341:29;9321:18;;;9314:57;9388:18;;50637:66:0::1;9061:351:1::0;50637:66:0::1;50724:10;50710:25;::::0;;;:13:::1;:25;::::0;;;;:32;;-1:-1:-1;;50710:32:0::1;50738:4;50710:32;::::0;;50751:36:::1;50761:12;46923:10:::0;;46836:105;50761:12:::1;50775:11;50751:9;:36::i;31096:308::-:0;46923:10;-1:-1:-1;;;;;31195:31:0;;;31191:61;;31235:17;;-1:-1:-1;;;31235:17:0;;;;;;;;;;;31191:61;46923:10;31265:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;31265:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;31265:60:0;;;;;;;;;;31341:55;;540:41:1;;;31265:49:0;;46923:10;31341:55;;513:18:1;31341:55:0;;;;;;;31096:308;;:::o;49267:31::-;;;;;;;:::i;51681:130::-;9459:6;;-1:-1:-1;;;;;9459:6:0;46923:10;9606:23;9598:68;;;;-1:-1:-1;;;9598:68:0;;;;;;;:::i;:::-;51765:18:::1;:40:::0;51681:130::o;32203:396::-;32370:28;32380:4;32386:2;32390:7;32370:9;:28::i;:::-;-1:-1:-1;;;;;32413:14:0;;;:19;32409:183;;32452:56;32483:4;32489:2;32493:7;32502:5;32452:30;:56::i;:::-;32447:145;;32536:40;;-1:-1:-1;;;32536:40:0;;;;;;;;;;;32447:145;32203:396;;;;:::o;51063:445::-;51137:13;51167:17;51175:8;51167:7;:17::i;:::-;51159:77;;;;-1:-1:-1;;;51159:77:0;;9619:2:1;51159:77:0;;;9601:21:1;9658:2;9638:18;;;9631:30;9697:34;9677:18;;;9670:62;-1:-1:-1;;;9748:18:1;;;9741:45;9803:19;;51159:77:0;9417:411:1;51159:77:0;51249:8;;;;;;;:17;;51261:5;51249:17;51245:64;;51284:17;51277:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51063:445;;;:::o;51245:64::-;51317:28;51348:10;:8;:10::i;:::-;51317:41;;51403:1;51378:14;51372:28;:32;:130;;;;;;;;;;;;;;;;;51440:14;51456:19;:8;:17;:19::i;:::-;51477:9;51423:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51372:130;51365:137;51063:445;-1:-1:-1;;;51063:445:0:o;51514:81::-;9459:6;;-1:-1:-1;;;;;9459:6:0;46923:10;9606:23;9598:68;;;;-1:-1:-1;;;9598:68:0;;;;;;;:::i;:::-;51572:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;51572:17:0;;::::1;::::0;;;::::1;::::0;;51514:81::o;50801:155::-;50887:11;49982:1;49968:11;:15;:52;;;;;50002:18;;49987:11;:33;;49968:52;49960:85;;;;-1:-1:-1;;;49960:85:0;;8080:2:1;49960:85:0;;;8062:21:1;8119:2;8099:18;;;8092:30;-1:-1:-1;;;8138:18:1;;;8131:50;8198:18;;49960:85:0;7878:344:1;49960:85:0;50091:9;;50076:11;50060:13;51050:1;23059:12;22846:7;23043:13;:28;-1:-1:-1;;23043:46:0;;22793:315;50060:13;:27;;;;:::i;:::-;:40;;50052:73;;;;-1:-1:-1;;;50052:73:0;;8562:2:1;50052:73:0;;;8544:21:1;8601:2;8581:18;;;8574:30;-1:-1:-1;;;8620:18:1;;;8613:50;8680:18;;50052:73:0;8360:344:1;50052:73:0;9459:6;;-1:-1:-1;;;;;9459:6:0;46923:10;9606:23:::1;9598:68;;;;-1:-1:-1::0;;;9598:68:0::1;;;;;;;:::i;:::-;50917:33:::2;50927:9;50938:11;50917:9;:33::i;10286:192::-:0;9459:6;;-1:-1:-1;;;;;9459:6:0;46923:10;9606:23;9598:68;;;;-1:-1:-1;;;9598:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10375:22:0;::::1;10367:73;;;::::0;-1:-1:-1;;;10367:73:0;;11693:2:1;10367:73:0::1;::::0;::::1;11675:21:1::0;11732:2;11712:18;;;11705:30;11771:34;11751:18;;;11744:62;-1:-1:-1;;;11822:18:1;;;11815:36;11868:19;;10367:73:0::1;11491:402:1::0;10367:73:0::1;10451:19;10461:8;10451:9;:19::i;:::-;10286:192:::0;:::o;32854:273::-;32911:4;32967:7;51050:1;32948:26;;:66;;;;;33001:13;;32991:7;:23;32948:66;:152;;;;-1:-1:-1;;33052:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;33052:43:0;:48;;32854:273::o;26056:1129::-;26123:7;26158;;51050:1;26207:23;26203:915;;26260:13;;26253:4;:20;26249:869;;;26298:14;26315:23;;;:17;:23;;;;;;;-1:-1:-1;;;26404:23:0;;:28;;26400:699;;26923:113;26930:6;26940:1;26930:11;26923:113;;-1:-1:-1;;;27001:6:0;26983:25;;;;:17;:25;;;;;;26923:113;;26400:699;26275:843;26249:869;27146:31;;-1:-1:-1;;;27146:31:0;;;;;;;;;;;38093:2515;38208:27;38238;38257:7;38238:18;:27::i;:::-;38208:57;;38323:4;-1:-1:-1;;;;;38282:45:0;38298:19;-1:-1:-1;;;;;38282:45:0;;38278:86;;38336:28;;-1:-1:-1;;;38336:28:0;;;;;;;;;;;38278:86;38377:22;46923:10;-1:-1:-1;;;;;38403:27:0;;;;:87;;-1:-1:-1;38447:43:0;38464:4;46923:10;31475:164;:::i;38447:43::-;38403:147;;;-1:-1:-1;46923:10:0;38507:20;38519:7;38507:11;:20::i;:::-;-1:-1:-1;;;;;38507:43:0;;38403:147;38377:174;;38569:17;38564:66;;38595:35;;-1:-1:-1;;;38595:35:0;;;;;;;;;;;38564:66;-1:-1:-1;;;;;38645:16:0;;38641:52;;38670:23;;-1:-1:-1;;;38670:23:0;;;;;;;;;;;38641:52;38822:24;;;;:15;:24;;;;;;;;38815:31;;-1:-1:-1;;;;;;38815:31:0;;;-1:-1:-1;;;;;39214:24:0;;;;;:18;:24;;;;;39212:26;;-1:-1:-1;;39212:26:0;;;39283:22;;;;;;;39281:24;;-1:-1:-1;39281:24:0;;;39576:26;;;:17;:26;;;;;-1:-1:-1;;;39664:15:0;20411:3;39664:41;39622:84;;:128;;39576:174;;;39870:46;;:51;;39866:626;;39974:1;39964:11;;39942:19;40097:30;;;:17;:30;;;;;;:35;;40093:384;;40235:13;;40220:11;:28;40216:242;;40382:30;;;;:17;:30;;;;;:52;;;40216:242;39923:569;39866:626;40539:7;40535:2;-1:-1:-1;;;;;40520:27:0;40529:4;-1:-1:-1;;;;;40520:27:0;;;;;;;;;;;38197:2411;;38093:2515;;;:::o;10486:173::-;10561:6;;;-1:-1:-1;;;;;10578:17:0;;;-1:-1:-1;;;;;;10578:17:0;;;;;;;10611:40;;10561:6;;;10578:17;10561:6;;10611:40;;10542:16;;10611:40;10531:128;10486:173;:::o;33211:104::-;33280:27;33290:2;33294:8;33280:27;;;;;;;;;;;;:9;:27::i;44305:716::-;44489:88;;-1:-1:-1;;;44489:88:0;;44468:4;;-1:-1:-1;;;;;44489:45:0;;;;;:88;;46923:10;;44556:4;;44562:7;;44571:5;;44489:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44489:88:0;;;;;;;;-1:-1:-1;;44489:88:0;;;;;;;;;;;;:::i;:::-;;;44485:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44772:6;:13;44789:1;44772:18;44768:235;;44818:40;;-1:-1:-1;;;44818:40:0;;;;;;;;;;;44768:235;44961:6;44955:13;44946:6;44942:2;44938:15;44931:38;44485:529;-1:-1:-1;;;;;;44648:64:0;-1:-1:-1;;;44648:64:0;;-1:-1:-1;44485:529:0;44305:716;;;;;;:::o;52406:104::-;52466:13;52495:9;52488:16;;;;;:::i;3105:723::-;3161:13;3382:5;3391:1;3382:10;3378:53;;-1:-1:-1;;3409:10:0;;;;;;;;;;;;-1:-1:-1;;;3409:10:0;;;;;3105:723::o;3378:53::-;3456:5;3441:12;3497:78;3504:9;;3497:78;;3530:8;;;;:::i;:::-;;-1:-1:-1;3553:10:0;;-1:-1:-1;3561:2:0;3553:10;;:::i;:::-;;;3497:78;;;3585:19;3617:6;3607:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3607:17:0;;3585:39;;3635:154;3642:10;;3635:154;;3669:11;3679:1;3669:11;;:::i;:::-;;-1:-1:-1;3738:10:0;3746:2;3738:5;:10;:::i;:::-;3725:24;;:2;:24;:::i;:::-;3712:39;;3695:6;3702;3695:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3695:56:0;;;;;;;;-1:-1:-1;3766:11:0;3775:2;3766:11;;:::i;:::-;;;3635:154;;33688:2236;33811:20;33834:13;-1:-1:-1;;;;;33862:16:0;;33858:48;;33887:19;;-1:-1:-1;;;33887:19:0;;;;;;;;;;;33858:48;33921:8;33933:1;33921:13;33917:44;;33943:18;;-1:-1:-1;;;33943:18:0;;;;;;;;;;;33917:44;-1:-1:-1;;;;;34510:22:0;;;;;;:18;:22;;;;19894:2;34510:22;;;:70;;34548:31;34536:44;;34510:70;;;34823:31;;;:17;:31;;;;;34916:15;20411:3;34916:41;34874:84;;-1:-1:-1;34994:13:0;;20674:3;34979:56;34874:162;34823:213;;:31;;35117:23;;;;35161:14;:19;35157:635;;35201:313;35232:38;;35257:12;;-1:-1:-1;;;;;35232:38:0;;;35249:1;;35232:38;;35249:1;;35232:38;35298:69;35337:1;35341:2;35345:14;;;;;;35361:5;35298:30;:69::i;:::-;35293:174;;35403:40;;-1:-1:-1;;;35403:40:0;;;;;;;;;;;35293:174;35509:3;35494:12;:18;35201:313;;35595:12;35578:13;;:29;35574:43;;35609:8;;;35574:43;35157:635;;;35658:119;35689:40;;35714:14;;;;;-1:-1:-1;;;;;35689:40:0;;;35706:1;;35689:40;;35706:1;;35689:40;35772:3;35757:12;:18;35658:119;;35157:635;-1:-1:-1;35806:13:0;:28;;;35856:60;;35889:2;35893:12;35907:8;35856:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:127::-;2416:10;2411:3;2407:20;2404:1;2397:31;2447:4;2444:1;2437:15;2471:4;2468:1;2461:15;2487:632;2552:5;2582:18;2623:2;2615:6;2612:14;2609:40;;;2629:18;;:::i;:::-;2704:2;2698:9;2672:2;2758:15;;-1:-1:-1;;2754:24:1;;;2780:2;2750:33;2746:42;2734:55;;;2804:18;;;2824:22;;;2801:46;2798:72;;;2850:18;;:::i;:::-;2890:10;2886:2;2879:22;2919:6;2910:15;;2949:6;2941;2934:22;2989:3;2980:6;2975:3;2971:16;2968:25;2965:45;;;3006:1;3003;2996:12;2965:45;3056:6;3051:3;3044:4;3036:6;3032:17;3019:44;3111:1;3104:4;3095:6;3087;3083:19;3079:30;3072:41;;;;2487:632;;;;;:::o;3124:451::-;3193:6;3246:2;3234:9;3225:7;3221:23;3217:32;3214:52;;;3262:1;3259;3252:12;3214:52;3302:9;3289:23;3335:18;3327:6;3324:30;3321:50;;;3367:1;3364;3357:12;3321:50;3390:22;;3443:4;3435:13;;3431:27;-1:-1:-1;3421:55:1;;3472:1;3469;3462:12;3421:55;3495:74;3561:7;3556:2;3543:16;3538:2;3534;3530:11;3495:74;:::i;3580:160::-;3645:20;;3701:13;;3694:21;3684:32;;3674:60;;3730:1;3727;3720:12;3745:180;3801:6;3854:2;3842:9;3833:7;3829:23;3825:32;3822:52;;;3870:1;3867;3860:12;3822:52;3893:26;3909:9;3893:26;:::i;3930:328::-;4007:6;4015;4023;4076:2;4064:9;4055:7;4051:23;4047:32;4044:52;;;4092:1;4089;4082:12;4044:52;4115:29;4134:9;4115:29;:::i;:::-;4105:39;;4163:38;4197:2;4186:9;4182:18;4163:38;:::i;:::-;4153:48;;4248:2;4237:9;4233:18;4220:32;4210:42;;3930:328;;;;;:::o;4263:186::-;4322:6;4375:2;4363:9;4354:7;4350:23;4346:32;4343:52;;;4391:1;4388;4381:12;4343:52;4414:29;4433:9;4414:29;:::i;4454:254::-;4519:6;4527;4580:2;4568:9;4559:7;4555:23;4551:32;4548:52;;;4596:1;4593;4586:12;4548:52;4619:29;4638:9;4619:29;:::i;:::-;4609:39;;4667:35;4698:2;4687:9;4683:18;4667:35;:::i;:::-;4657:45;;4454:254;;;;;:::o;4713:667::-;4808:6;4816;4824;4832;4885:3;4873:9;4864:7;4860:23;4856:33;4853:53;;;4902:1;4899;4892:12;4853:53;4925:29;4944:9;4925:29;:::i;:::-;4915:39;;4973:38;5007:2;4996:9;4992:18;4973:38;:::i;:::-;4963:48;;5058:2;5047:9;5043:18;5030:32;5020:42;;5113:2;5102:9;5098:18;5085:32;5140:18;5132:6;5129:30;5126:50;;;5172:1;5169;5162:12;5126:50;5195:22;;5248:4;5240:13;;5236:27;-1:-1:-1;5226:55:1;;5277:1;5274;5267:12;5226:55;5300:74;5366:7;5361:2;5348:16;5343:2;5339;5335:11;5300:74;:::i;:::-;5290:84;;;4713:667;;;;;;;:::o;5385:260::-;5453:6;5461;5514:2;5502:9;5493:7;5489:23;5485:32;5482:52;;;5530:1;5527;5520:12;5482:52;5553:29;5572:9;5553:29;:::i;:::-;5543:39;;5601:38;5635:2;5624:9;5620:18;5601:38;:::i;5650:254::-;5718:6;5726;5779:2;5767:9;5758:7;5754:23;5750:32;5747:52;;;5795:1;5792;5785:12;5747:52;5831:9;5818:23;5808:33;;5860:38;5894:2;5883:9;5879:18;5860:38;:::i;5909:380::-;5988:1;5984:12;;;;6031;;;6052:61;;6106:4;6098:6;6094:17;6084:27;;6052:61;6159:2;6151:6;6148:14;6128:18;6125:38;6122:161;;6205:10;6200:3;6196:20;6193:1;6186:31;6240:4;6237:1;6230:15;6268:4;6265:1;6258:15;6122:161;;5909:380;;;:::o;6294:356::-;6496:2;6478:21;;;6515:18;;;6508:30;6574:34;6569:2;6554:18;;6547:62;6641:2;6626:18;;6294:356::o;7225:127::-;7286:10;7281:3;7277:20;7274:1;7267:31;7317:4;7314:1;7307:15;7341:4;7338:1;7331:15;7357:168;7397:7;7463:1;7459;7455:6;7451:14;7448:1;7445:21;7440:1;7433:9;7426:17;7422:45;7419:71;;;7470:18;;:::i;:::-;-1:-1:-1;7510:9:1;;7357:168::o;8227:128::-;8267:3;8298:1;8294:6;8291:1;8288:13;8285:39;;;8304:18;;:::i;:::-;-1:-1:-1;8340:9:1;;8227:128::o;9959:1527::-;10183:3;10221:6;10215:13;10247:4;10260:51;10304:6;10299:3;10294:2;10286:6;10282:15;10260:51;:::i;:::-;10374:13;;10333:16;;;;10396:55;10374:13;10333:16;10418:15;;;10396:55;:::i;:::-;10540:13;;10473:20;;;10513:1;;10600;10622:18;;;;10675;;;;10702:93;;10780:4;10770:8;10766:19;10754:31;;10702:93;10843:2;10833:8;10830:16;10810:18;10807:40;10804:167;;-1:-1:-1;;;10870:33:1;;10926:4;10923:1;10916:15;10956:4;10877:3;10944:17;10804:167;10987:18;11014:110;;;;11138:1;11133:328;;;;10980:481;;11014:110;-1:-1:-1;;11049:24:1;;11035:39;;11094:20;;;;-1:-1:-1;11014:110:1;;11133:328;9906:1;9899:14;;;9943:4;9930:18;;11228:1;11242:169;11256:8;11253:1;11250:15;11242:169;;;11338:14;;11323:13;;;11316:37;11381:16;;;;11273:10;;11242:169;;;11246:3;;11442:8;11435:5;11431:20;11424:27;;10980:481;-1:-1:-1;11477:3:1;;9959:1527;-1:-1:-1;;;;;;;;;;;9959:1527:1:o;11898:489::-;-1:-1:-1;;;;;12167:15:1;;;12149:34;;12219:15;;12214:2;12199:18;;12192:43;12266:2;12251:18;;12244:34;;;12314:3;12309:2;12294:18;;12287:31;;;12092:4;;12335:46;;12361:19;;12353:6;12335:46;:::i;:::-;12327:54;11898:489;-1:-1:-1;;;;;;11898:489:1:o;12392:249::-;12461:6;12514:2;12502:9;12493:7;12489:23;12485:32;12482:52;;;12530:1;12527;12520:12;12482:52;12562:9;12556:16;12581:30;12605:5;12581:30;:::i;12646:135::-;12685:3;12706:17;;;12703:43;;12726:18;;:::i;:::-;-1:-1:-1;12773:1:1;12762:13;;12646:135::o;12786:127::-;12847:10;12842:3;12838:20;12835:1;12828:31;12878:4;12875:1;12868:15;12902:4;12899:1;12892:15;12918:120;12958:1;12984;12974:35;;12989:18;;:::i;:::-;-1:-1:-1;13023:9:1;;12918:120::o;13043:125::-;13083:4;13111:1;13108;13105:8;13102:34;;;13116:18;;:::i;:::-;-1:-1:-1;13153:9:1;;13043:125::o;13173:112::-;13205:1;13231;13221:35;;13236:18;;:::i;:::-;-1:-1:-1;13270:9:1;;13173:112::o;13290:127::-;13351:10;13346:3;13342:20;13339:1;13332:31;13382:4;13379:1;13372:15;13406:4;13403:1;13396:15

Swarm Source

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