ETH Price: $2,518.04 (-4.56%)

Token

Pixel Valhalla (PVAL)
 

Overview

Max Total Supply

662 PVAL

Holders

38

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
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:
PixelValhalla

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-22
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;







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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/4_NFTAlertsAPP.sol



pragma solidity ^0.8.4;




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

    uint256 public PRICE;
    uint256 public MAX_SUPPLY;
    string private BASE_URI;
    uint256 public MAX_MINT_AMOUNT_PER_TX;
    bool public IS_SALE_ACTIVE;

    constructor(
        uint256 price,
        uint256 maxSupply,
        string memory baseUri,
        uint256 maxMintPerTx,
        bool isSaleActive
    ) ERC721A("Pixel Valhalla", "PVAL") {
        PRICE = price;
        MAX_SUPPLY = maxSupply;
        BASE_URI = baseUri;
        MAX_MINT_AMOUNT_PER_TX = maxMintPerTx;
        IS_SALE_ACTIVE = isSaleActive;
    }


    /** GETTERS **/

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

    /** SETTERS **/

    function setPrice(uint256 customPrice) external onlyOwner {
        PRICE = customPrice;
    }


    function setBaseURI(string memory customBaseURI_) external onlyOwner {
        BASE_URI = customBaseURI_;
    }


    function setMaxMintPerTx(uint256 maxMintPerTx) external onlyOwner {
        MAX_MINT_AMOUNT_PER_TX = maxMintPerTx;
    }

    function setSaleActive(bool saleIsActive) external onlyOwner {
        IS_SALE_ACTIVE = saleIsActive;
    }

    /** MINT **/

    modifier mintCompliance(uint256 _mintAmount) {
        require(
            _mintAmount > 0 && _mintAmount <= MAX_MINT_AMOUNT_PER_TX,
            "Invalid mint amount!"
        );
        require(
            _currentIndex + _mintAmount <= MAX_SUPPLY,
            "Max supply exceeded!"
        );
        _;
    }

    function mint(uint256 _mintAmount)
        public
        payable
        mintCompliance(_mintAmount)
    {
        require(IS_SALE_ACTIVE, "Sale is not active!");

        uint256 price = PRICE * _mintAmount;

        require(msg.value >= price, "Insufficient funds!");

        _safeMint(msg.sender, _mintAmount);
    }


    /** PAYOUT **/

    function withdraw() public onlyOwner nonReentrant {
        uint256 balance = address(this).balance;

        Address.sendValue(
            payable(0x9D5381BB321508CE6dce9dFE3d5B9849ED7a9b6c),
            balance
        );
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"string","name":"baseUri","type":"string"},{"internalType":"uint256","name":"maxMintPerTx","type":"uint256"},{"internalType":"bool","name":"isSaleActive","type":"bool"}],"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":[],"name":"IS_SALE_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_AMOUNT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"customBaseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintPerTx","type":"uint256"}],"name":"setMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"customPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"saleIsActive","type":"bool"}],"name":"setSaleActive","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162001f3b38038062001f3b833981016040819052620000349162000167565b6040518060400160405280600e81526020016d506978656c2056616c68616c6c6160901b815250604051806040016040528060048152602001631415905360e21b8152508160029081620000899190620002fc565b506003620000988282620002fc565b50506000805550620000aa33620000e9565b6001600955600a859055600b849055600c620000c78482620002fc565b50600d91909155600e805460ff191691151591909117905550620003c8915050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b805180151581146200016257600080fd5b919050565b600080600080600060a086880312156200018057600080fd5b855160208088015160408901519297509550906001600160401b0380821115620001a957600080fd5b818901915089601f830112620001be57600080fd5b815181811115620001d357620001d36200013b565b604051601f8201601f19908116603f01168101908382118183101715620001fe57620001fe6200013b565b816040528281528c868487010111156200021757600080fd5b600093505b828410156200023b57848401860151818501870152928501926200021c565b600086848301015280985050505050505060608601519150620002616080870162000151565b90509295509295909350565b600181811c908216806200028257607f821691505b602082108103620002a357634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002f757600081815260208120601f850160051c81016020861015620002d25750805b601f850160051c820191505b81811015620002f357828155600101620002de565b5050505b505050565b81516001600160401b038111156200031857620003186200013b565b62000330816200032984546200026d565b84620002a9565b602080601f8311600181146200036857600084156200034f5750858301515b600019600386901b1c1916600185901b178555620002f3565b600085815260208120601f198616915b82811015620003995788860151825594840194600190910190840162000378565b5085821015620003b85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611b6380620003d86000396000f3fe60806040526004361061019c5760003560e01c806370a08231116100ec57806395d89b411161008a578063b88d4fde11610064578063b88d4fde14610465578063c87b56dd14610485578063e985e9c5146104a5578063f2fde38b146104c557600080fd5b806395d89b411461041d578063a0712d6814610432578063a22cb4651461044557600080fd5b8063841718a6116100c6578063841718a6146103a95780638d859f3e146103c95780638da5cb5b146103df57806391b7f5ed146103fd57600080fd5b806370a082311461035a578063715018a61461037a57806376d02b711461038f57600080fd5b806323b872dd1161015957806342842e0e1161013357806342842e0e146102da57806355f804b3146102fa578063616cdb1e1461031a5780636352211e1461033a57600080fd5b806323b872dd1461028f57806332cb6b0c146102af5780633ccfd60b146102c557600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806309ef65271461025257806318160ddd14610276575b600080fd5b3480156101ad57600080fd5b506101c16101bc366004611558565b6104e5565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb610537565b6040516101cd91906115c5565b34801561020457600080fd5b506102186102133660046115d8565b6105c9565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b36600461160d565b61060d565b005b34801561025e57600080fd5b50610268600d5481565b6040519081526020016101cd565b34801561028257600080fd5b5060015460005403610268565b34801561029b57600080fd5b506102506102aa366004611637565b610693565b3480156102bb57600080fd5b50610268600b5481565b3480156102d157600080fd5b5061025061069e565b3480156102e657600080fd5b506102506102f5366004611637565b61074f565b34801561030657600080fd5b506102506103153660046116ff565b61076a565b34801561032657600080fd5b506102506103353660046115d8565b6107a4565b34801561034657600080fd5b506102186103553660046115d8565b6107d3565b34801561036657600080fd5b50610268610375366004611748565b6107e5565b34801561038657600080fd5b50610250610834565b34801561039b57600080fd5b50600e546101c19060ff1681565b3480156103b557600080fd5b506102506103c4366004611773565b61086a565b3480156103d557600080fd5b50610268600a5481565b3480156103eb57600080fd5b506008546001600160a01b0316610218565b34801561040957600080fd5b506102506104183660046115d8565b6108a7565b34801561042957600080fd5b506101eb6108d6565b6102506104403660046115d8565b6108e5565b34801561045157600080fd5b5061025061046036600461178e565b610a3b565b34801561047157600080fd5b506102506104803660046117c1565b610ad0565b34801561049157600080fd5b506101eb6104a03660046115d8565b610b1a565b3480156104b157600080fd5b506101c16104c036600461183d565b610b9e565b3480156104d157600080fd5b506102506104e0366004611748565b610bcc565b60006001600160e01b031982166380ac58cd60e01b148061051657506001600160e01b03198216635b5e139f60e01b145b8061053157506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461054690611867565b80601f016020809104026020016040519081016040528092919081815260200182805461057290611867565b80156105bf5780601f10610594576101008083540402835291602001916105bf565b820191906000526020600020905b8154815290600101906020018083116105a257829003601f168201915b5050505050905090565b60006105d482610c67565b6105f1576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610618826107d3565b9050806001600160a01b0316836001600160a01b03160361064c5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610683576106668133610b9e565b610683576040516367d9dca160e11b815260040160405180910390fd5b61068e838383610c92565b505050565b61068e838383610cee565b6008546001600160a01b031633146106d15760405162461bcd60e51b81526004016106c8906118a1565b60405180910390fd5b6002600954036107235760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106c8565b600260095547610747739d5381bb321508ce6dce9dfe3d5b9849ed7a9b6c82610edd565b506001600955565b61068e83838360405180602001604052806000815250610ad0565b6008546001600160a01b031633146107945760405162461bcd60e51b81526004016106c8906118a1565b600c6107a08282611924565b5050565b6008546001600160a01b031633146107ce5760405162461bcd60e51b81526004016106c8906118a1565b600d55565b60006107de82610ff6565b5192915050565b60006001600160a01b03821661080e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b0316331461085e5760405162461bcd60e51b81526004016106c8906118a1565b6108686000611112565b565b6008546001600160a01b031633146108945760405162461bcd60e51b81526004016106c8906118a1565b600e805460ff1916911515919091179055565b6008546001600160a01b031633146108d15760405162461bcd60e51b81526004016106c8906118a1565b600a55565b60606003805461054690611867565b806000811180156108f85750600d548111155b61093b5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016106c8565b600b548160005461094c91906119fa565b11156109915760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016106c8565b600e5460ff166109d95760405162461bcd60e51b815260206004820152601360248201527253616c65206973206e6f74206163746976652160681b60448201526064016106c8565b600082600a546109e99190611a0d565b905080341015610a315760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016106c8565b61068e3384611164565b336001600160a01b03831603610a645760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610adb848484610cee565b6001600160a01b0383163b15610b1457610af78484848461117e565b610b14576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610b2582610c67565b610b4257604051630a14c4b560e41b815260040160405180910390fd5b6000610b4c61126a565b90508051600003610b6c5760405180602001604052806000815250610b97565b80610b7684611279565b604051602001610b87929190611a24565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b03163314610bf65760405162461bcd60e51b81526004016106c8906118a1565b6001600160a01b038116610c5b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106c8565b610c6481611112565b50565b6000805482108015610531575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610cf982610ff6565b9050836001600160a01b031681600001516001600160a01b031614610d305760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610d4e5750610d4e8533610b9e565b80610d69575033610d5e846105c9565b6001600160a01b0316145b905080610d8957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610db057604051633a954ecd60e21b815260040160405180910390fd5b610dbc60008487610c92565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610e92576000548214610e92578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b80471015610f2d5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016106c8565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114610f7a576040519150601f19603f3d011682016040523d82523d6000602084013e610f7f565b606091505b505090508061068e5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016106c8565b6040805160608101825260008082526020820181905291810191909152816000548110156110f957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906110f75780516001600160a01b03161561108d579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156110f2579392505050565b61108d565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6107a082826040518060200160405280600081525061137a565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111b3903390899088908890600401611a53565b6020604051808303816000875af19250505080156111ee575060408051601f3d908101601f191682019092526111eb91810190611a90565b60015b61124c573d80801561121c576040519150601f19603f3d011682016040523d82523d6000602084013e611221565b606091505b508051600003611244576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c805461054690611867565b6060816000036112a05750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112ca57806112b481611aad565b91506112c39050600a83611adc565b91506112a4565b60008167ffffffffffffffff8111156112e5576112e5611673565b6040519080825280601f01601f19166020018201604052801561130f576020820181803683370190505b5090505b841561126257611324600183611af0565b9150611331600a86611b03565b61133c9060306119fa565b60f81b81838151811061135157611351611b17565b60200101906001600160f81b031916908160001a905350611373600a86611adc565b9450611313565b6000546001600160a01b0384166113a357604051622e076360e81b815260040160405180910390fd5b826000036113c45760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b156114ed575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46114b6600087848060010195508761117e565b6114d3576040516368d2bf6b60e11b815260040160405180910390fd5b80821061146b5782600054146114e857600080fd5b611532565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106114ee575b506000908155610b149085838684565b6001600160e01b031981168114610c6457600080fd5b60006020828403121561156a57600080fd5b8135610b9781611542565b60005b83811015611590578181015183820152602001611578565b50506000910152565b600081518084526115b1816020860160208601611575565b601f01601f19169290920160200192915050565b602081526000610b976020830184611599565b6000602082840312156115ea57600080fd5b5035919050565b80356001600160a01b038116811461160857600080fd5b919050565b6000806040838503121561162057600080fd5b611629836115f1565b946020939093013593505050565b60008060006060848603121561164c57600080fd5b611655846115f1565b9250611663602085016115f1565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156116a4576116a4611673565b604051601f8501601f19908116603f011681019082821181831017156116cc576116cc611673565b816040528093508581528686860111156116e557600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561171157600080fd5b813567ffffffffffffffff81111561172857600080fd5b8201601f8101841361173957600080fd5b61126284823560208401611689565b60006020828403121561175a57600080fd5b610b97826115f1565b8035801515811461160857600080fd5b60006020828403121561178557600080fd5b610b9782611763565b600080604083850312156117a157600080fd5b6117aa836115f1565b91506117b860208401611763565b90509250929050565b600080600080608085870312156117d757600080fd5b6117e0856115f1565b93506117ee602086016115f1565b925060408501359150606085013567ffffffffffffffff81111561181157600080fd5b8501601f8101871361182257600080fd5b61183187823560208401611689565b91505092959194509250565b6000806040838503121561185057600080fd5b611859836115f1565b91506117b8602084016115f1565b600181811c9082168061187b57607f821691505b60208210810361189b57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f82111561068e57600081815260208120601f850160051c810160208610156118fd5750805b601f850160051c820191505b8181101561191c57828155600101611909565b505050505050565b815167ffffffffffffffff81111561193e5761193e611673565b6119528161194c8454611867565b846118d6565b602080601f831160018114611987576000841561196f5750858301515b600019600386901b1c1916600185901b17855561191c565b600085815260208120601f198616915b828110156119b657888601518255948401946001909101908401611997565b50858210156119d45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b80820180821115610531576105316119e4565b8082028115828204841417610531576105316119e4565b60008351611a36818460208801611575565b835190830190611a4a818360208801611575565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a8690830184611599565b9695505050505050565b600060208284031215611aa257600080fd5b8151610b9781611542565b600060018201611abf57611abf6119e4565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611aeb57611aeb611ac6565b500490565b81810381811115610531576105316119e4565b600082611b1257611b12611ac6565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220586cc78877bb85989026df88334f89387075dada1aaa42e61710d08645573cc864736f6c634300081100330000000000000000000000000000000000000000000000000011c37937e08000000000000000000000000000000000000000000000000000000000000000138800000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000190000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002768747470733a2f2f6e66746d657461646174612e6c6976652f706978656c76616c68616c6c612f00000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061019c5760003560e01c806370a08231116100ec57806395d89b411161008a578063b88d4fde11610064578063b88d4fde14610465578063c87b56dd14610485578063e985e9c5146104a5578063f2fde38b146104c557600080fd5b806395d89b411461041d578063a0712d6814610432578063a22cb4651461044557600080fd5b8063841718a6116100c6578063841718a6146103a95780638d859f3e146103c95780638da5cb5b146103df57806391b7f5ed146103fd57600080fd5b806370a082311461035a578063715018a61461037a57806376d02b711461038f57600080fd5b806323b872dd1161015957806342842e0e1161013357806342842e0e146102da57806355f804b3146102fa578063616cdb1e1461031a5780636352211e1461033a57600080fd5b806323b872dd1461028f57806332cb6b0c146102af5780633ccfd60b146102c557600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806309ef65271461025257806318160ddd14610276575b600080fd5b3480156101ad57600080fd5b506101c16101bc366004611558565b6104e5565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb610537565b6040516101cd91906115c5565b34801561020457600080fd5b506102186102133660046115d8565b6105c9565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b36600461160d565b61060d565b005b34801561025e57600080fd5b50610268600d5481565b6040519081526020016101cd565b34801561028257600080fd5b5060015460005403610268565b34801561029b57600080fd5b506102506102aa366004611637565b610693565b3480156102bb57600080fd5b50610268600b5481565b3480156102d157600080fd5b5061025061069e565b3480156102e657600080fd5b506102506102f5366004611637565b61074f565b34801561030657600080fd5b506102506103153660046116ff565b61076a565b34801561032657600080fd5b506102506103353660046115d8565b6107a4565b34801561034657600080fd5b506102186103553660046115d8565b6107d3565b34801561036657600080fd5b50610268610375366004611748565b6107e5565b34801561038657600080fd5b50610250610834565b34801561039b57600080fd5b50600e546101c19060ff1681565b3480156103b557600080fd5b506102506103c4366004611773565b61086a565b3480156103d557600080fd5b50610268600a5481565b3480156103eb57600080fd5b506008546001600160a01b0316610218565b34801561040957600080fd5b506102506104183660046115d8565b6108a7565b34801561042957600080fd5b506101eb6108d6565b6102506104403660046115d8565b6108e5565b34801561045157600080fd5b5061025061046036600461178e565b610a3b565b34801561047157600080fd5b506102506104803660046117c1565b610ad0565b34801561049157600080fd5b506101eb6104a03660046115d8565b610b1a565b3480156104b157600080fd5b506101c16104c036600461183d565b610b9e565b3480156104d157600080fd5b506102506104e0366004611748565b610bcc565b60006001600160e01b031982166380ac58cd60e01b148061051657506001600160e01b03198216635b5e139f60e01b145b8061053157506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461054690611867565b80601f016020809104026020016040519081016040528092919081815260200182805461057290611867565b80156105bf5780601f10610594576101008083540402835291602001916105bf565b820191906000526020600020905b8154815290600101906020018083116105a257829003601f168201915b5050505050905090565b60006105d482610c67565b6105f1576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610618826107d3565b9050806001600160a01b0316836001600160a01b03160361064c5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610683576106668133610b9e565b610683576040516367d9dca160e11b815260040160405180910390fd5b61068e838383610c92565b505050565b61068e838383610cee565b6008546001600160a01b031633146106d15760405162461bcd60e51b81526004016106c8906118a1565b60405180910390fd5b6002600954036107235760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106c8565b600260095547610747739d5381bb321508ce6dce9dfe3d5b9849ed7a9b6c82610edd565b506001600955565b61068e83838360405180602001604052806000815250610ad0565b6008546001600160a01b031633146107945760405162461bcd60e51b81526004016106c8906118a1565b600c6107a08282611924565b5050565b6008546001600160a01b031633146107ce5760405162461bcd60e51b81526004016106c8906118a1565b600d55565b60006107de82610ff6565b5192915050565b60006001600160a01b03821661080e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b0316331461085e5760405162461bcd60e51b81526004016106c8906118a1565b6108686000611112565b565b6008546001600160a01b031633146108945760405162461bcd60e51b81526004016106c8906118a1565b600e805460ff1916911515919091179055565b6008546001600160a01b031633146108d15760405162461bcd60e51b81526004016106c8906118a1565b600a55565b60606003805461054690611867565b806000811180156108f85750600d548111155b61093b5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016106c8565b600b548160005461094c91906119fa565b11156109915760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016106c8565b600e5460ff166109d95760405162461bcd60e51b815260206004820152601360248201527253616c65206973206e6f74206163746976652160681b60448201526064016106c8565b600082600a546109e99190611a0d565b905080341015610a315760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016106c8565b61068e3384611164565b336001600160a01b03831603610a645760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610adb848484610cee565b6001600160a01b0383163b15610b1457610af78484848461117e565b610b14576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610b2582610c67565b610b4257604051630a14c4b560e41b815260040160405180910390fd5b6000610b4c61126a565b90508051600003610b6c5760405180602001604052806000815250610b97565b80610b7684611279565b604051602001610b87929190611a24565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b03163314610bf65760405162461bcd60e51b81526004016106c8906118a1565b6001600160a01b038116610c5b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106c8565b610c6481611112565b50565b6000805482108015610531575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610cf982610ff6565b9050836001600160a01b031681600001516001600160a01b031614610d305760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610d4e5750610d4e8533610b9e565b80610d69575033610d5e846105c9565b6001600160a01b0316145b905080610d8957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610db057604051633a954ecd60e21b815260040160405180910390fd5b610dbc60008487610c92565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610e92576000548214610e92578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b80471015610f2d5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016106c8565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114610f7a576040519150601f19603f3d011682016040523d82523d6000602084013e610f7f565b606091505b505090508061068e5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016106c8565b6040805160608101825260008082526020820181905291810191909152816000548110156110f957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906110f75780516001600160a01b03161561108d579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156110f2579392505050565b61108d565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6107a082826040518060200160405280600081525061137a565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111b3903390899088908890600401611a53565b6020604051808303816000875af19250505080156111ee575060408051601f3d908101601f191682019092526111eb91810190611a90565b60015b61124c573d80801561121c576040519150601f19603f3d011682016040523d82523d6000602084013e611221565b606091505b508051600003611244576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c805461054690611867565b6060816000036112a05750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112ca57806112b481611aad565b91506112c39050600a83611adc565b91506112a4565b60008167ffffffffffffffff8111156112e5576112e5611673565b6040519080825280601f01601f19166020018201604052801561130f576020820181803683370190505b5090505b841561126257611324600183611af0565b9150611331600a86611b03565b61133c9060306119fa565b60f81b81838151811061135157611351611b17565b60200101906001600160f81b031916908160001a905350611373600a86611adc565b9450611313565b6000546001600160a01b0384166113a357604051622e076360e81b815260040160405180910390fd5b826000036113c45760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b156114ed575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46114b6600087848060010195508761117e565b6114d3576040516368d2bf6b60e11b815260040160405180910390fd5b80821061146b5782600054146114e857600080fd5b611532565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106114ee575b506000908155610b149085838684565b6001600160e01b031981168114610c6457600080fd5b60006020828403121561156a57600080fd5b8135610b9781611542565b60005b83811015611590578181015183820152602001611578565b50506000910152565b600081518084526115b1816020860160208601611575565b601f01601f19169290920160200192915050565b602081526000610b976020830184611599565b6000602082840312156115ea57600080fd5b5035919050565b80356001600160a01b038116811461160857600080fd5b919050565b6000806040838503121561162057600080fd5b611629836115f1565b946020939093013593505050565b60008060006060848603121561164c57600080fd5b611655846115f1565b9250611663602085016115f1565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156116a4576116a4611673565b604051601f8501601f19908116603f011681019082821181831017156116cc576116cc611673565b816040528093508581528686860111156116e557600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561171157600080fd5b813567ffffffffffffffff81111561172857600080fd5b8201601f8101841361173957600080fd5b61126284823560208401611689565b60006020828403121561175a57600080fd5b610b97826115f1565b8035801515811461160857600080fd5b60006020828403121561178557600080fd5b610b9782611763565b600080604083850312156117a157600080fd5b6117aa836115f1565b91506117b860208401611763565b90509250929050565b600080600080608085870312156117d757600080fd5b6117e0856115f1565b93506117ee602086016115f1565b925060408501359150606085013567ffffffffffffffff81111561181157600080fd5b8501601f8101871361182257600080fd5b61183187823560208401611689565b91505092959194509250565b6000806040838503121561185057600080fd5b611859836115f1565b91506117b8602084016115f1565b600181811c9082168061187b57607f821691505b60208210810361189b57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f82111561068e57600081815260208120601f850160051c810160208610156118fd5750805b601f850160051c820191505b8181101561191c57828155600101611909565b505050505050565b815167ffffffffffffffff81111561193e5761193e611673565b6119528161194c8454611867565b846118d6565b602080601f831160018114611987576000841561196f5750858301515b600019600386901b1c1916600185901b17855561191c565b600085815260208120601f198616915b828110156119b657888601518255948401946001909101908401611997565b50858210156119d45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b80820180821115610531576105316119e4565b8082028115828204841417610531576105316119e4565b60008351611a36818460208801611575565b835190830190611a4a818360208801611575565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a8690830184611599565b9695505050505050565b600060208284031215611aa257600080fd5b8151610b9781611542565b600060018201611abf57611abf6119e4565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611aeb57611aeb611ac6565b500490565b81810381811115610531576105316119e4565b600082611b1257611b12611ac6565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220586cc78877bb85989026df88334f89387075dada1aaa42e61710d08645573cc864736f6c63430008110033

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

