ETH Price: $3,375.48 (+0.61%)
Gas: 9 Gwei

Token

The Lions NFT (LIONS)
 

Overview

Max Total Supply

871 LIONS

Holders

176

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 LIONS
0xf5322fe59151d63edc2284693d94682d38b57cb1
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:
TheLionsNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-31
*/

/**
 *Submitted for verification at Etherscan.io on 2022-10-21
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol
/**
Where am i?.......                                   
                                                                           
*/

// 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/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 v4.4.1 (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 `IERC721.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 v4.4.1 (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`, 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 Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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

// 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: contracts/new.sol




pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @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, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

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

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

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view 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 && 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 && !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() && !_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;
    }

    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 {
        _mint(to, quantity, _data, true);
    }

    /**
     * @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,
        bytes memory _data,
        bool safe
    ) 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 (safe && 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 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 This is 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 {}
}

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
    pragma solidity ^0.8.7;
    
    contract TheLionsNFT is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;


  string private uriPrefix = "ipfs://bafybeibelny7vd7ex2lfhtmptozxxo7gndxoz6voabqbi3gb6j4q2hmujq/";
  string private uriSuffix = ".json";
  string public hiddenURL;

  
  

  uint256 public cost = 0.001 ether;
 
  

  uint16 public maxSupply = 8888;
  uint8 public maxMintAmountPerTx = 10;
   uint8 public maxMintAmountPerWallet = 10;
    uint8 public maxFreeMintAmountPerWallet = 1;
    uint256 public freeNFTAlreadyMinted = 0;
     uint256 public  NUM_FREE_MINTS = 8888;
                                                             
 
  bool public paused = true;
  bool public reveal = true;

   mapping (address => uint8) public NFTPerPublicAddress;

 
  
  
 
  

    constructor(
    string memory _tokenName,
    string memory _tokenSymbol,
    string memory _hiddenMetadataUri
  ) ERC721A(_tokenName, _tokenSymbol) {
    
  }

   modifier callerIsUser() {
    require(tx.origin == msg.sender, "The caller is another contract");
    _;
  }
 
 
  function mint(uint256 _mintAmount)
      external
      payable
      callerIsUser
  {
    require(!paused, "The contract is paused!");
    require(totalSupply() + _mintAmount < maxSupply + 1, "No more");
     require (balanceOf(msg.sender) + _mintAmount <= maxMintAmountPerWallet, "max NFT per address exceeded");
    

    if(freeNFTAlreadyMinted + _mintAmount > NUM_FREE_MINTS){
        require(
            (cost * _mintAmount) <= msg.value,
            "Incorrect ETH value sent"
        );
    }
     else {
        if (balanceOf(msg.sender) + _mintAmount > maxFreeMintAmountPerWallet) {
        require(
            (cost * _mintAmount) <= msg.value,
            "Incorrect ETH value sent"
        );
        require(
            _mintAmount <= maxMintAmountPerTx,
            "Max mints per transaction exceeded"
        );
        } else {
            require(
                _mintAmount <= maxFreeMintAmountPerWallet,
                "Max mints per transaction exceeded"
            );
            freeNFTAlreadyMinted += _mintAmount;
        }
    }
    _safeMint(msg.sender, _mintAmount);
  }

  function Reserve(uint16 _mintAmount, address _receiver) external onlyOwner {
     uint16 totalSupply = uint16(totalSupply());
    require(totalSupply + _mintAmount <= maxSupply, "Excedes max supply.");
     _safeMint(_receiver , _mintAmount);
     delete _mintAmount;
     delete _receiver;
     delete totalSupply;
  }

  function Airdrop(uint8 _amountPerAddress, address[] calldata addresses) external onlyOwner {
     uint16 totalSupply = uint16(totalSupply());
     uint totalAmount =   _amountPerAddress * addresses.length;
    require(totalSupply + totalAmount <= maxSupply, "Excedes max supply.");
     for (uint256 i = 0; i < addresses.length; i++) {
            _safeMint(addresses[i], _amountPerAddress);
        }

     delete _amountPerAddress;
     delete totalSupply;
  }

 

  function setMaxSupply(uint16 _maxSupply) external onlyOwner {
      maxSupply = _maxSupply;
  }



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

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



 function setFreeMaxLimitPerAddress(uint8 _limit) external onlyOwner{
    maxFreeMintAmountPerWallet = _limit;
   delete _limit;

}

    
   function seturiSuffix(string memory _uriSuffix) external onlyOwner {
    uriSuffix = _uriSuffix;
  }


  function setUriPrefix(string memory _uriPrefix) external onlyOwner {
    uriPrefix = _uriPrefix;
  }
   function setHiddenUri(string memory _uriPrefix) external onlyOwner {
    hiddenURL = _uriPrefix;
  }
function setNumFreeMints(uint256 _numfreemints)
      external
      onlyOwner
  {
      NUM_FREE_MINTS = _numfreemints;
  }

  function setPaused() external onlyOwner {
    paused = !paused;

  }

  function setCost(uint _cost) external onlyOwner{
      cost = _cost;

  }

 function setRevealed() external onlyOwner{
     reveal = !reveal;
 }

  function setMaxMintAmountPerTx(uint8 _maxtx) external onlyOwner{
      maxMintAmountPerTx = _maxtx;

  }

 

  function withdraw() public onlyOwner nonReentrant {
    // This will transfer the remaining contract balance to the owner.
    // Do not remove this otherwise you will not be able to withdraw the funds.
    // =============================================================================
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
    // =============================================================================
  }


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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint8","name":"_amountPerAddress","type":"uint8"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerPublicAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeNFTAlreadyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setFreeMaxLimitPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxtx","type":"uint8"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxSupply","type":"uint16"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"seturiSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

61010060405260436080818152906200291b60a03980516200002a91600a9160209091019062000166565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200005991600b9162000166565b5066038d7ea4c68000600d55600e805464ffffffffff191664010a0a22b81790556000600f556122b86010556011805461ffff1916610101179055348015620000a157600080fd5b506040516200295e3803806200295e833981016040819052620000c491620002c3565b825183908390620000dd90600290602085019062000166565b508051620000f390600390602084019062000166565b5050600160005550620001063362000114565b5050600160095550620003a7565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001749062000354565b90600052602060002090601f016020900481019282620001985760008555620001e3565b82601f10620001b357805160ff1916838001178555620001e3565b82800160010185558215620001e3579182015b82811115620001e3578251825591602001919060010190620001c6565b50620001f1929150620001f5565b5090565b5b80821115620001f15760008155600101620001f6565b600082601f8301126200021e57600080fd5b81516001600160401b03808211156200023b576200023b62000391565b604051601f8301601f19908116603f0116810190828211818310171562000266576200026662000391565b816040528381526020925086838588010111156200028357600080fd5b600091505b83821015620002a7578582018301518183018401529082019062000288565b83821115620002b95760008385830101525b9695505050505050565b600080600060608486031215620002d957600080fd5b83516001600160401b0380821115620002f157600080fd5b620002ff878388016200020c565b945060208601519150808211156200031657600080fd5b62000324878388016200020c565b935060408601519150808211156200033b57600080fd5b506200034a868287016200020c565b9150509250925092565b600181811c908216806200036957607f821691505b602082108114156200038b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61256480620003b76000396000f3fe6080604052600436106102515760003560e01c806370a0823111610139578063aa062290116100b6578063d5abeb011161007a578063d5abeb01146106bb578063e94053c7146106e9578063e985e9c514610719578063eef440af14610762578063f2fde38b14610777578063f8bf51721461079757600080fd5b8063aa0622901461061a578063b88d4fde1461063a578063bc951b911461065a578063c87b56dd1461067b578063cffb6e201461069b57600080fd5b806395d89b41116100fd57806395d89b411461059d578063982d669e146105b2578063a0712d68146105c8578063a22cb465146105db578063a475b5dd146105fb57600080fd5b806370a08231146104f8578063715018a6146105185780637ec4a6591461052d5780638da5cb5b1461054d57806394354fd01461056b57600080fd5b806323b872dd116101d25780633ccfd60b116101965780633ccfd60b1461044957806342842e0e1461045e57806344a0d68a1461047e5780634d9c18481461049e5780635c975abb146104be5780636352211e146104d857600080fd5b806323b872dd146103bf5780632f6f98e1146103df578063305ae775146103ff57806337a66d851461041f5780633bd649681461043457600080fd5b80630a00ae83116102195780630a00ae83146103275780631067fcc71461034757806313faede61461036757806318160ddd1461038b578063193ad7b4146103a957600080fd5b806301ffc9a71461025657806306421c2f1461028b57806306fdde03146102ad578063081812fc146102cf578063095ea7b314610307575b600080fd5b34801561026257600080fd5b50610276610271366004612077565b6107b9565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a63660046120fa565b61080b565b005b3480156102b957600080fd5b506102c2610856565b6040516102829190612318565b3480156102db57600080fd5b506102ef6102ea366004612131565b6108e8565b6040516001600160a01b039091168152602001610282565b34801561031357600080fd5b506102ab61032236600461204d565b61092c565b34801561033357600080fd5b506102ab610342366004612131565b6109ba565b34801561035357600080fd5b506102ab6103623660046120b1565b6109e9565b34801561037357600080fd5b5061037d600d5481565b604051908152602001610282565b34801561039757600080fd5b5061037d600154600054036000190190565b3480156103b557600080fd5b5061037d600f5481565b3480156103cb57600080fd5b506102ab6103da366004611f59565b610a2a565b3480156103eb57600080fd5b506102ab6103fa366004612115565b610a35565b34801561040b57600080fd5b506102ab61041a3660046120b1565b610adc565b34801561042b57600080fd5b506102ab610b19565b34801561044057600080fd5b506102ab610b57565b34801561045557600080fd5b506102ab610b9e565b34801561046a57600080fd5b506102ab610479366004611f59565b610c99565b34801561048a57600080fd5b506102ab610499366004612131565b610cb4565b3480156104aa57600080fd5b506102ab6104b936600461214a565b610ce3565b3480156104ca57600080fd5b506011546102769060ff1681565b3480156104e457600080fd5b506102ef6104f3366004612131565b610d2f565b34801561050457600080fd5b5061037d610513366004611f0b565b610d41565b34801561052457600080fd5b506102ab610d90565b34801561053957600080fd5b506102ab6105483660046120b1565b610dc6565b34801561055957600080fd5b506008546001600160a01b03166102ef565b34801561057757600080fd5b50600e5461058b9062010000900460ff1681565b60405160ff9091168152602001610282565b3480156105a957600080fd5b506102c2610e03565b3480156105be57600080fd5b5061037d60105481565b6102ab6105d6366004612131565b610e12565b3480156105e757600080fd5b506102ab6105f6366004612011565b6110fd565b34801561060757600080fd5b5060115461027690610100900460ff1681565b34801561062657600080fd5b506102ab61063536600461214a565b611193565b34801561064657600080fd5b506102ab610655366004611f95565b6111db565b34801561066657600080fd5b50600e5461058b906301000000900460ff1681565b34801561068757600080fd5b506102c2610696366004612131565b61122c565b3480156106a757600080fd5b506102ab6106b6366004612165565b61139b565b3480156106c757600080fd5b50600e546106d69061ffff1681565b60405161ffff9091168152602001610282565b3480156106f557600080fd5b5061058b610704366004611f0b565b60126020526000908152604090205460ff1681565b34801561072557600080fd5b50610276610734366004611f26565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561076e57600080fd5b506102c261149f565b34801561078357600080fd5b506102ab610792366004611f0b565b61152d565b3480156107a357600080fd5b50600e5461058b90640100000000900460ff1681565b60006001600160e01b031982166380ac58cd60e01b14806107ea57506001600160e01b03198216635b5e139f60e01b145b8061080557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461083e5760405162461bcd60e51b81526004016108359061236d565b60405180910390fd5b600e805461ffff191661ffff92909216919091179055565b60606002805461086590612456565b80601f016020809104026020016040519081016040528092919081815260200182805461089190612456565b80156108de5780601f106108b3576101008083540402835291602001916108de565b820191906000526020600020905b8154815290600101906020018083116108c157829003601f168201915b5050505050905090565b60006108f3826115c5565b610910576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061093782610d2f565b9050806001600160a01b0316836001600160a01b0316141561096c5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061098c575061098a8133610734565b155b156109aa576040516367d9dca160e11b815260040160405180910390fd5b6109b58383836115fe565b505050565b6008546001600160a01b031633146109e45760405162461bcd60e51b81526004016108359061236d565b601055565b6008546001600160a01b03163314610a135760405162461bcd60e51b81526004016108359061236d565b8051610a2690600c906020840190611dbd565b5050565b6109b583838361165a565b6008546001600160a01b03163314610a5f5760405162461bcd60e51b81526004016108359061236d565b6000610a72600154600054036000190190565b600e5490915061ffff16610a8684836123a2565b61ffff161115610ace5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610835565b6109b5828461ffff1661184a565b6008546001600160a01b03163314610b065760405162461bcd60e51b81526004016108359061236d565b8051610a2690600b906020840190611dbd565b6008546001600160a01b03163314610b435760405162461bcd60e51b81526004016108359061236d565b6011805460ff19811660ff90911615179055565b6008546001600160a01b03163314610b815760405162461bcd60e51b81526004016108359061236d565b6011805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b03163314610bc85760405162461bcd60e51b81526004016108359061236d565b60026009541415610c1b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610835565b60026009556000610c346008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c7e576040519150601f19603f3d011682016040523d82523d6000602084013e610c83565b606091505b5050905080610c9157600080fd5b506001600955565b6109b5838383604051806020016040528060008152506111db565b6008546001600160a01b03163314610cde5760405162461bcd60e51b81526004016108359061236d565b600d55565b6008546001600160a01b03163314610d0d5760405162461bcd60e51b81526004016108359061236d565b600e805460ff9092166401000000000264ff0000000019909216919091179055565b6000610d3a82611864565b5192915050565b60006001600160a01b038216610d6a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610dba5760405162461bcd60e51b81526004016108359061236d565b610dc4600061198d565b565b6008546001600160a01b03163314610df05760405162461bcd60e51b81526004016108359061236d565b8051610a2690600a906020840190611dbd565b60606003805461086590612456565b323314610e615760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610835565b60115460ff1615610eb45760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610835565b600e54610ec69061ffff1660016123a2565b61ffff1681610edc600154600054036000190190565b610ee691906123c8565b10610f1d5760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b6044820152606401610835565b600e546301000000900460ff1681610f3433610d41565b610f3e91906123c8565b1115610f8c5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610835565b60105481600f54610f9d91906123c8565b1115611000573481600d54610fb291906123f4565b1115610ffb5760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b6044820152606401610835565b6110f0565b600e54640100000000900460ff168161101833610d41565b61102291906123c8565b11156110ab573481600d5461103791906123f4565b11156110805760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b6044820152606401610835565b600e5462010000900460ff16811115610ffb5760405162461bcd60e51b81526004016108359061232b565b600e54640100000000900460ff168111156110d85760405162461bcd60e51b81526004016108359061232b565b80600f60008282546110ea91906123c8565b90915550505b6110fa338261184a565b50565b6001600160a01b0382163314156111275760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146111bd5760405162461bcd60e51b81526004016108359061236d565b600e805460ff909216620100000262ff000019909216919091179055565b6111e684848461165a565b6001600160a01b0383163b151580156112085750611206848484846119df565b155b15611226576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060611237826115c5565b61129b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610835565b601154610100900460ff1661133c57600c80546112b790612456565b80601f01602080910402602001604051908101604052809291908181526020018280546112e390612456565b80156113305780601f1061130557610100808354040283529160200191611330565b820191906000526020600020905b81548152906001019060200180831161131357829003601f168201915b50505050509050919050565b6000611346611ad7565b905060008151116113665760405180602001604052806000815250611394565b8061137084611ae6565b600b60405160200161138493929190612217565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146113c55760405162461bcd60e51b81526004016108359061236d565b60006113d8600154600054036000190190565b905060006113e98360ff87166123f4565b600e5490915061ffff9081169061140390839085166123c8565b11156114475760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610835565b60005b8381101561149757611485858583818110611467576114676124ec565b905060200201602081019061147c9190611f0b565b8760ff1661184a565b8061148f81612491565b91505061144a565b505050505050565b600c80546114ac90612456565b80601f01602080910402602001604051908101604052809291908181526020018280546114d890612456565b80156115255780601f106114fa57610100808354040283529160200191611525565b820191906000526020600020905b81548152906001019060200180831161150857829003601f168201915b505050505081565b6008546001600160a01b031633146115575760405162461bcd60e51b81526004016108359061236d565b6001600160a01b0381166115bc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610835565b6110fa8161198d565b6000816001111580156115d9575060005482105b8015610805575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061166582611864565b9050836001600160a01b031681600001516001600160a01b03161461169c5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806116ba57506116ba8533610734565b806116d55750336116ca846108e8565b6001600160a01b0316145b9050806116f557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661171c57604051633a954ecd60e21b815260040160405180910390fd5b611728600084876115fe565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166117fe5760005482146117fe578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610a26828260405180602001604052806000815250611be4565b60408051606081018252600080825260208201819052918101919091528180600111158015611894575060005481105b1561197457600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906119725780516001600160a01b031615611908579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561196d579392505050565b611908565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a149033908990889088906004016122db565b602060405180830381600087803b158015611a2e57600080fd5b505af1925050508015611a5e575060408051601f3d908101601f19168201909252611a5b91810190612094565b60015b611ab9573d808015611a8c576040519150601f19603f3d011682016040523d82523d6000602084013e611a91565b606091505b508051611ab1576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461086590612456565b606081611b0a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b345780611b1e81612491565b9150611b2d9050600a836123e0565b9150611b0e565b60008167ffffffffffffffff811115611b4f57611b4f612502565b6040519080825280601f01601f191660200182016040528015611b79576020820181803683370190505b5090505b8415611acf57611b8e600183612413565b9150611b9b600a866124ac565b611ba69060306123c8565b60f81b818381518110611bbb57611bbb6124ec565b60200101906001600160f81b031916908160001a905350611bdd600a866123e0565b9450611b7d565b6109b583838360016000546001600160a01b038516611c1557604051622e076360e81b815260040160405180910390fd5b83611c335760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611ce557506001600160a01b0387163b15155b15611d6e575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611d3660008884806001019550886119df565b611d53576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611ceb578260005414611d6957600080fd5b611db4565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611d6f575b50600055611843565b828054611dc990612456565b90600052602060002090601f016020900481019282611deb5760008555611e31565b82601f10611e0457805160ff1916838001178555611e31565b82800160010185558215611e31579182015b82811115611e31578251825591602001919060010190611e16565b50611e3d929150611e41565b5090565b5b80821115611e3d5760008155600101611e42565b600067ffffffffffffffff80841115611e7157611e71612502565b604051601f8501601f19908116603f01168101908282118183101715611e9957611e99612502565b81604052809350858152868686011115611eb257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611ee357600080fd5b919050565b803561ffff81168114611ee357600080fd5b803560ff81168114611ee357600080fd5b600060208284031215611f1d57600080fd5b61139482611ecc565b60008060408385031215611f3957600080fd5b611f4283611ecc565b9150611f5060208401611ecc565b90509250929050565b600080600060608486031215611f6e57600080fd5b611f7784611ecc565b9250611f8560208501611ecc565b9150604084013590509250925092565b60008060008060808587031215611fab57600080fd5b611fb485611ecc565b9350611fc260208601611ecc565b925060408501359150606085013567ffffffffffffffff811115611fe557600080fd5b8501601f81018713611ff657600080fd5b61200587823560208401611e56565b91505092959194509250565b6000806040838503121561202457600080fd5b61202d83611ecc565b91506020830135801515811461204257600080fd5b809150509250929050565b6000806040838503121561206057600080fd5b61206983611ecc565b946020939093013593505050565b60006020828403121561208957600080fd5b813561139481612518565b6000602082840312156120a657600080fd5b815161139481612518565b6000602082840312156120c357600080fd5b813567ffffffffffffffff8111156120da57600080fd5b8201601f810184136120eb57600080fd5b611acf84823560208401611e56565b60006020828403121561210c57600080fd5b61139482611ee8565b6000806040838503121561212857600080fd5b611f4283611ee8565b60006020828403121561214357600080fd5b5035919050565b60006020828403121561215c57600080fd5b61139482611efa565b60008060006040848603121561217a57600080fd5b61218384611efa565b9250602084013567ffffffffffffffff808211156121a057600080fd5b818601915086601f8301126121b457600080fd5b8135818111156121c357600080fd5b8760208260051b85010111156121d857600080fd5b6020830194508093505050509250925092565b6000815180845261220381602086016020860161242a565b601f01601f19169290920160200192915050565b60008451602061222a8285838a0161242a565b85519184019161223d8184848a0161242a565b8554920191600090600181811c908083168061225a57607f831692505b85831081141561227857634e487b7160e01b85526022600452602485fd5b80801561228c576001811461229d576122ca565b60ff198516885283880195506122ca565b60008b81526020902060005b858110156122c25781548a8201529084019088016122a9565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061230e908301846121eb565b9695505050505050565b60208152600061139460208301846121eb565b60208082526022908201527f4d6178206d696e747320706572207472616e73616374696f6e20657863656564604082015261195960f21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600061ffff8083168185168083038211156123bf576123bf6124c0565b01949350505050565b600082198211156123db576123db6124c0565b500190565b6000826123ef576123ef6124d6565b500490565b600081600019048311821515161561240e5761240e6124c0565b500290565b600082821015612425576124256124c0565b500390565b60005b8381101561244557818101518382015260200161242d565b838111156112265750506000910152565b600181811c9082168061246a57607f821691505b6020821081141561248b57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124a5576124a56124c0565b5060010190565b6000826124bb576124bb6124d6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110fa57600080fdfea2646970667358221220e59471a0dff3872feceecf97dbd95d3b6f5f75a43dd16014951872cd0d62f91d64736f6c63430008070033697066733a2f2f6261667962656962656c6e79377664376578326c6668746d70746f7a78786f37676e64786f7a36766f6162716269336762366a347132686d756a712f000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d546865204c696f6e73204e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054c494f4e5300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c806370a0823111610139578063aa062290116100b6578063d5abeb011161007a578063d5abeb01146106bb578063e94053c7146106e9578063e985e9c514610719578063eef440af14610762578063f2fde38b14610777578063f8bf51721461079757600080fd5b8063aa0622901461061a578063b88d4fde1461063a578063bc951b911461065a578063c87b56dd1461067b578063cffb6e201461069b57600080fd5b806395d89b41116100fd57806395d89b411461059d578063982d669e146105b2578063a0712d68146105c8578063a22cb465146105db578063a475b5dd146105fb57600080fd5b806370a08231146104f8578063715018a6146105185780637ec4a6591461052d5780638da5cb5b1461054d57806394354fd01461056b57600080fd5b806323b872dd116101d25780633ccfd60b116101965780633ccfd60b1461044957806342842e0e1461045e57806344a0d68a1461047e5780634d9c18481461049e5780635c975abb146104be5780636352211e146104d857600080fd5b806323b872dd146103bf5780632f6f98e1146103df578063305ae775146103ff57806337a66d851461041f5780633bd649681461043457600080fd5b80630a00ae83116102195780630a00ae83146103275780631067fcc71461034757806313faede61461036757806318160ddd1461038b578063193ad7b4146103a957600080fd5b806301ffc9a71461025657806306421c2f1461028b57806306fdde03146102ad578063081812fc146102cf578063095ea7b314610307575b600080fd5b34801561026257600080fd5b50610276610271366004612077565b6107b9565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a63660046120fa565b61080b565b005b3480156102b957600080fd5b506102c2610856565b6040516102829190612318565b3480156102db57600080fd5b506102ef6102ea366004612131565b6108e8565b6040516001600160a01b039091168152602001610282565b34801561031357600080fd5b506102ab61032236600461204d565b61092c565b34801561033357600080fd5b506102ab610342366004612131565b6109ba565b34801561035357600080fd5b506102ab6103623660046120b1565b6109e9565b34801561037357600080fd5b5061037d600d5481565b604051908152602001610282565b34801561039757600080fd5b5061037d600154600054036000190190565b3480156103b557600080fd5b5061037d600f5481565b3480156103cb57600080fd5b506102ab6103da366004611f59565b610a2a565b3480156103eb57600080fd5b506102ab6103fa366004612115565b610a35565b34801561040b57600080fd5b506102ab61041a3660046120b1565b610adc565b34801561042b57600080fd5b506102ab610b19565b34801561044057600080fd5b506102ab610b57565b34801561045557600080fd5b506102ab610b9e565b34801561046a57600080fd5b506102ab610479366004611f59565b610c99565b34801561048a57600080fd5b506102ab610499366004612131565b610cb4565b3480156104aa57600080fd5b506102ab6104b936600461214a565b610ce3565b3480156104ca57600080fd5b506011546102769060ff1681565b3480156104e457600080fd5b506102ef6104f3366004612131565b610d2f565b34801561050457600080fd5b5061037d610513366004611f0b565b610d41565b34801561052457600080fd5b506102ab610d90565b34801561053957600080fd5b506102ab6105483660046120b1565b610dc6565b34801561055957600080fd5b506008546001600160a01b03166102ef565b34801561057757600080fd5b50600e5461058b9062010000900460ff1681565b60405160ff9091168152602001610282565b3480156105a957600080fd5b506102c2610e03565b3480156105be57600080fd5b5061037d60105481565b6102ab6105d6366004612131565b610e12565b3480156105e757600080fd5b506102ab6105f6366004612011565b6110fd565b34801561060757600080fd5b5060115461027690610100900460ff1681565b34801561062657600080fd5b506102ab61063536600461214a565b611193565b34801561064657600080fd5b506102ab610655366004611f95565b6111db565b34801561066657600080fd5b50600e5461058b906301000000900460ff1681565b34801561068757600080fd5b506102c2610696366004612131565b61122c565b3480156106a757600080fd5b506102ab6106b6366004612165565b61139b565b3480156106c757600080fd5b50600e546106d69061ffff1681565b60405161ffff9091168152602001610282565b3480156106f557600080fd5b5061058b610704366004611f0b565b60126020526000908152604090205460ff1681565b34801561072557600080fd5b50610276610734366004611f26565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561076e57600080fd5b506102c261149f565b34801561078357600080fd5b506102ab610792366004611f0b565b61152d565b3480156107a357600080fd5b50600e5461058b90640100000000900460ff1681565b60006001600160e01b031982166380ac58cd60e01b14806107ea57506001600160e01b03198216635b5e139f60e01b145b8061080557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461083e5760405162461bcd60e51b81526004016108359061236d565b60405180910390fd5b600e805461ffff191661ffff92909216919091179055565b60606002805461086590612456565b80601f016020809104026020016040519081016040528092919081815260200182805461089190612456565b80156108de5780601f106108b3576101008083540402835291602001916108de565b820191906000526020600020905b8154815290600101906020018083116108c157829003601f168201915b5050505050905090565b60006108f3826115c5565b610910576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061093782610d2f565b9050806001600160a01b0316836001600160a01b0316141561096c5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061098c575061098a8133610734565b155b156109aa576040516367d9dca160e11b815260040160405180910390fd5b6109b58383836115fe565b505050565b6008546001600160a01b031633146109e45760405162461bcd60e51b81526004016108359061236d565b601055565b6008546001600160a01b03163314610a135760405162461bcd60e51b81526004016108359061236d565b8051610a2690600c906020840190611dbd565b5050565b6109b583838361165a565b6008546001600160a01b03163314610a5f5760405162461bcd60e51b81526004016108359061236d565b6000610a72600154600054036000190190565b600e5490915061ffff16610a8684836123a2565b61ffff161115610ace5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610835565b6109b5828461ffff1661184a565b6008546001600160a01b03163314610b065760405162461bcd60e51b81526004016108359061236d565b8051610a2690600b906020840190611dbd565b6008546001600160a01b03163314610b435760405162461bcd60e51b81526004016108359061236d565b6011805460ff19811660ff90911615179055565b6008546001600160a01b03163314610b815760405162461bcd60e51b81526004016108359061236d565b6011805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b03163314610bc85760405162461bcd60e51b81526004016108359061236d565b60026009541415610c1b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610835565b60026009556000610c346008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c7e576040519150601f19603f3d011682016040523d82523d6000602084013e610c83565b606091505b5050905080610c9157600080fd5b506001600955565b6109b5838383604051806020016040528060008152506111db565b6008546001600160a01b03163314610cde5760405162461bcd60e51b81526004016108359061236d565b600d55565b6008546001600160a01b03163314610d0d5760405162461bcd60e51b81526004016108359061236d565b600e805460ff9092166401000000000264ff0000000019909216919091179055565b6000610d3a82611864565b5192915050565b60006001600160a01b038216610d6a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610dba5760405162461bcd60e51b81526004016108359061236d565b610dc4600061198d565b565b6008546001600160a01b03163314610df05760405162461bcd60e51b81526004016108359061236d565b8051610a2690600a906020840190611dbd565b60606003805461086590612456565b323314610e615760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610835565b60115460ff1615610eb45760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610835565b600e54610ec69061ffff1660016123a2565b61ffff1681610edc600154600054036000190190565b610ee691906123c8565b10610f1d5760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b6044820152606401610835565b600e546301000000900460ff1681610f3433610d41565b610f3e91906123c8565b1115610f8c5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610835565b60105481600f54610f9d91906123c8565b1115611000573481600d54610fb291906123f4565b1115610ffb5760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b6044820152606401610835565b6110f0565b600e54640100000000900460ff168161101833610d41565b61102291906123c8565b11156110ab573481600d5461103791906123f4565b11156110805760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b6044820152606401610835565b600e5462010000900460ff16811115610ffb5760405162461bcd60e51b81526004016108359061232b565b600e54640100000000900460ff168111156110d85760405162461bcd60e51b81526004016108359061232b565b80600f60008282546110ea91906123c8565b90915550505b6110fa338261184a565b50565b6001600160a01b0382163314156111275760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146111bd5760405162461bcd60e51b81526004016108359061236d565b600e805460ff909216620100000262ff000019909216919091179055565b6111e684848461165a565b6001600160a01b0383163b151580156112085750611206848484846119df565b155b15611226576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060611237826115c5565b61129b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610835565b601154610100900460ff1661133c57600c80546112b790612456565b80601f01602080910402602001604051908101604052809291908181526020018280546112e390612456565b80156113305780601f1061130557610100808354040283529160200191611330565b820191906000526020600020905b81548152906001019060200180831161131357829003601f168201915b50505050509050919050565b6000611346611ad7565b905060008151116113665760405180602001604052806000815250611394565b8061137084611ae6565b600b60405160200161138493929190612217565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146113c55760405162461bcd60e51b81526004016108359061236d565b60006113d8600154600054036000190190565b905060006113e98360ff87166123f4565b600e5490915061ffff9081169061140390839085166123c8565b11156114475760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610835565b60005b8381101561149757611485858583818110611467576114676124ec565b905060200201602081019061147c9190611f0b565b8760ff1661184a565b8061148f81612491565b91505061144a565b505050505050565b600c80546114ac90612456565b80601f01602080910402602001604051908101604052809291908181526020018280546114d890612456565b80156115255780601f106114fa57610100808354040283529160200191611525565b820191906000526020600020905b81548152906001019060200180831161150857829003601f168201915b505050505081565b6008546001600160a01b031633146115575760405162461bcd60e51b81526004016108359061236d565b6001600160a01b0381166115bc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610835565b6110fa8161198d565b6000816001111580156115d9575060005482105b8015610805575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061166582611864565b9050836001600160a01b031681600001516001600160a01b03161461169c5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806116ba57506116ba8533610734565b806116d55750336116ca846108e8565b6001600160a01b0316145b9050806116f557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661171c57604051633a954ecd60e21b815260040160405180910390fd5b611728600084876115fe565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166117fe5760005482146117fe578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610a26828260405180602001604052806000815250611be4565b60408051606081018252600080825260208201819052918101919091528180600111158015611894575060005481105b1561197457600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906119725780516001600160a01b031615611908579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561196d579392505050565b611908565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a149033908990889088906004016122db565b602060405180830381600087803b158015611a2e57600080fd5b505af1925050508015611a5e575060408051601f3d908101601f19168201909252611a5b91810190612094565b60015b611ab9573d808015611a8c576040519150601f19603f3d011682016040523d82523d6000602084013e611a91565b606091505b508051611ab1576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461086590612456565b606081611b0a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b345780611b1e81612491565b9150611b2d9050600a836123e0565b9150611b0e565b60008167ffffffffffffffff811115611b4f57611b4f612502565b6040519080825280601f01601f191660200182016040528015611b79576020820181803683370190505b5090505b8415611acf57611b8e600183612413565b9150611b9b600a866124ac565b611ba69060306123c8565b60f81b818381518110611bbb57611bbb6124ec565b60200101906001600160f81b031916908160001a905350611bdd600a866123e0565b9450611b7d565b6109b583838360016000546001600160a01b038516611c1557604051622e076360e81b815260040160405180910390fd5b83611c335760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611ce557506001600160a01b0387163b15155b15611d6e575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611d3660008884806001019550886119df565b611d53576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611ceb578260005414611d6957600080fd5b611db4565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611d6f575b50600055611843565b828054611dc990612456565b90600052602060002090601f016020900481019282611deb5760008555611e31565b82601f10611e0457805160ff1916838001178555611e31565b82800160010185558215611e31579182015b82811115611e31578251825591602001919060010190611e16565b50611e3d929150611e41565b5090565b5b80821115611e3d5760008155600101611e42565b600067ffffffffffffffff80841115611e7157611e71612502565b604051601f8501601f19908116603f01168101908282118183101715611e9957611e99612502565b81604052809350858152868686011115611eb257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611ee357600080fd5b919050565b803561ffff81168114611ee357600080fd5b803560ff81168114611ee357600080fd5b600060208284031215611f1d57600080fd5b61139482611ecc565b60008060408385031215611f3957600080fd5b611f4283611ecc565b9150611f5060208401611ecc565b90509250929050565b600080600060608486031215611f6e57600080fd5b611f7784611ecc565b9250611f8560208501611ecc565b9150604084013590509250925092565b60008060008060808587031215611fab57600080fd5b611fb485611ecc565b9350611fc260208601611ecc565b925060408501359150606085013567ffffffffffffffff811115611fe557600080fd5b8501601f81018713611ff657600080fd5b61200587823560208401611e56565b91505092959194509250565b6000806040838503121561202457600080fd5b61202d83611ecc565b91506020830135801515811461204257600080fd5b809150509250929050565b6000806040838503121561206057600080fd5b61206983611ecc565b946020939093013593505050565b60006020828403121561208957600080fd5b813561139481612518565b6000602082840312156120a657600080fd5b815161139481612518565b6000602082840312156120c357600080fd5b813567ffffffffffffffff8111156120da57600080fd5b8201601f810184136120eb57600080fd5b611acf84823560208401611e56565b60006020828403121561210c57600080fd5b61139482611ee8565b6000806040838503121561212857600080fd5b611f4283611ee8565b60006020828403121561214357600080fd5b5035919050565b60006020828403121561215c57600080fd5b61139482611efa565b60008060006040848603121561217a57600080fd5b61218384611efa565b9250602084013567ffffffffffffffff808211156121a057600080fd5b818601915086601f8301126121b457600080fd5b8135818111156121c357600080fd5b8760208260051b85010111156121d857600080fd5b6020830194508093505050509250925092565b6000815180845261220381602086016020860161242a565b601f01601f19169290920160200192915050565b60008451602061222a8285838a0161242a565b85519184019161223d8184848a0161242a565b8554920191600090600181811c908083168061225a57607f831692505b85831081141561227857634e487b7160e01b85526022600452602485fd5b80801561228c576001811461229d576122ca565b60ff198516885283880195506122ca565b60008b81526020902060005b858110156122c25781548a8201529084019088016122a9565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061230e908301846121eb565b9695505050505050565b60208152600061139460208301846121eb565b60208082526022908201527f4d6178206d696e747320706572207472616e73616374696f6e20657863656564604082015261195960f21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600061ffff8083168185168083038211156123bf576123bf6124c0565b01949350505050565b600082198211156123db576123db6124c0565b500190565b6000826123ef576123ef6124d6565b500490565b600081600019048311821515161561240e5761240e6124c0565b500290565b600082821015612425576124256124c0565b500390565b60005b8381101561244557818101518382015260200161242d565b838111156112265750506000910152565b600181811c9082168061246a57607f821691505b6020821081141561248b57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124a5576124a56124c0565b5060010190565b6000826124bb576124bb6124d6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110fa57600080fdfea2646970667358221220e59471a0dff3872feceecf97dbd95d3b6f5f75a43dd16014951872cd0d62f91d64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d546865204c696f6e73204e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054c494f4e5300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): The Lions NFT
Arg [1] : _tokenSymbol (string): LIONS
Arg [2] : _hiddenMetadataUri (string): n

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [4] : 546865204c696f6e73204e465400000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 4c494f4e53000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [8] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

47086:5207:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27410:305;;;;;;;;;;-1:-1:-1;27410:305:0;;;;;:::i;:::-;;:::i;:::-;;;8567:14:1;;8560:22;8542:41;;8530:2;8515:18;27410:305:0;;;;;;;;50141:97;;;;;;;;;;-1:-1:-1;50141:97:0;;;;;:::i;:::-;;:::i;:::-;;30523:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32026:204::-;;;;;;;;;;-1:-1:-1;32026:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7865:32:1;;;7847:51;;7835:2;7820:18;32026:204:0;7701:203:1;31589:371:0;;;;;;;;;;-1:-1:-1;31589:371:0;;;;;:::i;:::-;;:::i;51223:129::-;;;;;;;;;;-1:-1:-1;51223:129:0;;;;;:::i;:::-;;:::i;51119:102::-;;;;;;;;;;-1:-1:-1;51119:102:0;;;;;:::i;:::-;;:::i;47365:33::-;;;;;;;;;;;;;;;;;;;13208:25:1;;;13196:2;13181:18;47365:33:0;13062:177:1;26659:303:0;;;;;;;;;;;;26516:1;26913:12;26703:7;26897:13;:28;-1:-1:-1;;26897:46:0;;26659:303;47586:39;;;;;;;;;;;;;;;;32891:170;;;;;;;;;;-1:-1:-1;32891:170:0;;;;;:::i;:::-;;:::i;49326:326::-;;;;;;;;;;-1:-1:-1;49326:326:0;;;;;:::i;:::-;;:::i;50902:102::-;;;;;;;;;;-1:-1:-1;50902:102:0;;;;;:::i;:::-;;:::i;51358:71::-;;;;;;;;;;;;;:::i;51516:70::-;;;;;;;;;;;;;:::i;51710:475::-;;;;;;;;;;;;;:::i;33132:185::-;;;;;;;;;;-1:-1:-1;33132:185:0;;;;;:::i;:::-;;:::i;51435:76::-;;;;;;;;;;-1:-1:-1;51435:76:0;;;;;:::i;:::-;;:::i;50755:134::-;;;;;;;;;;-1:-1:-1;50755:134:0;;;;;:::i;:::-;;:::i;47741:25::-;;;;;;;;;;-1:-1:-1;47741:25:0;;;;;;;;30331:125;;;;;;;;;;-1:-1:-1;30331:125:0;;;;;:::i;:::-;;:::i;27779:206::-;;;;;;;;;;-1:-1:-1;27779:206:0;;;;;:::i;:::-;;:::i;46232:103::-;;;;;;;;;;;;;:::i;51012:102::-;;;;;;;;;;-1:-1:-1;51012:102:0;;;;;:::i;:::-;;:::i;45580:87::-;;;;;;;;;;-1:-1:-1;45653:6:0;;-1:-1:-1;;;;;45653:6:0;45580:87;;47447:36;;;;;;;;;;-1:-1:-1;47447:36:0;;;;;;;;;;;;;;13416:4:1;13404:17;;;13386:36;;13374:2;13359:18;47447:36:0;13244:184:1;30692:104:0;;;;;;;;;;;;;:::i;47633:37::-;;;;;;;;;;;;;;;;48180:1140;;;;;;:::i;:::-;;:::i;32302:287::-;;;;;;;;;;-1:-1:-1;32302:287:0;;;;;:::i;:::-;;:::i;47771:25::-;;;;;;;;;;-1:-1:-1;47771:25:0;;;;;;;;;;;51592:107;;;;;;;;;;-1:-1:-1;51592:107:0;;;;;:::i;:::-;;:::i;33388:369::-;;;;;;;;;;-1:-1:-1;33388:369:0;;;;;:::i;:::-;;:::i;47489:40::-;;;;;;;;;;-1:-1:-1;47489:40:0;;;;;;;;;;;50253:490;;;;;;;;;;-1:-1:-1;50253:490:0;;;;;:::i;:::-;;:::i;49658:472::-;;;;;;;;;;-1:-1:-1;49658:472:0;;;;;:::i;:::-;;:::i;47412:30::-;;;;;;;;;;-1:-1:-1;47412:30:0;;;;;;;;;;;13043:6:1;13031:19;;;13013:38;;13001:2;12986:18;47412:30:0;12869:188:1;47804:53:0;;;;;;;;;;-1:-1:-1;47804:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32660:164;;;;;;;;;;-1:-1:-1;32660:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32781:25:0;;;32757:4;32781:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32660:164;47325:23;;;;;;;;;;;;;:::i;46490:201::-;;;;;;;;;;-1:-1:-1;46490:201:0;;;;;:::i;:::-;;:::i;47536:43::-;;;;;;;;;;-1:-1:-1;47536:43:0;;;;;;;;;;;27410:305;27512:4;-1:-1:-1;;;;;;27549:40:0;;-1:-1:-1;;;27549:40:0;;:105;;-1:-1:-1;;;;;;;27606:48:0;;-1:-1:-1;;;27606:48:0;27549:105;:158;;;-1:-1:-1;;;;;;;;;;17444:40:0;;;27671:36;27529:178;27410:305;-1:-1:-1;;27410:305:0:o;50141:97::-;45653:6;;-1:-1:-1;;;;;45653:6:0;5885:10;45800:23;45792:69;;;;-1:-1:-1;;;45792:69:0;;;;;;;:::i;:::-;;;;;;;;;50210:9:::1;:22:::0;;-1:-1:-1;;50210:22:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;50141:97::o;30523:100::-;30577:13;30610:5;30603:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30523:100;:::o;32026:204::-;32094:7;32119:16;32127:7;32119;:16::i;:::-;32114:64;;32144:34;;-1:-1:-1;;;32144:34:0;;;;;;;;;;;32114:64;-1:-1:-1;32198:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32198:24:0;;32026:204::o;31589:371::-;31662:13;31678:24;31694:7;31678:15;:24::i;:::-;31662:40;;31723:5;-1:-1:-1;;;;;31717:11:0;:2;-1:-1:-1;;;;;31717:11:0;;31713:48;;;31737:24;;-1:-1:-1;;;31737:24:0;;;;;;;;;;;31713:48;5885:10;-1:-1:-1;;;;;31778:21:0;;;;;;:63;;-1:-1:-1;31804:37:0;31821:5;5885:10;32660:164;:::i;31804:37::-;31803:38;31778:63;31774:138;;;31865:35;;-1:-1:-1;;;31865:35:0;;;;;;;;;;;31774:138;31924:28;31933:2;31937:7;31946:5;31924:8;:28::i;:::-;31651:309;31589:371;;:::o;51223:129::-;45653:6;;-1:-1:-1;;;;;45653:6:0;5885:10;45800:23;45792:69;;;;-1:-1:-1;;;45792:69:0;;;;;;;:::i;:::-;51316:14:::1;:30:::0;51223:129::o;51119:102::-;45653:6;;-1:-1:-1;;;;;45653:6:0;5885:10;45800:23;45792:69;;;;-1:-1:-1;;;45792:69:0;;;;;;;:::i;:::-;51193:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;51119:102:::0;:::o;32891:170::-;33025:28;33035:4;33041:2;33045:7;33025:9;:28::i;49326:326::-;45653:6;;-1:-1:-1;;;;;45653:6:0;5885:10;45800:23;45792:69;;;;-1:-1:-1;;;45792:69:0;;;;;;;:::i;:::-;49409:18:::1;49437:13;26516:1:::0;26913:12;26703:7;26897:13;:28;-1:-1:-1;;26897:46:0;;26659:303;49437:13:::1;49495:9;::::0;49409:42;;-1:-1:-1;49495:9:0::1;;49466:25;49480:11:::0;49409:42;49466:25:::1;:::i;:::-;:38;;;;49458:70;;;::::0;-1:-1:-1;;;49458:70:0;;9020:2:1;49458:70:0::1;::::0;::::1;9002:21:1::0;9059:2;9039:18;;;9032:30;-1:-1:-1;;;9078:18:1;;;9071:49;9137:18;;49458:70:0::1;8818:343:1::0;49458:70:0::1;49536:34;49546:9;49558:11;49536:34;;:9;:34::i;50902:102::-:0;45653:6;;-1:-1:-1;;;;;45653:6:0;5885:10;45800:23;45792:69;;;;-1:-1:-1;;;45792:69:0;;;;;;;:::i;:::-;50976:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;51358:71::-:0;45653:6;;-1:-1:-1;;;;;45653:6:0;5885:10;45800:23;45792:69;;;;-1:-1:-1;;;45792:69:0;;;;;;;:::i;:::-;51415:6:::1;::::0;;-1:-1:-1;;51405:16:0;::::1;51415:6;::::0;;::::1;51414:7;51405:16;::::0;;51358:71::o;51516:70::-;45653:6;;-1:-1:-1;;;;;45653:6:0;5885:10;45800:23;45792:69;;;;-1:-1:-1;;;45792:69:0;;;;;;;:::i;:::-;51575:6:::1;::::0;;-1:-1:-1;;51565:16:0;::::1;51575:6;::::0;;;::::1;;;51574:7;51565:16:::0;;::::1;;::::0;;51516:70::o;51710:475::-;45653:6;;-1:-1:-1;;;;;45653:6:0;5885:10;45800:23;45792:69;;;;-1:-1:-1;;;45792:69:0;;;;;;;:::i;:::-;2057:1:::1;2655:7;;:19;;2647:63;;;::::0;-1:-1:-1;;;2647:63:0;;12711:2:1;2647:63:0::1;::::0;::::1;12693:21:1::0;12750:2;12730:18;;;12723:30;12789:33;12769:18;;;12762:61;12840:18;;2647:63:0::1;12509:355:1::0;2647:63:0::1;2057:1;2788:7;:18:::0;52007:7:::2;52028;45653:6:::0;;-1:-1:-1;;;;;45653:6:0;;45580:87;52028:7:::2;-1:-1:-1::0;;;;;52020:21:0::2;52049;52020:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52006:69;;;52090:2;52082:11;;;::::0;::::2;;-1:-1:-1::0;2013:1:0::1;2967:7;:22:::0;51710:475::o;33132:185::-;33270:39;33287:4;33293:2;33297:7;33270:39;;;;;;;;;;;;:16;:39::i;51435:76::-;45653:6;;-1:-1:-1;;;;;45653:6:0;5885:10;45800:23;45792:69;;;;-1:-1:-1;;;45792:69:0;;;;;;;:::i;:::-;51491:4:::1;:12:::0;51435:76::o;50755:134::-;45653:6;;-1:-1:-1;;;;;45653:6:0;5885:10;45800:23;45792:69;;;;-1:-1:-1;;;45792:69:0;;;;;;;:::i;:::-;50829:26:::1;:35:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;50829:35:0;;::::1;::::0;;;::::1;::::0;;50755:134::o;30331:125::-;30395:7;30422:21;30435:7;30422:12;:21::i;:::-;:26;;30331:125;-1:-1:-1;;30331:125:0:o;27779:206::-;27843:7;-1:-1:-1;;;;;27867:19:0;;27863:60;;27895:28;;-1:-1:-1;;;27895:28:0;;;;;;;;;;;27863:60;-1:-1:-1;;;;;;27949:19:0;;;;;:12;:19;;;;;:27;;;;27779:206::o;46232:103::-;45653:6;;-1:-1:-1;;;;;45653:6:0;5885:10;45800:23;45792:69;;;;-1:-1:-1;;;45792:69:0;;;;;;;:::i;:::-;46297:30:::1;46324:1;46297:18;:30::i;:::-;46232:103::o:0;51012:102::-;45653:6;;-1:-1:-1;;;;;45653:6:0;5885:10;45800:23;45792:69;;;;-1:-1:-1;;;45792:69:0;;;;;;;:::i;:::-;51086:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;30692:104::-:0;30748:13;30781:7;30774:14;;;;;:::i;48180:1140::-;48098:9;48111:10;48098:23;48090:66;;;;-1:-1:-1;;;48090:66:0;;10870:2:1;48090:66:0;;;10852:21:1;10909:2;10889:18;;;10882:30;10948:32;10928:18;;;10921:60;10998:18;;48090:66:0;10668:354:1;48090:66:0;48285:6:::1;::::0;::::1;;48284:7;48276:43;;;::::0;-1:-1:-1;;;48276:43:0;;11590:2:1;48276:43:0::1;::::0;::::1;11572:21:1::0;11629:2;11609:18;;;11602:30;11668:25;11648:18;;;11641:53;11711:18;;48276:43:0::1;11388:347:1::0;48276:43:0::1;48364:9;::::0;:13:::1;::::0;:9:::1;;::::0;:13:::1;:::i;:::-;48334:43;;48350:11;48334:13;26516:1:::0;26913:12;26703:7;26897:13;:28;-1:-1:-1;;26897:46:0;;26659:303;48334:13:::1;:27;;;;:::i;:::-;:43;48326:63;;;::::0;-1:-1:-1;;;48326:63:0;;9368:2:1;48326:63:0::1;::::0;::::1;9350:21:1::0;9407:1;9387:18;;;9380:29;-1:-1:-1;;;9425:18:1;;;9418:37;9472:18;;48326:63:0::1;9166:330:1::0;48326:63:0::1;48445:22;::::0;;;::::1;;;48430:11:::0;48406:21:::1;48416:10;48406:9;:21::i;:::-;:35;;;;:::i;:::-;:61;;48397:103;;;::::0;-1:-1:-1;;;48397:103:0;;10110:2:1;48397:103:0::1;::::0;::::1;10092:21:1::0;10149:2;10129:18;;;10122:30;10188;10168:18;;;10161:58;10236:18;;48397:103:0::1;9908:352:1::0;48397:103:0::1;48555:14;;48541:11;48518:20;;:34;;;;:::i;:::-;:51;48515:759;;;48627:9;48611:11;48604:4;;:18;;;;:::i;:::-;48603:33;;48581:107;;;::::0;-1:-1:-1;;;48581:107:0;;12358:2:1;48581:107:0::1;::::0;::::1;12340:21:1::0;12397:2;12377:18;;;12370:30;-1:-1:-1;;;12416:18:1;;;12409:54;12480:18;;48581:107:0::1;12156:348:1::0;48581:107:0::1;48515:759;;;48761:26;::::0;;;::::1;;;48747:11:::0;48723:21:::1;48733:10;48723:9;:21::i;:::-;:35;;;;:::i;:::-;:64;48719:548;;;48846:9;48830:11;48823:4;;:18;;;;:::i;:::-;48822:33;;48800:107;;;::::0;-1:-1:-1;;;48800:107:0;;12358:2:1;48800:107:0::1;::::0;::::1;12340:21:1::0;12397:2;12377:18;;;12370:30;-1:-1:-1;;;12416:18:1;;;12409:54;12480:18;;48800:107:0::1;12156:348:1::0;48800:107:0::1;48955:18;::::0;;;::::1;;;48940:33:::0;::::1;;48918:117;;;;-1:-1:-1::0;;;48918:117:0::1;;;;;;;:::i;48719:548::-;49109:26;::::0;;;::::1;;;49094:41:::0;::::1;;49068:137;;;;-1:-1:-1::0;;;49068:137:0::1;;;;;;;:::i;:::-;49244:11;49220:20;;:35;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;48719:548:0::1;49280:34;49290:10;49302:11;49280:9;:34::i;:::-;48180:1140:::0;:::o;32302:287::-;-1:-1:-1;;;;;32401:24:0;;5885:10;32401:24;32397:54;;;32434:17;;-1:-1:-1;;;32434:17:0;;;;;;;;;;;32397:54;5885:10;32464:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32464:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32464:53:0;;;;;;;;;;32533:48;;8542:41:1;;;32464:42:0;;5885:10;32533:48;;8515:18:1;32533:48:0;;;;;;;32302:287;;:::o;51592:107::-;45653:6;;-1:-1:-1;;;;;45653:6:0;5885:10;45800:23;45792:69;;;;-1:-1:-1;;;45792:69:0;;;;;;;:::i;:::-;51664:18:::1;:27:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;51664:27:0;;::::1;::::0;;;::::1;::::0;;51592:107::o;33388:369::-;33555:28;33565:4;33571:2;33575:7;33555:9;:28::i;:::-;-1:-1:-1;;;;;33598:13:0;;7547:19;:23;;33598:76;;;;;33618:56;33649:4;33655:2;33659:7;33668:5;33618:30;:56::i;:::-;33617:57;33598:76;33594:156;;;33698:40;;-1:-1:-1;;;33698:40:0;;;;;;;;;;;33594:156;33388:369;;;;:::o;50253:490::-;50352:13;50393:17;50401:8;50393:7;:17::i;:::-;50377:98;;;;-1:-1:-1;;;50377:98:0;;11942:2:1;50377:98:0;;;11924:21:1;11981:2;11961:18;;;11954:30;12020:34;12000:18;;;11993:62;-1:-1:-1;;;12071:18:1;;;12064:45;12126:19;;50377:98:0;11740:411:1;50377:98:0;50493:6;;;;;;;50488:50;;50525:9;50518:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50253:490;;;:::o;50488:50::-;50552:28;50583:10;:8;:10::i;:::-;50552:41;;50638:1;50613:14;50607:28;:32;:130;;;;;;;;;;;;;;;;;50675:14;50691:19;:8;:17;:19::i;:::-;50712:9;50658:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50607:130;50600:137;50253:490;-1:-1:-1;;;50253:490:0:o;49658:472::-;45653:6;;-1:-1:-1;;;;;45653:6:0;5885:10;45800:23;45792:69;;;;-1:-1:-1;;;45792:69:0;;;;;;;:::i;:::-;49757:18:::1;49785:13;26516:1:::0;26913:12;26703:7;26897:13;:28;-1:-1:-1;;26897:46:0;;26659:303;49785:13:::1;49757:42:::0;-1:-1:-1;49807:16:0::1;49828:36;49848:9:::0;49828:36:::1;::::0;::::1;;:::i;:::-;49908:9;::::0;49807:57;;-1:-1:-1;49908:9:0::1;::::0;;::::1;::::0;49879:25:::1;::::0;49807:57;;49879:25;::::1;;:::i;:::-;:38;;49871:70;;;::::0;-1:-1:-1;;;49871:70:0;;9020:2:1;49871:70:0::1;::::0;::::1;9002:21:1::0;9059:2;9039:18;;;9032:30;-1:-1:-1;;;9078:18:1;;;9071:49;9137:18;;49871:70:0::1;8818:343:1::0;49871:70:0::1;49954:9;49949:116;49969:20:::0;;::::1;49949:116;;;50011:42;50021:9;;50031:1;50021:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;50035:17;50011:42;;:9;:42::i;:::-;49991:3:::0;::::1;::::0;::::1;:::i;:::-;;;;49949:116;;;-1:-1:-1::0;;;;;;49658:472:0:o;47325:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46490:201::-;45653:6;;-1:-1:-1;;;;;45653:6:0;5885:10;45800:23;45792:69;;;;-1:-1:-1;;;45792:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46579:22:0;::::1;46571:73;;;::::0;-1:-1:-1;;;46571:73:0;;9703:2:1;46571:73:0::1;::::0;::::1;9685:21:1::0;9742:2;9722:18;;;9715:30;9781:34;9761:18;;;9754:62;-1:-1:-1;;;9832:18:1;;;9825:36;9878:19;;46571:73:0::1;9501:402:1::0;46571:73:0::1;46655:28;46674:8;46655:18;:28::i;34012:187::-:0;34069:4;34112:7;26516:1;34093:26;;:53;;;;;34133:13;;34123:7;:23;34093:53;:98;;;;-1:-1:-1;;34164:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;34164:27:0;;;;34163:28;;34012:187::o;42182:196::-;42297:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;42297:29:0;-1:-1:-1;;;;;42297:29:0;;;;;;;;;42342:28;;42297:24;;42342:28;;;;;;;42182:196;;;:::o;37125:2130::-;37240:35;37278:21;37291:7;37278:12;:21::i;:::-;37240:59;;37338:4;-1:-1:-1;;;;;37316:26:0;:13;:18;;;-1:-1:-1;;;;;37316:26:0;;37312:67;;37351:28;;-1:-1:-1;;;37351:28:0;;;;;;;;;;;37312:67;37392:22;5885:10;-1:-1:-1;;;;;37418:20:0;;;;:73;;-1:-1:-1;37455:36:0;37472:4;5885:10;32660:164;:::i;37455:36::-;37418:126;;;-1:-1:-1;5885:10:0;37508:20;37520:7;37508:11;:20::i;:::-;-1:-1:-1;;;;;37508:36:0;;37418:126;37392:153;;37563:17;37558:66;;37589:35;;-1:-1:-1;;;37589:35:0;;;;;;;;;;;37558:66;-1:-1:-1;;;;;37639:16:0;;37635:52;;37664:23;;-1:-1:-1;;;37664:23:0;;;;;;;;;;;37635:52;37808:35;37825:1;37829:7;37838:4;37808:8;:35::i;:::-;-1:-1:-1;;;;;38139:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;38139:31:0;;;;;;;-1:-1:-1;;38139:31:0;;;;;;;38185:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;38185:29:0;;;;;;;;;;;38265:20;;;:11;:20;;;;;;38300:18;;-1:-1:-1;;;;;;38333:49:0;;;;-1:-1:-1;;;38366:15:0;38333:49;;;;;;;;;;38656:11;;38716:24;;;;;38759:13;;38265:20;;38716:24;;38759:13;38755:384;;38969:13;;38954:11;:28;38950:174;;39007:20;;39076:28;;;;39050:54;;-1:-1:-1;;;39050:54:0;-1:-1:-1;;;;;;39050:54:0;;;-1:-1:-1;;;;;39007:20:0;;39050:54;;;;38950:174;38114:1036;;;39186:7;39182:2;-1:-1:-1;;;;;39167:27:0;39176:4;-1:-1:-1;;;;;39167:27:0;;;;;;;;;;;39205:42;37229:2026;;37125:2130;;;:::o;34207:104::-;34276:27;34286:2;34290:8;34276:27;;;;;;;;;;;;:9;:27::i;29160:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;29271:7:0;;26516:1;29320:23;;:47;;;;;29354:13;;29347:4;:20;29320:47;29316:886;;;29388:31;29422:17;;;:11;:17;;;;;;;;;29388:51;;;;;;;;;-1:-1:-1;;;;;29388:51:0;;;;-1:-1:-1;;;29388:51:0;;;;;;;;;;;-1:-1:-1;;;29388:51:0;;;;;;;;;;;;;;29458:729;;29508:14;;-1:-1:-1;;;;;29508:28:0;;29504:101;;29572:9;29160:1109;-1:-1:-1;;;29160:1109:0:o;29504:101::-;-1:-1:-1;;;29947:6:0;29992:17;;;;:11;:17;;;;;;;;;29980:29;;;;;;;;;-1:-1:-1;;;;;29980:29:0;;;;;-1:-1:-1;;;29980:29:0;;;;;;;;;;;-1:-1:-1;;;29980:29:0;;;;;;;;;;;;;30040:28;30036:109;;30108:9;29160:1109;-1:-1:-1;;;29160:1109:0:o;30036:109::-;29907:261;;;29369:833;29316:886;30230:31;;-1:-1:-1;;;30230:31:0;;;;;;;;;;;46851:191;46944:6;;;-1:-1:-1;;;;;46961:17:0;;;-1:-1:-1;;;;;;46961:17:0;;;;;;;46994:40;;46944:6;;;46961:17;46944:6;;46994:40;;46925:16;;46994:40;46914:128;46851:191;:::o;42870:667::-;43054:72;;-1:-1:-1;;;43054:72:0;;43033:4;;-1:-1:-1;;;;;43054:36:0;;;;;:72;;5885:10;;43105:4;;43111:7;;43120:5;;43054:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43054:72:0;;;;;;;;-1:-1:-1;;43054:72:0;;;;;;;;;;;;:::i;:::-;;;43050:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43288:13:0;;43284:235;;43334:40;;-1:-1:-1;;;43334:40:0;;;;;;;;;;;43284:235;43477:6;43471:13;43462:6;43458:2;43454:15;43447:38;43050:480;-1:-1:-1;;;;;;43173:55:0;-1:-1:-1;;;43173:55:0;;-1:-1:-1;43050:480:0;42870:667;;;;;;:::o;52193:97::-;52246:13;52275:9;52268:16;;;;;:::i;3367:723::-;3423:13;3644:10;3640:53;;-1:-1:-1;;3671:10:0;;;;;;;;;;;;-1:-1:-1;;;3671:10:0;;;;;3367:723::o;3640:53::-;3718:5;3703:12;3759:78;3766:9;;3759:78;;3792:8;;;;:::i;:::-;;-1:-1:-1;3815:10:0;;-1:-1:-1;3823:2:0;3815:10;;:::i;:::-;;;3759:78;;;3847:19;3879:6;3869:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3869:17:0;;3847:39;;3897:154;3904:10;;3897:154;;3931:11;3941:1;3931:11;;:::i;:::-;;-1:-1:-1;4000:10:0;4008:2;4000:5;:10;:::i;:::-;3987:24;;:2;:24;:::i;:::-;3974:39;;3957:6;3964;3957:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3957:56:0;;;;;;;;-1:-1:-1;4028:11:0;4037:2;4028:11;;:::i;:::-;;;3897:154;;34674:163;34797:32;34803:2;34807:8;34817:5;34824:4;35235:20;35258:13;-1:-1:-1;;;;;35286:16:0;;35282:48;;35311:19;;-1:-1:-1;;;35311:19:0;;;;;;;;;;;35282:48;35345:13;35341:44;;35367:18;;-1:-1:-1;;;35367:18:0;;;;;;;;;;;35341:44;-1:-1:-1;;;;;35736:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;35795:49:0;;35736:44;;;;;;;;35795:49;;;;-1:-1:-1;;35736:44:0;;;;;;35795:49;;;;;;;;;;;;;;;;35861:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;35911:66:0;;;;-1:-1:-1;;;35961:15:0;35911:66;;;;;;;;;;35861:25;36058:23;;;36102:4;:23;;;;-1:-1:-1;;;;;;36110:13:0;;7547:19;:23;;36110:15;36098:641;;;36146:314;36177:38;;36202:12;;-1:-1:-1;;;;;36177:38:0;;;36194:1;;36177:38;;36194:1;;36177:38;36243:69;36282:1;36286:2;36290:14;;;;;;36306:5;36243:30;:69::i;:::-;36238:174;;36348:40;;-1:-1:-1;;;36348:40:0;;;;;;;;;;;36238:174;36455:3;36439:12;:19;;36146:314;;36541:12;36524:13;;:29;36520:43;;36555:8;;;36520:43;36098:641;;;36604:120;36635:40;;36660:14;;;;;-1:-1:-1;;;;;36635:40:0;;;36652:1;;36635:40;;36652:1;;36635:40;36719:3;36703:12;:19;;36604:120;;36098:641;-1:-1:-1;36753:13:0;:28;36803:60;33388:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:159::-;895:20;;955:6;944:18;;934:29;;924:57;;977:1;974;967:12;992:156;1058:20;;1118:4;1107:16;;1097:27;;1087:55;;1138:1;1135;1128:12;1153:186;1212:6;1265:2;1253:9;1244:7;1240:23;1236:32;1233:52;;;1281:1;1278;1271:12;1233:52;1304:29;1323:9;1304:29;:::i;1344:260::-;1412:6;1420;1473:2;1461:9;1452:7;1448:23;1444:32;1441:52;;;1489:1;1486;1479:12;1441:52;1512:29;1531:9;1512:29;:::i;:::-;1502:39;;1560:38;1594:2;1583:9;1579:18;1560:38;:::i;:::-;1550:48;;1344:260;;;;;:::o;1609:328::-;1686:6;1694;1702;1755:2;1743:9;1734:7;1730:23;1726:32;1723:52;;;1771:1;1768;1761:12;1723:52;1794:29;1813:9;1794:29;:::i;:::-;1784:39;;1842:38;1876:2;1865:9;1861:18;1842:38;:::i;:::-;1832:48;;1927:2;1916:9;1912:18;1899:32;1889:42;;1609:328;;;;;:::o;1942:666::-;2037:6;2045;2053;2061;2114:3;2102:9;2093:7;2089:23;2085:33;2082:53;;;2131:1;2128;2121:12;2082:53;2154:29;2173:9;2154:29;:::i;:::-;2144:39;;2202:38;2236:2;2225:9;2221:18;2202:38;:::i;:::-;2192:48;;2287:2;2276:9;2272:18;2259:32;2249:42;;2342:2;2331:9;2327:18;2314:32;2369:18;2361:6;2358:30;2355:50;;;2401:1;2398;2391:12;2355:50;2424:22;;2477:4;2469:13;;2465:27;-1:-1:-1;2455:55:1;;2506:1;2503;2496:12;2455:55;2529:73;2594:7;2589:2;2576:16;2571:2;2567;2563:11;2529:73;:::i;:::-;2519:83;;;1942:666;;;;;;;:::o;2613:347::-;2678:6;2686;2739:2;2727:9;2718:7;2714:23;2710:32;2707:52;;;2755:1;2752;2745:12;2707:52;2778:29;2797:9;2778:29;:::i;:::-;2768:39;;2857:2;2846:9;2842:18;2829:32;2904:5;2897:13;2890:21;2883:5;2880:32;2870:60;;2926:1;2923;2916:12;2870:60;2949:5;2939:15;;;2613:347;;;;;:::o;2965:254::-;3033:6;3041;3094:2;3082:9;3073:7;3069:23;3065:32;3062:52;;;3110:1;3107;3100:12;3062:52;3133:29;3152:9;3133:29;:::i;:::-;3123:39;3209:2;3194:18;;;;3181:32;;-1:-1:-1;;;2965:254:1:o;3224:245::-;3282:6;3335:2;3323:9;3314:7;3310:23;3306:32;3303:52;;;3351:1;3348;3341:12;3303:52;3390:9;3377:23;3409:30;3433:5;3409:30;:::i;3474:249::-;3543:6;3596:2;3584:9;3575:7;3571:23;3567:32;3564:52;;;3612:1;3609;3602:12;3564:52;3644:9;3638:16;3663:30;3687:5;3663:30;:::i;3728:450::-;3797:6;3850:2;3838:9;3829:7;3825:23;3821:32;3818:52;;;3866:1;3863;3856:12;3818:52;3906:9;3893:23;3939:18;3931:6;3928:30;3925:50;;;3971:1;3968;3961:12;3925:50;3994:22;;4047:4;4039:13;;4035:27;-1:-1:-1;4025:55:1;;4076:1;4073;4066:12;4025:55;4099:73;4164:7;4159:2;4146:16;4141:2;4137;4133:11;4099:73;:::i;4183:184::-;4241:6;4294:2;4282:9;4273:7;4269:23;4265:32;4262:52;;;4310:1;4307;4300:12;4262:52;4333:28;4351:9;4333:28;:::i;4372:258::-;4439:6;4447;4500:2;4488:9;4479:7;4475:23;4471:32;4468:52;;;4516:1;4513;4506:12;4468:52;4539:28;4557:9;4539:28;:::i;4635:180::-;4694:6;4747:2;4735:9;4726:7;4722:23;4718:32;4715:52;;;4763:1;4760;4753:12;4715:52;-1:-1:-1;4786:23:1;;4635:180;-1:-1:-1;4635:180:1:o;4820:182::-;4877:6;4930:2;4918:9;4909:7;4905:23;4901:32;4898:52;;;4946:1;4943;4936:12;4898:52;4969:27;4986:9;4969:27;:::i;5007:685::-;5100:6;5108;5116;5169:2;5157:9;5148:7;5144:23;5140:32;5137:52;;;5185:1;5182;5175:12;5137:52;5208:27;5225:9;5208:27;:::i;:::-;5198:37;;5286:2;5275:9;5271:18;5258:32;5309:18;5350:2;5342:6;5339:14;5336:34;;;5366:1;5363;5356:12;5336:34;5404:6;5393:9;5389:22;5379:32;;5449:7;5442:4;5438:2;5434:13;5430:27;5420:55;;5471:1;5468;5461:12;5420:55;5511:2;5498:16;5537:2;5529:6;5526:14;5523:34;;;5553:1;5550;5543:12;5523:34;5606:7;5601:2;5591:6;5588:1;5584:14;5580:2;5576:23;5572:32;5569:45;5566:65;;;5627:1;5624;5617:12;5566:65;5658:2;5654;5650:11;5640:21;;5680:6;5670:16;;;;;5007:685;;;;;:::o;5697:257::-;5738:3;5776:5;5770:12;5803:6;5798:3;5791:19;5819:63;5875:6;5868:4;5863:3;5859:14;5852:4;5845:5;5841:16;5819:63;:::i;:::-;5936:2;5915:15;-1:-1:-1;;5911:29:1;5902:39;;;;5943:4;5898:50;;5697:257;-1:-1:-1;;5697:257:1:o;5959:1527::-;6183:3;6221:6;6215:13;6247:4;6260:51;6304:6;6299:3;6294:2;6286:6;6282:15;6260:51;:::i;:::-;6374:13;;6333:16;;;;6396:55;6374:13;6333:16;6418:15;;;6396:55;:::i;:::-;6540:13;;6473:20;;;6513:1;;6600;6622:18;;;;6675;;;;6702:93;;6780:4;6770:8;6766:19;6754:31;;6702:93;6843:2;6833:8;6830:16;6810:18;6807:40;6804:167;;;-1:-1:-1;;;6870:33:1;;6926:4;6923:1;6916:15;6956:4;6877:3;6944:17;6804:167;6987:18;7014:110;;;;7138:1;7133:328;;;;6980:481;;7014:110;-1:-1:-1;;7049:24:1;;7035:39;;7094:20;;;;-1:-1:-1;7014:110:1;;7133:328;13506:1;13499:14;;;13543:4;13530:18;;7228:1;7242:169;7256:8;7253:1;7250:15;7242:169;;;7338:14;;7323:13;;;7316:37;7381:16;;;;7273:10;;7242:169;;;7246:3;;7442:8;7435:5;7431:20;7424:27;;6980:481;-1:-1:-1;7477:3:1;;5959:1527;-1:-1:-1;;;;;;;;;;;5959:1527:1:o;7909:488::-;-1:-1:-1;;;;;8178:15:1;;;8160:34;;8230:15;;8225:2;8210:18;;8203:43;8277:2;8262:18;;8255:34;;;8325:3;8320:2;8305:18;;8298:31;;;8103:4;;8346:45;;8371:19;;8363:6;8346:45;:::i;:::-;8338:53;7909:488;-1:-1:-1;;;;;;7909:488:1:o;8594:219::-;8743:2;8732:9;8725:21;8706:4;8763:44;8803:2;8792:9;8788:18;8780:6;8763:44;:::i;10265:398::-;10467:2;10449:21;;;10506:2;10486:18;;;10479:30;10545:34;10540:2;10525:18;;10518:62;-1:-1:-1;;;10611:2:1;10596:18;;10589:32;10653:3;10638:19;;10265:398::o;11027:356::-;11229:2;11211:21;;;11248:18;;;11241:30;11307:34;11302:2;11287:18;;11280:62;11374:2;11359:18;;11027:356::o;13559:224::-;13598:3;13626:6;13659:2;13656:1;13652:10;13689:2;13686:1;13682:10;13720:3;13716:2;13712:12;13707:3;13704:21;13701:47;;;13728:18;;:::i;:::-;13764:13;;13559:224;-1:-1:-1;;;;13559:224:1:o;13788:128::-;13828:3;13859:1;13855:6;13852:1;13849:13;13846:39;;;13865:18;;:::i;:::-;-1:-1:-1;13901:9:1;;13788:128::o;13921:120::-;13961:1;13987;13977:35;;13992:18;;:::i;:::-;-1:-1:-1;14026:9:1;;13921:120::o;14046:168::-;14086:7;14152:1;14148;14144:6;14140:14;14137:1;14134:21;14129:1;14122:9;14115:17;14111:45;14108:71;;;14159:18;;:::i;:::-;-1:-1:-1;14199:9:1;;14046:168::o;14219:125::-;14259:4;14287:1;14284;14281:8;14278:34;;;14292:18;;:::i;:::-;-1:-1:-1;14329:9:1;;14219:125::o;14349:258::-;14421:1;14431:113;14445:6;14442:1;14439:13;14431:113;;;14521:11;;;14515:18;14502:11;;;14495:39;14467:2;14460:10;14431:113;;;14562:6;14559:1;14556:13;14553:48;;;-1:-1:-1;;14597:1:1;14579:16;;14572:27;14349:258::o;14612:380::-;14691:1;14687:12;;;;14734;;;14755:61;;14809:4;14801:6;14797:17;14787:27;;14755:61;14862:2;14854:6;14851:14;14831:18;14828:38;14825:161;;;14908:10;14903:3;14899:20;14896:1;14889:31;14943:4;14940:1;14933:15;14971:4;14968:1;14961:15;14825:161;;14612:380;;;:::o;14997:135::-;15036:3;-1:-1:-1;;15057:17:1;;15054:43;;;15077:18;;:::i;:::-;-1:-1:-1;15124:1:1;15113:13;;14997:135::o;15137:112::-;15169:1;15195;15185:35;;15200:18;;:::i;:::-;-1:-1:-1;15234:9:1;;15137:112::o;15254:127::-;15315:10;15310:3;15306:20;15303:1;15296:31;15346:4;15343:1;15336:15;15370:4;15367:1;15360:15;15386:127;15447:10;15442:3;15438:20;15435:1;15428:31;15478:4;15475:1;15468:15;15502:4;15499:1;15492:15;15518:127;15579:10;15574:3;15570:20;15567:1;15560:31;15610:4;15607:1;15600:15;15634:4;15631:1;15624:15;15650:127;15711:10;15706:3;15702:20;15699:1;15692:31;15742:4;15739:1;15732:15;15766:4;15763:1;15756:15;15782:131;-1:-1:-1;;;;;;15856:32:1;;15846:43;;15836:71;;15903:1;15900;15893:12

Swarm Source

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