0000000000000000000000000000000000000000000000000011c37937e08000000000000000000000000000000000000000000000000000000000000000138800000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000190000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002768747470733a2f2f6e66746d657461646174612e6c6976652f706978656c76616c68616c6c612f00000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : price (uint256): 5000000000000000
Arg [1] : maxSupply (uint256): 5000
Arg [2] : baseUri (string): https://nftmetadata.live/pixelvalhalla/
Arg [3] : maxMintPerTx (uint256): 25
Arg [4] : isSaleActive (bool): True

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000011c37937e08000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000001388
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000027
Arg [6] : 68747470733a2f2f6e66746d657461646174612e6c6976652f706978656c7661
Arg [7] : 6c68616c6c612f00000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

50229:2253:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31337:305;;;;;;;;;;-1:-1:-1;31337:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;31337:305:0;;;;;;;;34452:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35956:204::-;;;;;;;;;;-1:-1:-1;35956:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;35956:204:0;1533:203:1;35518:372:0;;;;;;;;;;-1:-1:-1;35518:372:0;;;;;:::i;:::-;;:::i;:::-;;50419:37;;;;;;;;;;;;;;;;;;;2324:25:1;;;2312:2;2297:18;50419:37:0;2178:177:1;30577:312:0;;;;;;;;;;-1:-1:-1;30840:12:0;;30630:7;30824:13;:28;30577:312;;36821:170;;;;;;;;;;-1:-1:-1;36821:170:0;;;;;:::i;:::-;;:::i;50357:25::-;;;;;;;;;;;;;;;;52242:237;;;;;;;;;;;;;:::i;37062:185::-;;;;;;;;;;-1:-1:-1;37062:185:0;;;;;:::i;:::-;;:::i;51155:113::-;;;;;;;;;;-1:-1:-1;51155:113:0;;;;;:::i;:::-;;:::i;51278:122::-;;;;;;;;;;-1:-1:-1;51278:122:0;;;;;:::i;:::-;;:::i;34260:125::-;;;;;;;;;;-1:-1:-1;34260:125:0;;;;;:::i;:::-;;:::i;31706:206::-;;;;;;;;;;-1:-1:-1;31706:206:0;;;;;:::i;:::-;;:::i;7522:103::-;;;;;;;;;;;;;:::i;50463:26::-;;;;;;;;;;-1:-1:-1;50463:26:0;;;;;;;;51408:109;;;;;;;;;;-1:-1:-1;51408:109:0;;;;;:::i;:::-;;:::i;50330:20::-;;;;;;;;;;;;;;;;6871:87;;;;;;;;;;-1:-1:-1;6944:6:0;;-1:-1:-1;;;;;6944:6:0;6871:87;;51049:96;;;;;;;;;;-1:-1:-1;51049:96:0;;;;;:::i;:::-;;:::i;34621:104::-;;;;;;;;;;;;;:::i;51877:333::-;;;;;;:::i;:::-;;:::i;36232:287::-;;;;;;;;;;-1:-1:-1;36232:287:0;;;;;:::i;:::-;;:::i;37318:370::-;;;;;;;;;;-1:-1:-1;37318:370:0;;;;;:::i;:::-;;:::i;34796:318::-;;;;;;;;;;-1:-1:-1;34796:318:0;;;;;:::i;:::-;;:::i;36590:164::-;;;;;;;;;;-1:-1:-1;36590:164:0;;;;;:::i;:::-;;:::i;7780:201::-;;;;;;;;;;-1:-1:-1;7780:201:0;;;;;:::i;:::-;;:::i;31337:305::-;31439:4;-1:-1:-1;;;;;;31476:40:0;;-1:-1:-1;;;31476:40:0;;:105;;-1:-1:-1;;;;;;;31533:48:0;;-1:-1:-1;;;31533:48:0;31476:105;:158;;;-1:-1:-1;;;;;;;;;;19787:40:0;;;31598:36;31456:178;31337:305;-1:-1:-1;;31337:305:0:o;34452:100::-;34506:13;34539:5;34532:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34452:100;:::o;35956:204::-;36024:7;36049:16;36057:7;36049;:16::i;:::-;36044:64;;36074:34;;-1:-1:-1;;;36074:34:0;;;;;;;;;;;36044:64;-1:-1:-1;36128:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;36128:24:0;;35956:204::o;35518:372::-;35591:13;35607:24;35623:7;35607:15;:24::i;:::-;35591:40;;35652:5;-1:-1:-1;;;;;35646:11:0;:2;-1:-1:-1;;;;;35646:11:0;;35642:48;;35666:24;;-1:-1:-1;;;35666:24:0;;;;;;;;;;;35642:48;5675:10;-1:-1:-1;;;;;35707:21:0;;;35703:139;;35734:37;35751:5;5675:10;36590:164;:::i;35734:37::-;35730:112;;35795:35;;-1:-1:-1;;;35795:35:0;;;;;;;;;;;35730:112;35854:28;35863:2;35867:7;35876:5;35854:8;:28::i;:::-;35580:310;35518:372;;:::o;36821:170::-;36955:28;36965:4;36971:2;36975:7;36955:9;:28::i;52242:237::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;;;;;;;;;1845:1:::1;2443:7;;:19:::0;2435:63:::1;;;::::0;-1:-1:-1;;;2435:63:0;;6603:2:1;2435:63:0::1;::::0;::::1;6585:21:1::0;6642:2;6622:18;;;6615:30;6681:33;6661:18;;;6654:61;6732:18;;2435:63:0::1;6401:355:1::0;2435:63:0::1;1845:1;2576:7;:18:::0;52321:21:::2;52355:116;52395:42;52321:21:::0;52355:17:::2;:116::i;:::-;-1:-1:-1::0;1801:1:0::1;2755:7;:22:::0;52242:237::o;37062:185::-;37200:39;37217:4;37223:2;37227:7;37200:39;;;;;;;;;;;;:16;:39::i;51155:113::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;51235:8:::1;:25;51246:14:::0;51235:8;:25:::1;:::i;:::-;;51155:113:::0;:::o;51278:122::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;51355:22:::1;:37:::0;51278:122::o;34260:125::-;34324:7;34351:21;34364:7;34351:12;:21::i;:::-;:26;;34260:125;-1:-1:-1;;34260:125:0:o;31706:206::-;31770:7;-1:-1:-1;;;;;31794:19:0;;31790:60;;31822:28;;-1:-1:-1;;;31822:28:0;;;;;;;;;;;31790:60;-1:-1:-1;;;;;;31876:19:0;;;;;:12;:19;;;;;:27;;;;31706:206::o;7522:103::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;7587:30:::1;7614:1;7587:18;:30::i;:::-;7522:103::o:0;51408:109::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;51480:14:::1;:29:::0;;-1:-1:-1;;51480:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51408:109::o;51049:96::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;51118:5:::1;:19:::0;51049:96::o;34621:104::-;34677:13;34710:7;34703:14;;;;;:::i;51877:333::-;51969:11;51637:1;51623:11;:15;:56;;;;;51657:22;;51642:11;:37;;51623:56;51601:126;;;;-1:-1:-1;;;51601:126:0;;9167:2:1;51601:126:0;;;9149:21:1;9206:2;9186:18;;;9179:30;-1:-1:-1;;;9225:18:1;;;9218:50;9285:18;;51601:126:0;8965:344:1;51601:126:0;51791:10;;51776:11;51760:13;;:27;;;;:::i;:::-;:41;;51738:111;;;;-1:-1:-1;;;51738:111:0;;9778:2:1;51738:111:0;;;9760:21:1;9817:2;9797:18;;;9790:30;-1:-1:-1;;;9836:18:1;;;9829:50;9896:18;;51738:111:0;9576:344:1;51738:111:0;52006:14:::1;::::0;::::1;;51998:46;;;::::0;-1:-1:-1;;;51998:46:0;;10127:2:1;51998:46:0::1;::::0;::::1;10109:21:1::0;10166:2;10146:18;;;10139:30;-1:-1:-1;;;10185:18:1;;;10178:49;10244:18;;51998:46:0::1;9925:343:1::0;51998:46:0::1;52057:13;52081:11;52073:5;;:19;;;;:::i;:::-;52057:35;;52126:5;52113:9;:18;;52105:50;;;::::0;-1:-1:-1;;;52105:50:0;;10648:2:1;52105:50:0::1;::::0;::::1;10630:21:1::0;10687:2;10667:18;;;10660:30;-1:-1:-1;;;10706:18:1;;;10699:49;10765:18;;52105:50:0::1;10446:343:1::0;52105:50:0::1;52168:34;52178:10;52190:11;52168:9;:34::i;36232:287::-:0;5675:10;-1:-1:-1;;;;;36331:24:0;;;36327:54;;36364:17;;-1:-1:-1;;;36364:17:0;;;;;;;;;;;36327:54;5675:10;36394:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;36394:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;36394:53:0;;;;;;;;;;36463:48;;540:41:1;;;36394:42:0;;5675:10;36463:48;;513:18:1;36463:48:0;;;;;;;36232:287;;:::o;37318:370::-;37485:28;37495:4;37501:2;37505:7;37485:9;:28::i;:::-;-1:-1:-1;;;;;37528:13:0;;9867:19;:23;37524:157;;37549:56;37580:4;37586:2;37590:7;37599:5;37549:30;:56::i;:::-;37545:136;;37629:40;;-1:-1:-1;;;37629:40:0;;;;;;;;;;;37545:136;37318:370;;;;:::o;34796:318::-;34869:13;34900:16;34908:7;34900;:16::i;:::-;34895:59;;34925:29;;-1:-1:-1;;;34925:29:0;;;;;;;;;;;34895:59;34967:21;34991:10;:8;:10::i;:::-;34967:34;;35025:7;35019:21;35044:1;35019:26;:87;;;;;;;;;;;;;;;;;35072:7;35081:18;:7;:16;:18::i;:::-;35055:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35019:87;35012:94;34796:318;-1:-1:-1;;;34796:318:0:o;36590:164::-;-1:-1:-1;;;;;36711:25:0;;;36687:4;36711:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36590:164::o;7780:201::-;6944:6;;-1:-1:-1;;;;;6944:6:0;5675:10;7091:23;7083:68;;;;-1:-1:-1;;;7083:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7869:22:0;::::1;7861:73;;;::::0;-1:-1:-1;;;7861:73:0;;11497:2:1;7861:73:0::1;::::0;::::1;11479:21:1::0;11536:2;11516:18;;;11509:30;11575:34;11555:18;;;11548:62;-1:-1:-1;;;11626:18:1;;;11619:36;11672:19;;7861:73:0::1;11295:402:1::0;7861:73:0::1;7945:28;7964:8;7945:18;:28::i;:::-;7780:201:::0;:::o;37943:174::-;38000:4;38064:13;;38054:7;:23;38024:85;;;;-1:-1:-1;;38082:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;38082:27:0;;;;38081:28;;37943:174::o;47165:196::-;47280:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;47280:29:0;-1:-1:-1;;;;;47280:29:0;;;;;;;;;47325:28;;47280:24;;47325:28;;;;;;;47165:196;;;:::o;42113:2130::-;42228:35;42266:21;42279:7;42266:12;:21::i;:::-;42228:59;;42326:4;-1:-1:-1;;;;;42304:26:0;:13;:18;;;-1:-1:-1;;;;;42304:26:0;;42300:67;;42339:28;;-1:-1:-1;;;42339:28:0;;;;;;;;;;;42300:67;42380:22;5675:10;-1:-1:-1;;;;;42406:20:0;;;;:73;;-1:-1:-1;42443:36:0;42460:4;5675:10;36590:164;:::i;42443:36::-;42406:126;;;-1:-1:-1;5675:10:0;42496:20;42508:7;42496:11;:20::i;:::-;-1:-1:-1;;;;;42496:36:0;;42406:126;42380:153;;42551:17;42546:66;;42577:35;;-1:-1:-1;;;42577:35:0;;;;;;;;;;;42546:66;-1:-1:-1;;;;;42627:16:0;;42623:52;;42652:23;;-1:-1:-1;;;42652:23:0;;;;;;;;;;;42623:52;42796:35;42813:1;42817:7;42826:4;42796:8;:35::i;:::-;-1:-1:-1;;;;;43127:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;43127:31:0;;;;;;;-1:-1:-1;;43127:31:0;;;;;;;43173:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;43173:29:0;;;;;;;;;;;43253:20;;;:11;:20;;;;;;43288:18;;-1:-1:-1;;;;;;43321:49:0;;;;-1:-1:-1;;;43354:15:0;43321:49;;;;;;;;;;43644:11;;43704:24;;;;;43747:13;;43253:20;;43704:24;;43747:13;43743:384;;43957:13;;43942:11;:28;43938:174;;43995:20;;44064:28;;;;44038:54;;-1:-1:-1;;;44038:54:0;-1:-1:-1;;;;;;44038:54:0;;;-1:-1:-1;;;;;43995:20:0;;44038:54;;;;43938:174;43102:1036;;;44174:7;44170:2;-1:-1:-1;;;;;44155:27:0;44164:4;-1:-1:-1;;;;;44155:27:0;;;;;;;;;;;42217:2026;;42113:2130;;;:::o;10833:317::-;10948:6;10923:21;:31;;10915:73;;;;-1:-1:-1;;;10915:73:0;;11904:2:1;10915:73:0;;;11886:21:1;11943:2;11923:18;;;11916:30;11982:31;11962:18;;;11955:59;12031:18;;10915:73:0;11702:353:1;10915:73:0;11002:12;11020:9;-1:-1:-1;;;;;11020:14:0;11042:6;11020:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11001:52;;;11072:7;11064:78;;;;-1:-1:-1;;;11064:78:0;;12472:2:1;11064:78:0;;;12454:21:1;12511:2;12491:18;;;12484:30;12550:34;12530:18;;;12523:62;12621:28;12601:18;;;12594:56;12667:19;;11064:78:0;12270:422:1;33087:1111:0;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;33198:7:0;33283:13;;33276:4;:20;33272:859;;;33317:31;33351:17;;;:11;:17;;;;;;;;;33317:51;;;;;;;;;-1:-1:-1;;;;;33317:51:0;;;;-1:-1:-1;;;33317:51:0;;;;;;;;;;;-1:-1:-1;;;33317:51:0;;;;;;;;;;;;;;33387:729;;33437:14;;-1:-1:-1;;;;;33437:28:0;;33433:101;;33501:9;33087:1111;-1:-1:-1;;;33087:1111:0:o;33433:101::-;-1:-1:-1;;;33876:6:0;33921:17;;;;:11;:17;;;;;;;;;33909:29;;;;;;;;;-1:-1:-1;;;;;33909:29:0;;;;;-1:-1:-1;;;33909:29:0;;;;;;;;;;;-1:-1:-1;;;33909:29:0;;;;;;;;;;;;;33969:28;33965:109;;34037:9;33087:1111;-1:-1:-1;;;33087:1111:0:o;33965:109::-;33836:261;;;33298:833;33272:859;34159:31;;-1:-1:-1;;;34159:31:0;;;;;;;;;;;8141:191;8234:6;;;-1:-1:-1;;;;;8251:17:0;;;-1:-1:-1;;;;;;8251:17:0;;;;;;;8284:40;;8234:6;;;8251:17;8234:6;;8284:40;;8215:16;;8284:40;8204:128;8141:191;:::o;38201:104::-;38270:27;38280:2;38284:8;38270:27;;;;;;;;;;;;:9;:27::i;47853:667::-;48037:72;;-1:-1:-1;;;48037:72:0;;48016:4;;-1:-1:-1;;;;;48037:36:0;;;;;:72;;5675:10;;48088:4;;48094:7;;48103:5;;48037:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48037:72:0;;;;;;;;-1:-1:-1;;48037:72:0;;;;;;;;;;;;:::i;:::-;;;48033:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48271:6;:13;48288:1;48271:18;48267:235;;48317:40;;-1:-1:-1;;;48317:40:0;;;;;;;;;;;48267:235;48460:6;48454:13;48445:6;48441:2;48437:15;48430:38;48033:480;-1:-1:-1;;;;;;48156:55:0;-1:-1:-1;;;48156:55:0;;-1:-1:-1;48033:480:0;47853:667;;;;;;:::o;50909:109::-;50969:13;51002:8;50995:15;;;;;:::i;3157:723::-;3213:13;3434:5;3443:1;3434:10;3430:53;;-1:-1:-1;;3461:10:0;;;;;;;;;;;;-1:-1:-1;;;3461:10:0;;;;;3157:723::o;3430:53::-;3508:5;3493:12;3549:78;3556:9;;3549:78;;3582:8;;;;:::i;:::-;;-1:-1:-1;3605:10:0;;-1:-1:-1;3613:2:0;3605:10;;:::i;:::-;;;3549:78;;;3637:19;3669:6;3659:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3659:17:0;;3637:39;;3687:154;3694:10;;3687:154;;3721:11;3731:1;3721:11;;:::i;:::-;;-1:-1:-1;3790:10:0;3798:2;3790:5;:10;:::i;:::-;3777:24;;:2;:24;:::i;:::-;3764:39;;3747:6;3754;3747:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3747:56:0;;;;;;;;-1:-1:-1;3818:11:0;3827:2;3818:11;;:::i;:::-;;;3687:154;;38678:1749;38801:20;38824:13;-1:-1:-1;;;;;38852:16:0;;38848:48;;38877:19;;-1:-1:-1;;;38877:19:0;;;;;;;;;;;38848:48;38911:8;38923:1;38911:13;38907:44;;38933:18;;-1:-1:-1;;;38933:18:0;;;;;;;;;;;38907:44;-1:-1:-1;;;;;39302:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;39361:49:0;;39302:44;;;;;;;;39361:49;;;;-1:-1:-1;;39302:44:0;;;;;;39361:49;;;;;;;;;;;;;;;;39427:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;39477:66:0;;;-1:-1:-1;;;39527:15:0;39477:66;;;;;;;;;;;;;39427:25;;39624:23;;;;9867:19;:23;39664:631;;39704:313;39735:38;;39760:12;;-1:-1:-1;;;;;39735:38:0;;;39752:1;;39735:38;;39752:1;;39735:38;39801:69;39840:1;39844:2;39848:14;;;;;;39864:5;39801:30;:69::i;:::-;39796:174;;39906:40;;-1:-1:-1;;;39906:40:0;;;;;;;;;;;39796:174;40012:3;39997:12;:18;39704:313;;40098:12;40081:13;;:29;40077:43;;40112:8;;;40077:43;39664:631;;;40161:119;40192:40;;40217:14;;;;;-1:-1:-1;;;;;40192:40:0;;;40209:1;;40192:40;;40209:1;;40192:40;40275:3;40260:12;:18;40161:119;;39664:631;-1:-1:-1;40309:13:0;:28;;;40359:60;;40392:2;40396:12;40410:8;40359:60;:::i;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:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:127::-;2754:10;2749:3;2745:20;2742:1;2735:31;2785:4;2782:1;2775:15;2809:4;2806:1;2799:15;2825:632;2890:5;2920:18;2961:2;2953:6;2950:14;2947:40;;;2967:18;;:::i;:::-;3042:2;3036:9;3010:2;3096:15;;-1:-1:-1;;3092:24:1;;;3118:2;3088:33;3084:42;3072:55;;;3142:18;;;3162:22;;;3139:46;3136:72;;;3188:18;;:::i;:::-;3228:10;3224:2;3217:22;3257:6;3248:15;;3287:6;3279;3272:22;3327:3;3318:6;3313:3;3309:16;3306:25;3303:45;;;3344:1;3341;3334:12;3303:45;3394:6;3389:3;3382:4;3374:6;3370:17;3357:44;3449:1;3442:4;3433:6;3425;3421:19;3417:30;3410:41;;;;2825:632;;;;;:::o;3462:451::-;3531:6;3584:2;3572:9;3563:7;3559:23;3555:32;3552:52;;;3600:1;3597;3590:12;3552:52;3640:9;3627:23;3673:18;3665:6;3662:30;3659:50;;;3705:1;3702;3695:12;3659:50;3728:22;;3781:4;3773:13;;3769:27;-1:-1:-1;3759:55:1;;3810:1;3807;3800:12;3759:55;3833:74;3899:7;3894:2;3881:16;3876:2;3872;3868:11;3833:74;:::i;3918:186::-;3977:6;4030:2;4018:9;4009:7;4005:23;4001:32;3998:52;;;4046:1;4043;4036:12;3998:52;4069:29;4088:9;4069:29;:::i;4109:160::-;4174:20;;4230:13;;4223:21;4213:32;;4203:60;;4259:1;4256;4249:12;4274:180;4330:6;4383:2;4371:9;4362:7;4358:23;4354:32;4351:52;;;4399:1;4396;4389:12;4351:52;4422:26;4438:9;4422:26;:::i;4459:254::-;4524:6;4532;4585:2;4573:9;4564:7;4560:23;4556:32;4553:52;;;4601:1;4598;4591:12;4553:52;4624:29;4643:9;4624:29;:::i;:::-;4614:39;;4672:35;4703:2;4692:9;4688:18;4672:35;:::i;:::-;4662:45;;4459:254;;;;;:::o;4718:667::-;4813:6;4821;4829;4837;4890:3;4878:9;4869:7;4865:23;4861:33;4858:53;;;4907:1;4904;4897:12;4858:53;4930:29;4949:9;4930:29;:::i;:::-;4920:39;;4978:38;5012:2;5001:9;4997:18;4978:38;:::i;:::-;4968:48;;5063:2;5052:9;5048:18;5035:32;5025:42;;5118:2;5107:9;5103:18;5090:32;5145:18;5137:6;5134:30;5131:50;;;5177:1;5174;5167:12;5131:50;5200:22;;5253:4;5245:13;;5241:27;-1:-1:-1;5231:55:1;;5282:1;5279;5272:12;5231:55;5305:74;5371:7;5366:2;5353:16;5348:2;5344;5340:11;5305:74;:::i;:::-;5295:84;;;4718:667;;;;;;;:::o;5390:260::-;5458:6;5466;5519:2;5507:9;5498:7;5494:23;5490:32;5487:52;;;5535:1;5532;5525:12;5487:52;5558:29;5577:9;5558:29;:::i;:::-;5548:39;;5606:38;5640:2;5629:9;5625:18;5606:38;:::i;5655:380::-;5734:1;5730:12;;;;5777;;;5798:61;;5852:4;5844:6;5840:17;5830:27;;5798:61;5905:2;5897:6;5894:14;5874:18;5871:38;5868:161;;5951:10;5946:3;5942:20;5939:1;5932:31;5986:4;5983:1;5976:15;6014:4;6011:1;6004:15;5868:161;;5655:380;;;:::o;6040:356::-;6242:2;6224:21;;;6261:18;;;6254:30;6320:34;6315:2;6300:18;;6293:62;6387:2;6372:18;;6040:356::o;6887:545::-;6989:2;6984:3;6981:11;6978:448;;;7025:1;7050:5;7046:2;7039:17;7095:4;7091:2;7081:19;7165:2;7153:10;7149:19;7146:1;7142:27;7136:4;7132:38;7201:4;7189:10;7186:20;7183:47;;;-1:-1:-1;7224:4:1;7183:47;7279:2;7274:3;7270:12;7267:1;7263:20;7257:4;7253:31;7243:41;;7334:82;7352:2;7345:5;7342:13;7334:82;;;7397:17;;;7378:1;7367:13;7334:82;;;7338:3;;;6887:545;;;:::o;7608:1352::-;7734:3;7728:10;7761:18;7753:6;7750:30;7747:56;;;7783:18;;:::i;:::-;7812:97;7902:6;7862:38;7894:4;7888:11;7862:38;:::i;:::-;7856:4;7812:97;:::i;:::-;7964:4;;8028:2;8017:14;;8045:1;8040:663;;;;8747:1;8764:6;8761:89;;;-1:-1:-1;8816:19:1;;;8810:26;8761:89;-1:-1:-1;;7565:1:1;7561:11;;;7557:24;7553:29;7543:40;7589:1;7585:11;;;7540:57;8863:81;;8010:944;;8040:663;6834:1;6827:14;;;6871:4;6858:18;;-1:-1:-1;;8076:20:1;;;8194:236;8208:7;8205:1;8202:14;8194:236;;;8297:19;;;8291:26;8276:42;;8389:27;;;;8357:1;8345:14;;;;8224:19;;8194:236;;;8198:3;8458:6;8449:7;8446:19;8443:201;;;8519:19;;;8513:26;-1:-1:-1;;8602:1:1;8598:14;;;8614:3;8594:24;8590:37;8586:42;8571:58;8556:74;;8443:201;-1:-1:-1;;;;;8690:1:1;8674:14;;;8670:22;8657:36;;-1:-1:-1;7608:1352:1:o;9314:127::-;9375:10;9370:3;9366:20;9363:1;9356:31;9406:4;9403:1;9396:15;9430:4;9427:1;9420:15;9446:125;9511:9;;;9532:10;;;9529:36;;;9545:18;;:::i;10273:168::-;10346:9;;;10377;;10394:15;;;10388:22;;10374:37;10364:71;;10415:18;;:::i;10794:496::-;10973:3;11011:6;11005:13;11027:66;11086:6;11081:3;11074:4;11066:6;11062:17;11027:66;:::i;:::-;11156:13;;11115:16;;;;11178:70;11156:13;11115:16;11225:4;11213:17;;11178:70;:::i;:::-;11264:20;;10794:496;-1:-1:-1;;;;10794:496:1:o;12697:489::-;-1:-1:-1;;;;;12966:15:1;;;12948:34;;13018:15;;13013:2;12998:18;;12991:43;13065:2;13050:18;;13043:34;;;13113:3;13108:2;13093:18;;13086:31;;;12891:4;;13134:46;;13160:19;;13152:6;13134:46;:::i;:::-;13126:54;12697:489;-1:-1:-1;;;;;;12697:489:1:o;13191:249::-;13260:6;13313:2;13301:9;13292:7;13288:23;13284:32;13281:52;;;13329:1;13326;13319:12;13281:52;13361:9;13355:16;13380:30;13404:5;13380:30;:::i;13445:135::-;13484:3;13505:17;;;13502:43;;13525:18;;:::i;:::-;-1:-1:-1;13572:1:1;13561:13;;13445:135::o;13585:127::-;13646:10;13641:3;13637:20;13634:1;13627:31;13677:4;13674:1;13667:15;13701:4;13698:1;13691:15;13717:120;13757:1;13783;13773:35;;13788:18;;:::i;:::-;-1:-1:-1;13822:9:1;;13717:120::o;13842:128::-;13909:9;;;13930:11;;;13927:37;;;13944:18;;:::i;13975:112::-;14007:1;14033;14023:35;;14038:18;;:::i;:::-;-1:-1:-1;14072:9:1;;13975:112::o;14092:127::-;14153:10;14148:3;14144:20;14141:1;14134:31;14184:4;14181:1;14174:15;14208:4;14205:1;14198:15

Swarm Source

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