ETH Price: $3,463.89 (+3.90%)
Gas: 5 Gwei

Token

Lucifer Game (LCFR)
 

Overview

Max Total Supply

28 LCFR

Holders

27

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 LCFR
0xc522d29797faa98114e8c536904ed4b9f14c50b2
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:
LuciferGame

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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

// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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: erc721a/contracts/ERC721A.sol

// Creator: Chiru Labs

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

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

// File: contracts/Lucifer Game.sol

pragma solidity 0.8.15;

contract LuciferGame is ERC721A, Ownable {
    string private baseTokenURI;

    bool public isSaleOpen;

    uint256 public constant MAX_SUPPLY = 1000;

    uint256 public price = 0.05 ether;

    mapping(address => bool) public whitelistAddr;
    mapping(address => bool) public isMinted;

    constructor(string memory baseURI) ERC721A("Lucifer Game", "LCFR") {
        setBaseURI(baseURI);
    }

    modifier soldOut(uint256 _count) {
        require(
            totalSupply() + _count <= MAX_SUPPLY,
            "Transaction will exceed maximum available supply"
        );
        _;
    }

    // Admin only functions

    function changePrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function withdraw() external onlyOwner {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }

    function flipSaleStatus() external onlyOwner {
        isSaleOpen = !isSaleOpen;
    }

    function whitelistAddress(address[] calldata users) external onlyOwner {
        for (uint256 i; i < users.length; i++) {
            whitelistAddr[users[i]] = true;
        }
    }

    // Set some LCFR aside
    function reserveLuciferGame(uint256 _count)
        external
        onlyOwner
        soldOut(_count)
    {
        mint(msg.sender, _count);
    }

    function airdrop(address[] memory _addresses, uint256 _count)
        external
        onlyOwner
        soldOut(_count * _addresses.length)
    {
        require(_addresses.length > 0, "No address found for airdrop");
        for (uint256 i; i < _addresses.length; i++) {
            mint(_addresses[i], _count);
        }
    }

    function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
    }

    // Getter functions

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

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

    // Public mint

    function publicMint() external payable soldOut(1) {
        require(isSaleOpen, "Mint is not live yet");
        require(!isMinted[msg.sender], "Already minted");

        if (!whitelistAddr[msg.sender]) {
            require(
                msg.value >= price,
                "Incorrect ether sent with this transaction"
            );
        }
        isMinted[msg.sender] = true;
        mint(msg.sender, 1);
    }

    function mint(address _addr, uint256 _quantitiy) private {
        _safeMint(_addr, _quantitiy);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"airdrop","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":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"reserveLuciferGame","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistAddr","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"}],"name":"whitelistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266b1a2bc2ec50000600b553480156200001c57600080fd5b50604051620022ab380380620022ab8339810160408190526200003f916200019f565b6040518060400160405280600c81526020016b4c7563696665722047616d6560a01b815250604051806040016040528060048152602001632621a32960e11b81525081600290816200009291906200030a565b506003620000a182826200030a565b5050600160005550620000b433620000c6565b620000bf8162000118565b50620003d6565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001775760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b60096200018582826200030a565b5050565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215620001b357600080fd5b82516001600160401b0380821115620001cb57600080fd5b818501915085601f830112620001e057600080fd5b815181811115620001f557620001f562000189565b604051601f8201601f19908116603f0116810190838211818310171562000220576200022062000189565b8160405282815288868487010111156200023957600080fd5b600093505b828410156200025d57848401860151818501870152928501926200023e565b828411156200026f5760008684830101525b98975050505050505050565b600181811c908216806200029057607f821691505b602082108103620002b157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200030557600081815260208120601f850160051c81016020861015620002e05750805b601f850160051c820191505b818110156200030157828155600101620002ec565b5050505b505050565b81516001600160401b0381111562000326576200032662000189565b6200033e816200033784546200027b565b84620002b7565b602080601f8311600181146200037657600084156200035d5750858301515b600019600386901b1c1916600185901b17855562000301565b600085815260208120601f198616915b82811015620003a75788860151825594840194600190910190840162000386565b5085821015620003c65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611ec580620003e66000396000f3fe6080604052600436106101cd5760003560e01c8063715018a6116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c5146104ff578063f2fde38b14610548578063f9f2a7ce14610568578063fe34eeff1461059857600080fd5b8063b88d4fde1461048a578063c204642c146104aa578063c87b56dd146104ca578063ce03ec93146104ea57600080fd5b8063a035b1fe116100d1578063a035b1fe14610414578063a22cb4651461042a578063a2b40d191461044a578063b31d61b01461046a57600080fd5b8063715018a6146103cc5780638da5cb5b146103e157806395d89b41146103ff57600080fd5b806323b872dd1161016f57806342842e0e1161013e57806342842e0e1461034c57806355f804b31461036c5780636352211e1461038c57806370a08231146103ac57600080fd5b806323b872dd146102f957806326092b831461031957806332cb6b0c146103215780633ccfd60b1461033757600080fd5b8063081812fc116101ab578063081812fc14610259578063095ea7b31461029157806318160ddd146102b35780631a081330146102df57600080fd5b806301ffc9a7146101d257806306fdde0314610207578063080a57f914610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611736565b6105b8565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c61060a565b6040516101fe91906117ab565b34801561023557600080fd5b506101f26102443660046117da565b600c6020526000908152604090205460ff1681565b34801561026557600080fd5b506102796102743660046117f5565b61069c565b6040516001600160a01b0390911681526020016101fe565b34801561029d57600080fd5b506102b16102ac36600461180e565b6106e0565b005b3480156102bf57600080fd5b506102d1600154600054036000190190565b6040519081526020016101fe565b3480156102eb57600080fd5b50600a546101f29060ff1681565b34801561030557600080fd5b506102b1610314366004611838565b61076d565b6102b1610778565b34801561032d57600080fd5b506102d16103e881565b34801561034357600080fd5b506102b1610900565b34801561035857600080fd5b506102b1610367366004611838565b6109b5565b34801561037857600080fd5b506102b1610387366004611911565b6109d0565b34801561039857600080fd5b506102796103a73660046117f5565b610a0a565b3480156103b857600080fd5b506102d16103c73660046117da565b610a1c565b3480156103d857600080fd5b506102b1610a6a565b3480156103ed57600080fd5b506008546001600160a01b0316610279565b34801561040b57600080fd5b5061021c610aa0565b34801561042057600080fd5b506102d1600b5481565b34801561043657600080fd5b506102b1610445366004611959565b610aaf565b34801561045657600080fd5b506102b16104653660046117f5565b610b44565b34801561047657600080fd5b506102b1610485366004611995565b610b73565b34801561049657600080fd5b506102b16104a5366004611a09565b610c0f565b3480156104b657600080fd5b506102b16104c5366004611a84565b610c60565b3480156104d657600080fd5b5061021c6104e53660046117f5565b610d65565b3480156104f657600080fd5b506102b1610de9565b34801561050b57600080fd5b506101f261051a366004611b36565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561055457600080fd5b506102b16105633660046117da565b610e27565b34801561057457600080fd5b506101f26105833660046117da565b600d6020526000908152604090205460ff1681565b3480156105a457600080fd5b506102b16105b33660046117f5565b610ebf565b60006001600160e01b031982166380ac58cd60e01b14806105e957506001600160e01b03198216635b5e139f60e01b145b8061060457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461061990611b69565b80601f016020809104026020016040519081016040528092919081815260200182805461064590611b69565b80156106925780601f1061066757610100808354040283529160200191610692565b820191906000526020600020905b81548152906001019060200180831161067557829003601f168201915b5050505050905090565b60006106a782610f31565b6106c4576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106eb82610a0a565b9050806001600160a01b0316836001600160a01b03160361071f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061073f575061073d813361051a565b155b1561075d576040516367d9dca160e11b815260040160405180910390fd5b610768838383610f6a565b505050565b610768838383610fc6565b60016103e88161078f600154600054036000190190565b6107999190611bb9565b11156107c05760405162461bcd60e51b81526004016107b790611bd1565b60405180910390fd5b600a5460ff166108095760405162461bcd60e51b8152602060048201526014602482015273135a5b9d081a5cc81b9bdd081b1a5d99481e595d60621b60448201526064016107b7565b336000908152600d602052604090205460ff161561085a5760405162461bcd60e51b815260206004820152600e60248201526d105b1c9958591e481b5a5b9d195960921b60448201526064016107b7565b336000908152600c602052604090205460ff166108d657600b543410156108d65760405162461bcd60e51b815260206004820152602a60248201527f496e636f72726563742065746865722073656e742077697468207468697320746044820152693930b739b0b1ba34b7b760b11b60648201526084016107b7565b336000818152600d60205260409020805460ff191660019081179091556108fd91906111b4565b50565b6008546001600160a01b0316331461092a5760405162461bcd60e51b81526004016107b790611c21565b604051600090339047908381818185875af1925050503d806000811461096c576040519150601f19603f3d011682016040523d82523d6000602084013e610971565b606091505b50509050806108fd5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016107b7565b61076883838360405180602001604052806000815250610c0f565b6008546001600160a01b031633146109fa5760405162461bcd60e51b81526004016107b790611c21565b6009610a068282611ca4565b5050565b6000610a15826111be565b5192915050565b60006001600160a01b038216610a45576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610a945760405162461bcd60e51b81526004016107b790611c21565b610a9e60006112e5565b565b60606003805461061990611b69565b336001600160a01b03831603610ad85760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610b6e5760405162461bcd60e51b81526004016107b790611c21565b600b55565b6008546001600160a01b03163314610b9d5760405162461bcd60e51b81526004016107b790611c21565b60005b81811015610768576001600c6000858585818110610bc057610bc0611d63565b9050602002016020810190610bd591906117da565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610c0781611d79565b915050610ba0565b610c1a848484610fc6565b6001600160a01b0383163b15158015610c3c5750610c3a84848484611337565b155b15610c5a576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610c8a5760405162461bcd60e51b81526004016107b790611c21565b8151610c969082611d92565b6103e881610cab600154600054036000190190565b610cb59190611bb9565b1115610cd35760405162461bcd60e51b81526004016107b790611bd1565b6000835111610d245760405162461bcd60e51b815260206004820152601c60248201527f4e6f206164647265737320666f756e6420666f722061697264726f700000000060448201526064016107b7565b60005b8351811015610c5a57610d53848281518110610d4557610d45611d63565b6020026020010151846111b4565b80610d5d81611d79565b915050610d27565b6060610d7082610f31565b610d8d57604051630a14c4b560e41b815260040160405180910390fd5b6000610d97611423565b90508051600003610db75760405180602001604052806000815250610de2565b80610dc184611432565b604051602001610dd2929190611db1565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610e135760405162461bcd60e51b81526004016107b790611c21565b600a805460ff19811660ff90911615179055565b6008546001600160a01b03163314610e515760405162461bcd60e51b81526004016107b790611c21565b6001600160a01b038116610eb65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107b7565b6108fd816112e5565b6008546001600160a01b03163314610ee95760405162461bcd60e51b81526004016107b790611c21565b806103e881610eff600154600054036000190190565b610f099190611bb9565b1115610f275760405162461bcd60e51b81526004016107b790611bd1565b610a0633836111b4565b600081600111158015610f45575060005482105b8015610604575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610fd1826111be565b9050836001600160a01b031681600001516001600160a01b0316146110085760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806110265750611026853361051a565b806110415750336110368461069c565b6001600160a01b0316145b90508061106157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661108857604051633a954ecd60e21b815260040160405180910390fd5b61109460008487610f6a565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661116857600054821461116857805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610a068282611532565b604080516060810182526000808252602082018190529181019190915281806001111580156111ee575060005481105b156112cc57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906112ca5780516001600160a01b031615611261579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156112c5579392505050565b611261565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061136c903390899088908890600401611de0565b6020604051808303816000875af19250505080156113a7575060408051601f3d908101601f191682019092526113a491810190611e1d565b60015b611405573d8080156113d5576040519150601f19603f3d011682016040523d82523d6000602084013e6113da565b606091505b5080516000036113fd576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461061990611b69565b6060816000036114595750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611483578061146d81611d79565b915061147c9050600a83611e50565b915061145d565b6000816001600160401b0381111561149d5761149d611874565b6040519080825280601f01601f1916602001820160405280156114c7576020820181803683370190505b5090505b841561141b576114dc600183611e64565b91506114e9600a86611e7b565b6114f4906030611bb9565b60f81b81838151811061150957611509611d63565b60200101906001600160f81b031916908160001a90535061152b600a86611e50565b94506114cb565b610a0682826040518060200160405280600081525061076883838360016000546001600160a01b03851661157857604051622e076360e81b815260040160405180910390fd5b836000036115995760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561164a57506001600160a01b0387163b15155b156116d2575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461169b6000888480600101955088611337565b6116b8576040516368d2bf6b60e11b815260040160405180910390fd5b8082036116505782600054146116cd57600080fd5b611717565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036116d3575b506000556111ad565b6001600160e01b0319811681146108fd57600080fd5b60006020828403121561174857600080fd5b8135610de281611720565b60005b8381101561176e578181015183820152602001611756565b83811115610c5a5750506000910152565b60008151808452611797816020860160208601611753565b601f01601f19169290920160200192915050565b602081526000610de2602083018461177f565b80356001600160a01b03811681146117d557600080fd5b919050565b6000602082840312156117ec57600080fd5b610de2826117be565b60006020828403121561180757600080fd5b5035919050565b6000806040838503121561182157600080fd5b61182a836117be565b946020939093013593505050565b60008060006060848603121561184d57600080fd5b611856846117be565b9250611864602085016117be565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156118b2576118b2611874565b604052919050565b60006001600160401b038311156118d3576118d3611874565b6118e6601f8401601f191660200161188a565b90508281528383830111156118fa57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561192357600080fd5b81356001600160401b0381111561193957600080fd5b8201601f8101841361194a57600080fd5b61141b848235602084016118ba565b6000806040838503121561196c57600080fd5b611975836117be565b91506020830135801515811461198a57600080fd5b809150509250929050565b600080602083850312156119a857600080fd5b82356001600160401b03808211156119bf57600080fd5b818501915085601f8301126119d357600080fd5b8135818111156119e257600080fd5b8660208260051b85010111156119f757600080fd5b60209290920196919550909350505050565b60008060008060808587031215611a1f57600080fd5b611a28856117be565b9350611a36602086016117be565b92506040850135915060608501356001600160401b03811115611a5857600080fd5b8501601f81018713611a6957600080fd5b611a78878235602084016118ba565b91505092959194509250565b60008060408385031215611a9757600080fd5b82356001600160401b0380821115611aae57600080fd5b818501915085601f830112611ac257600080fd5b8135602082821115611ad657611ad6611874565b8160051b9250611ae781840161188a565b8281529284018101928181019089851115611b0157600080fd5b948201945b84861015611b2657611b17866117be565b82529482019490820190611b06565b9997909101359750505050505050565b60008060408385031215611b4957600080fd5b611b52836117be565b9150611b60602084016117be565b90509250929050565b600181811c90821680611b7d57607f821691505b602082108103611b9d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611bcc57611bcc611ba3565b500190565b60208082526030908201527f5472616e73616374696f6e2077696c6c20657863656564206d6178696d756d2060408201526f617661696c61626c6520737570706c7960801b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f82111561076857600081815260208120601f850160051c81016020861015611c7d5750805b601f850160051c820191505b81811015611c9c57828155600101611c89565b505050505050565b81516001600160401b03811115611cbd57611cbd611874565b611cd181611ccb8454611b69565b84611c56565b602080601f831160018114611d065760008415611cee5750858301515b600019600386901b1c1916600185901b178555611c9c565b600085815260208120601f198616915b82811015611d3557888601518255948401946001909101908401611d16565b5085821015611d535787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b600060018201611d8b57611d8b611ba3565b5060010190565b6000816000190483118215151615611dac57611dac611ba3565b500290565b60008351611dc3818460208801611753565b835190830190611dd7818360208801611753565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e139083018461177f565b9695505050505050565b600060208284031215611e2f57600080fd5b8151610de281611720565b634e487b7160e01b600052601260045260246000fd5b600082611e5f57611e5f611e3a565b500490565b600082821015611e7657611e76611ba3565b500390565b600082611e8a57611e8a611e3a565b50069056fea26469706673582212202e7663e58ab29b06bfd30f0f636d6c4ed06de7f14930432b5f98b462826cf5e164736f6c634300080f003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c8063715018a6116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c5146104ff578063f2fde38b14610548578063f9f2a7ce14610568578063fe34eeff1461059857600080fd5b8063b88d4fde1461048a578063c204642c146104aa578063c87b56dd146104ca578063ce03ec93146104ea57600080fd5b8063a035b1fe116100d1578063a035b1fe14610414578063a22cb4651461042a578063a2b40d191461044a578063b31d61b01461046a57600080fd5b8063715018a6146103cc5780638da5cb5b146103e157806395d89b41146103ff57600080fd5b806323b872dd1161016f57806342842e0e1161013e57806342842e0e1461034c57806355f804b31461036c5780636352211e1461038c57806370a08231146103ac57600080fd5b806323b872dd146102f957806326092b831461031957806332cb6b0c146103215780633ccfd60b1461033757600080fd5b8063081812fc116101ab578063081812fc14610259578063095ea7b31461029157806318160ddd146102b35780631a081330146102df57600080fd5b806301ffc9a7146101d257806306fdde0314610207578063080a57f914610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611736565b6105b8565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c61060a565b6040516101fe91906117ab565b34801561023557600080fd5b506101f26102443660046117da565b600c6020526000908152604090205460ff1681565b34801561026557600080fd5b506102796102743660046117f5565b61069c565b6040516001600160a01b0390911681526020016101fe565b34801561029d57600080fd5b506102b16102ac36600461180e565b6106e0565b005b3480156102bf57600080fd5b506102d1600154600054036000190190565b6040519081526020016101fe565b3480156102eb57600080fd5b50600a546101f29060ff1681565b34801561030557600080fd5b506102b1610314366004611838565b61076d565b6102b1610778565b34801561032d57600080fd5b506102d16103e881565b34801561034357600080fd5b506102b1610900565b34801561035857600080fd5b506102b1610367366004611838565b6109b5565b34801561037857600080fd5b506102b1610387366004611911565b6109d0565b34801561039857600080fd5b506102796103a73660046117f5565b610a0a565b3480156103b857600080fd5b506102d16103c73660046117da565b610a1c565b3480156103d857600080fd5b506102b1610a6a565b3480156103ed57600080fd5b506008546001600160a01b0316610279565b34801561040b57600080fd5b5061021c610aa0565b34801561042057600080fd5b506102d1600b5481565b34801561043657600080fd5b506102b1610445366004611959565b610aaf565b34801561045657600080fd5b506102b16104653660046117f5565b610b44565b34801561047657600080fd5b506102b1610485366004611995565b610b73565b34801561049657600080fd5b506102b16104a5366004611a09565b610c0f565b3480156104b657600080fd5b506102b16104c5366004611a84565b610c60565b3480156104d657600080fd5b5061021c6104e53660046117f5565b610d65565b3480156104f657600080fd5b506102b1610de9565b34801561050b57600080fd5b506101f261051a366004611b36565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561055457600080fd5b506102b16105633660046117da565b610e27565b34801561057457600080fd5b506101f26105833660046117da565b600d6020526000908152604090205460ff1681565b3480156105a457600080fd5b506102b16105b33660046117f5565b610ebf565b60006001600160e01b031982166380ac58cd60e01b14806105e957506001600160e01b03198216635b5e139f60e01b145b8061060457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461061990611b69565b80601f016020809104026020016040519081016040528092919081815260200182805461064590611b69565b80156106925780601f1061066757610100808354040283529160200191610692565b820191906000526020600020905b81548152906001019060200180831161067557829003601f168201915b5050505050905090565b60006106a782610f31565b6106c4576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106eb82610a0a565b9050806001600160a01b0316836001600160a01b03160361071f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061073f575061073d813361051a565b155b1561075d576040516367d9dca160e11b815260040160405180910390fd5b610768838383610f6a565b505050565b610768838383610fc6565b60016103e88161078f600154600054036000190190565b6107999190611bb9565b11156107c05760405162461bcd60e51b81526004016107b790611bd1565b60405180910390fd5b600a5460ff166108095760405162461bcd60e51b8152602060048201526014602482015273135a5b9d081a5cc81b9bdd081b1a5d99481e595d60621b60448201526064016107b7565b336000908152600d602052604090205460ff161561085a5760405162461bcd60e51b815260206004820152600e60248201526d105b1c9958591e481b5a5b9d195960921b60448201526064016107b7565b336000908152600c602052604090205460ff166108d657600b543410156108d65760405162461bcd60e51b815260206004820152602a60248201527f496e636f72726563742065746865722073656e742077697468207468697320746044820152693930b739b0b1ba34b7b760b11b60648201526084016107b7565b336000818152600d60205260409020805460ff191660019081179091556108fd91906111b4565b50565b6008546001600160a01b0316331461092a5760405162461bcd60e51b81526004016107b790611c21565b604051600090339047908381818185875af1925050503d806000811461096c576040519150601f19603f3d011682016040523d82523d6000602084013e610971565b606091505b50509050806108fd5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016107b7565b61076883838360405180602001604052806000815250610c0f565b6008546001600160a01b031633146109fa5760405162461bcd60e51b81526004016107b790611c21565b6009610a068282611ca4565b5050565b6000610a15826111be565b5192915050565b60006001600160a01b038216610a45576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610a945760405162461bcd60e51b81526004016107b790611c21565b610a9e60006112e5565b565b60606003805461061990611b69565b336001600160a01b03831603610ad85760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610b6e5760405162461bcd60e51b81526004016107b790611c21565b600b55565b6008546001600160a01b03163314610b9d5760405162461bcd60e51b81526004016107b790611c21565b60005b81811015610768576001600c6000858585818110610bc057610bc0611d63565b9050602002016020810190610bd591906117da565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610c0781611d79565b915050610ba0565b610c1a848484610fc6565b6001600160a01b0383163b15158015610c3c5750610c3a84848484611337565b155b15610c5a576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610c8a5760405162461bcd60e51b81526004016107b790611c21565b8151610c969082611d92565b6103e881610cab600154600054036000190190565b610cb59190611bb9565b1115610cd35760405162461bcd60e51b81526004016107b790611bd1565b6000835111610d245760405162461bcd60e51b815260206004820152601c60248201527f4e6f206164647265737320666f756e6420666f722061697264726f700000000060448201526064016107b7565b60005b8351811015610c5a57610d53848281518110610d4557610d45611d63565b6020026020010151846111b4565b80610d5d81611d79565b915050610d27565b6060610d7082610f31565b610d8d57604051630a14c4b560e41b815260040160405180910390fd5b6000610d97611423565b90508051600003610db75760405180602001604052806000815250610de2565b80610dc184611432565b604051602001610dd2929190611db1565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610e135760405162461bcd60e51b81526004016107b790611c21565b600a805460ff19811660ff90911615179055565b6008546001600160a01b03163314610e515760405162461bcd60e51b81526004016107b790611c21565b6001600160a01b038116610eb65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107b7565b6108fd816112e5565b6008546001600160a01b03163314610ee95760405162461bcd60e51b81526004016107b790611c21565b806103e881610eff600154600054036000190190565b610f099190611bb9565b1115610f275760405162461bcd60e51b81526004016107b790611bd1565b610a0633836111b4565b600081600111158015610f45575060005482105b8015610604575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610fd1826111be565b9050836001600160a01b031681600001516001600160a01b0316146110085760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806110265750611026853361051a565b806110415750336110368461069c565b6001600160a01b0316145b90508061106157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661108857604051633a954ecd60e21b815260040160405180910390fd5b61109460008487610f6a565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661116857600054821461116857805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610a068282611532565b604080516060810182526000808252602082018190529181019190915281806001111580156111ee575060005481105b156112cc57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906112ca5780516001600160a01b031615611261579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156112c5579392505050565b611261565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061136c903390899088908890600401611de0565b6020604051808303816000875af19250505080156113a7575060408051601f3d908101601f191682019092526113a491810190611e1d565b60015b611405573d8080156113d5576040519150601f19603f3d011682016040523d82523d6000602084013e6113da565b606091505b5080516000036113fd576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461061990611b69565b6060816000036114595750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611483578061146d81611d79565b915061147c9050600a83611e50565b915061145d565b6000816001600160401b0381111561149d5761149d611874565b6040519080825280601f01601f1916602001820160405280156114c7576020820181803683370190505b5090505b841561141b576114dc600183611e64565b91506114e9600a86611e7b565b6114f4906030611bb9565b60f81b81838151811061150957611509611d63565b60200101906001600160f81b031916908160001a90535061152b600a86611e50565b94506114cb565b610a0682826040518060200160405280600081525061076883838360016000546001600160a01b03851661157857604051622e076360e81b815260040160405180910390fd5b836000036115995760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561164a57506001600160a01b0387163b15155b156116d2575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461169b6000888480600101955088611337565b6116b8576040516368d2bf6b60e11b815260040160405180910390fd5b8082036116505782600054146116cd57600080fd5b611717565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036116d3575b506000556111ad565b6001600160e01b0319811681146108fd57600080fd5b60006020828403121561174857600080fd5b8135610de281611720565b60005b8381101561176e578181015183820152602001611756565b83811115610c5a5750506000910152565b60008151808452611797816020860160208601611753565b601f01601f19169290920160200192915050565b602081526000610de2602083018461177f565b80356001600160a01b03811681146117d557600080fd5b919050565b6000602082840312156117ec57600080fd5b610de2826117be565b60006020828403121561180757600080fd5b5035919050565b6000806040838503121561182157600080fd5b61182a836117be565b946020939093013593505050565b60008060006060848603121561184d57600080fd5b611856846117be565b9250611864602085016117be565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156118b2576118b2611874565b604052919050565b60006001600160401b038311156118d3576118d3611874565b6118e6601f8401601f191660200161188a565b90508281528383830111156118fa57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561192357600080fd5b81356001600160401b0381111561193957600080fd5b8201601f8101841361194a57600080fd5b61141b848235602084016118ba565b6000806040838503121561196c57600080fd5b611975836117be565b91506020830135801515811461198a57600080fd5b809150509250929050565b600080602083850312156119a857600080fd5b82356001600160401b03808211156119bf57600080fd5b818501915085601f8301126119d357600080fd5b8135818111156119e257600080fd5b8660208260051b85010111156119f757600080fd5b60209290920196919550909350505050565b60008060008060808587031215611a1f57600080fd5b611a28856117be565b9350611a36602086016117be565b92506040850135915060608501356001600160401b03811115611a5857600080fd5b8501601f81018713611a6957600080fd5b611a78878235602084016118ba565b91505092959194509250565b60008060408385031215611a9757600080fd5b82356001600160401b0380821115611aae57600080fd5b818501915085601f830112611ac257600080fd5b8135602082821115611ad657611ad6611874565b8160051b9250611ae781840161188a565b8281529284018101928181019089851115611b0157600080fd5b948201945b84861015611b2657611b17866117be565b82529482019490820190611b06565b9997909101359750505050505050565b60008060408385031215611b4957600080fd5b611b52836117be565b9150611b60602084016117be565b90509250929050565b600181811c90821680611b7d57607f821691505b602082108103611b9d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611bcc57611bcc611ba3565b500190565b60208082526030908201527f5472616e73616374696f6e2077696c6c20657863656564206d6178696d756d2060408201526f617661696c61626c6520737570706c7960801b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f82111561076857600081815260208120601f850160051c81016020861015611c7d5750805b601f850160051c820191505b81811015611c9c57828155600101611c89565b505050505050565b81516001600160401b03811115611cbd57611cbd611874565b611cd181611ccb8454611b69565b84611c56565b602080601f831160018114611d065760008415611cee5750858301515b600019600386901b1c1916600185901b178555611c9c565b600085815260208120601f198616915b82811015611d3557888601518255948401946001909101908401611d16565b5085821015611d535787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b600060018201611d8b57611d8b611ba3565b5060010190565b6000816000190483118215151615611dac57611dac611ba3565b500290565b60008351611dc3818460208801611753565b835190830190611dd7818360208801611753565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e139083018461177f565b9695505050505050565b600060208284031215611e2f57600080fd5b8151610de281611720565b634e487b7160e01b600052601260045260246000fd5b600082611e5f57611e5f611e3a565b500490565b600082821015611e7657611e76611ba3565b500390565b600082611e8a57611e8a611e3a565b50069056fea26469706673582212202e7663e58ab29b06bfd30f0f636d6c4ed06de7f14930432b5f98b462826cf5e164736f6c634300080f0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

48143:2696:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29658:355;;;;;;;;;;-1:-1:-1;29658:355:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;29658:355:0;;;;;;;;32853:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;48350:45::-;;;;;;;;;;-1:-1:-1;48350:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;34453:245;;;;;;;;;;-1:-1:-1;34453:245:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2061:32:1;;;2043:51;;2031:2;2016:18;34453:245:0;1897:203:1;34016:371:0;;;;;;;;;;-1:-1:-1;34016:371:0;;;;;:::i;:::-;;:::i;:::-;;28907:303;;;;;;;;;;;;50253:1;29161:12;28951:7;29145:13;:28;-1:-1:-1;;29145:46:0;;28907:303;;;;2510:25:1;;;2498:2;2483:18;28907:303:0;2364:177:1;48227:22:0;;;;;;;;;;-1:-1:-1;48227:22:0;;;;;;;;35441:170;;;;;;;;;;-1:-1:-1;35441:170:0;;;;;:::i;:::-;;:::i;50292:432::-;;;:::i;48258:41::-;;;;;;;;;;;;48295:4;48258:41;;48898:173;;;;;;;;;;;;;:::i;35682:185::-;;;;;;;;;;-1:-1:-1;35682:185:0;;;;;:::i;:::-;;:::i;49904:101::-;;;;;;;;;;-1:-1:-1;49904:101:0;;;;;:::i;:::-;;:::i;32661:125::-;;;;;;;;;;-1:-1:-1;32661:125:0;;;;;:::i;:::-;;:::i;30077:206::-;;;;;;;;;;-1:-1:-1;30077:206:0;;;;;:::i;:::-;;:::i;7092:103::-;;;;;;;;;;;;;:::i;6441:87::-;;;;;;;;;;-1:-1:-1;6514:6:0;;-1:-1:-1;;;;;6514:6:0;6441:87;;33022:104;;;;;;;;;;;;;:::i;48308:33::-;;;;;;;;;;;;;;;;34770:319;;;;;;;;;;-1:-1:-1;34770:319:0;;;;;:::i;:::-;;:::i;48801:89::-;;;;;;;;;;-1:-1:-1;48801:89:0;;;;;:::i;:::-;;:::i;49175:185::-;;;;;;;;;;-1:-1:-1;49175:185:0;;;;;:::i;:::-;;:::i;35938:406::-;;;;;;;;;;-1:-1:-1;35938:406:0;;;;;:::i;:::-;;:::i;49558:338::-;;;;;;;;;;-1:-1:-1;49558:338:0;;;;;:::i;:::-;;:::i;33197:415::-;;;;;;;;;;-1:-1:-1;33197:415:0;;;;;:::i;:::-;;:::i;49079:88::-;;;;;;;;;;;;;:::i;35160:214::-;;;;;;;;;;-1:-1:-1;35160:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;35331:25:0;;;35302:4;35331:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35160:214;7350:238;;;;;;;;;;-1:-1:-1;7350:238:0;;;;;:::i;:::-;;:::i;48402:40::-;;;;;;;;;;-1:-1:-1;48402:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;49396:154;;;;;;;;;;-1:-1:-1;49396:154:0;;;;;:::i;:::-;;:::i;29658:355::-;29805:4;-1:-1:-1;;;;;;29847:40:0;;-1:-1:-1;;;29847:40:0;;:105;;-1:-1:-1;;;;;;;29904:48:0;;-1:-1:-1;;;29904:48:0;29847:105;:158;;;-1:-1:-1;;;;;;;;;;19526:40:0;;;29969:36;29827:178;29658:355;-1:-1:-1;;29658:355:0:o;32853:100::-;32907:13;32940:5;32933:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32853:100;:::o;34453:245::-;34557:7;34587:16;34595:7;34587;:16::i;:::-;34582:64;;34612:34;;-1:-1:-1;;;34612:34:0;;;;;;;;;;;34582:64;-1:-1:-1;34666:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34666:24:0;;34453:245::o;34016:371::-;34089:13;34105:24;34121:7;34105:15;:24::i;:::-;34089:40;;34150:5;-1:-1:-1;;;;;34144:11:0;:2;-1:-1:-1;;;;;34144:11:0;;34140:48;;34164:24;;-1:-1:-1;;;34164:24:0;;;;;;;;;;;34140:48;5224:10;-1:-1:-1;;;;;34205:21:0;;;;;;:63;;-1:-1:-1;34231:37:0;34248:5;5224:10;35160:214;:::i;34231:37::-;34230:38;34205:63;34201:138;;;34292:35;;-1:-1:-1;;;34292:35:0;;;;;;;;;;;34201:138;34351:28;34360:2;34364:7;34373:5;34351:8;:28::i;:::-;34078:309;34016:371;;:::o;35441:170::-;35575:28;35585:4;35591:2;35595:7;35575:9;:28::i;50292:432::-;50339:1;48295:4;48646:6;48630:13;50253:1;29161:12;28951:7;29145:13;:28;-1:-1:-1;;29145:46:0;;28907:303;48630:13;:22;;;;:::i;:::-;:36;;48608:134;;;;-1:-1:-1;;;48608:134:0;;;;;;;:::i;:::-;;;;;;;;;50361:10:::1;::::0;::::1;;50353:43;;;::::0;-1:-1:-1;;;50353:43:0;;8364:2:1;50353:43:0::1;::::0;::::1;8346:21:1::0;8403:2;8383:18;;;8376:30;-1:-1:-1;;;8422:18:1;;;8415:50;8482:18;;50353:43:0::1;8162:344:1::0;50353:43:0::1;50425:10;50416:20;::::0;;;:8:::1;:20;::::0;;;;;::::1;;50415:21;50407:48;;;::::0;-1:-1:-1;;;50407:48:0;;8713:2:1;50407:48:0::1;::::0;::::1;8695:21:1::0;8752:2;8732:18;;;8725:30;-1:-1:-1;;;8771:18:1;;;8764:44;8825:18;;50407:48:0::1;8511:338:1::0;50407:48:0::1;50487:10;50473:25;::::0;;;:13:::1;:25;::::0;;;;;::::1;;50468:181;;50554:5;;50541:9;:18;;50515:122;;;::::0;-1:-1:-1;;;50515:122:0;;9056:2:1;50515:122:0::1;::::0;::::1;9038:21:1::0;9095:2;9075:18;;;9068:30;9134:34;9114:18;;;9107:62;-1:-1:-1;;;9185:18:1;;;9178:40;9235:19;;50515:122:0::1;8854:406:1::0;50515:122:0::1;50668:10;50659:20;::::0;;;:8:::1;:20;::::0;;;;:27;;-1:-1:-1;;50659:27:0::1;50682:4;50659:27:::0;;::::1;::::0;;;50697:19:::1;::::0;50668:10;50697:4:::1;:19::i;:::-;50292:432:::0;:::o;48898:173::-;6514:6;;-1:-1:-1;;;;;6514:6:0;5224:10;6661:23;6653:68;;;;-1:-1:-1;;;6653:68:0;;;;;;;:::i;:::-;48967:49:::1;::::0;48949:12:::1;::::0;48967:10:::1;::::0;48990:21:::1;::::0;48949:12;48967:49;48949:12;48967:49;48990:21;48967:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48948:68;;;49035:7;49027:36;;;::::0;-1:-1:-1;;;49027:36:0;;10038:2:1;49027:36:0::1;::::0;::::1;10020:21:1::0;10077:2;10057:18;;;10050:30;-1:-1:-1;;;10096:18:1;;;10089:46;10152:18;;49027:36:0::1;9836:340:1::0;35682:185:0;35820:39;35837:4;35843:2;35847:7;35820:39;;;;;;;;;;;;:16;:39::i;49904:101::-;6514:6;;-1:-1:-1;;;;;6514:6:0;5224:10;6661:23;6653:68;;;;-1:-1:-1;;;6653:68:0;;;;;;;:::i;:::-;49975:12:::1;:22;49990:7:::0;49975:12;:22:::1;:::i;:::-;;49904:101:::0;:::o;32661:125::-;32725:7;32752:21;32765:7;32752:12;:21::i;:::-;:26;;32661:125;-1:-1:-1;;32661:125:0:o;30077:206::-;30141:7;-1:-1:-1;;;;;30165:19:0;;30161:60;;30193:28;;-1:-1:-1;;;30193:28:0;;;;;;;;;;;30161:60;-1:-1:-1;;;;;;30247:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;30247:27:0;;30077:206::o;7092:103::-;6514:6;;-1:-1:-1;;;;;6514:6:0;5224:10;6661:23;6653:68;;;;-1:-1:-1;;;6653:68:0;;;;;;;:::i;:::-;7157:30:::1;7184:1;7157:18;:30::i;:::-;7092:103::o:0;33022:104::-;33078:13;33111:7;33104:14;;;;;:::i;34770:319::-;5224:10;-1:-1:-1;;;;;34901:24:0;;;34897:54;;34934:17;;-1:-1:-1;;;34934:17:0;;;;;;;;;;;34897:54;5224:10;34964:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34964:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34964:53:0;;;;;;;;;;35033:48;;540:41:1;;;34964:42:0;;5224:10;35033:48;;513:18:1;35033:48:0;;;;;;;34770:319;;:::o;48801:89::-;6514:6;;-1:-1:-1;;;;;6514:6:0;5224:10;6661:23;6653:68;;;;-1:-1:-1;;;6653:68:0;;;;;;;:::i;:::-;48868:5:::1;:14:::0;48801:89::o;49175:185::-;6514:6;;-1:-1:-1;;;;;6514:6:0;5224:10;6661:23;6653:68;;;;-1:-1:-1;;;6653:68:0;;;;;;;:::i;:::-;49262:9:::1;49257:96;49273:16:::0;;::::1;49257:96;;;49337:4;49311:13;:23;49325:5;;49331:1;49325:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;49311:23:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;49311:23:0;:30;;-1:-1:-1;;49311:30:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49291:3;::::1;::::0;::::1;:::i;:::-;;;;49257:96;;35938:406:::0;36105:28;36115:4;36121:2;36125:7;36105:9;:28::i;:::-;-1:-1:-1;;;;;36162:13:0;;9087:20;9135:8;;36162:89;;;;;36195:56;36226:4;36232:2;36236:7;36245:5;36195:30;:56::i;:::-;36194:57;36162:89;36144:193;;;36285:40;;-1:-1:-1;;;36285:40:0;;;;;;;;;;;36144:193;35938:406;;;;:::o;49558:338::-;6514:6;;-1:-1:-1;;;;;6514:6:0;5224:10;6661:23;6653:68;;;;-1:-1:-1;;;6653:68:0;;;;;;;:::i;:::-;49683:17;;49674:26:::1;::::0;:6;:26:::1;:::i;:::-;48295:4;48646:6;48630:13;50253:1:::0;29161:12;28951:7;29145:13;:28;-1:-1:-1;;29145:46:0;;28907:303;48630:13:::1;:22;;;;:::i;:::-;:36;;48608:134;;;;-1:-1:-1::0;;;48608:134:0::1;;;;;;;:::i;:::-;49746:1:::2;49726:10;:17;:21;49718:62;;;::::0;-1:-1:-1;;;49718:62:0;;13032:2:1;49718:62:0::2;::::0;::::2;13014:21:1::0;13071:2;13051:18;;;13044:30;13110;13090:18;;;13083:58;13158:18;;49718:62:0::2;12830:352:1::0;49718:62:0::2;49796:9;49791:98;49811:10;:17;49807:1;:21;49791:98;;;49850:27;49855:10;49866:1;49855:13;;;;;;;;:::i;:::-;;;;;;;49870:6;49850:4;:27::i;:::-;49830:3:::0;::::2;::::0;::::2;:::i;:::-;;;;49791:98;;33197:415:::0;33315:13;33351:16;33359:7;33351;:16::i;:::-;33346:59;;33376:29;;-1:-1:-1;;;33376:29:0;;;;;;;;;;;33346:59;33418:21;33442:10;:8;:10::i;:::-;33418:34;;33489:7;33483:21;33508:1;33483:26;:121;;;;;;;;;;;;;;;;;33553:7;33562:18;:7;:16;:18::i;:::-;33536:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33483:121;33463:141;33197:415;-1:-1:-1;;;33197:415:0:o;49079:88::-;6514:6;;-1:-1:-1;;;;;6514:6:0;5224:10;6661:23;6653:68;;;;-1:-1:-1;;;6653:68:0;;;;;;;:::i;:::-;49149:10:::1;::::0;;-1:-1:-1;;49135:24:0;::::1;49149:10;::::0;;::::1;49148:11;49135:24;::::0;;49079:88::o;7350:238::-;6514:6;;-1:-1:-1;;;;;6514:6:0;5224:10;6661:23;6653:68;;;;-1:-1:-1;;;6653:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7453:22:0;::::1;7431:110;;;::::0;-1:-1:-1;;;7431:110:0;;13864:2:1;7431:110:0::1;::::0;::::1;13846:21:1::0;13903:2;13883:18;;;13876:30;13942:34;13922:18;;;13915:62;-1:-1:-1;;;13993:18:1;;;13986:36;14039:19;;7431:110:0::1;13662:402:1::0;7431:110:0::1;7552:28;7571:8;7552:18;:28::i;49396:154::-:0;6514:6;;-1:-1:-1;;;;;6514:6:0;5224:10;6661:23;6653:68;;;;-1:-1:-1;;;6653:68:0;;;;;;;:::i;:::-;49494:6:::1;48295:4;48646:6;48630:13;50253:1:::0;29161:12;28951:7;29145:13;:28;-1:-1:-1;;29145:46:0;;28907:303;48630:13:::1;:22;;;;:::i;:::-;:36;;48608:134;;;;-1:-1:-1::0;;;48608:134:0::1;;;;;;;:::i;:::-;49518:24:::2;49523:10;49535:6;49518:4;:24::i;36599:213::-:0;36656:4;36712:7;50253:1;36693:26;;:66;;;;;36746:13;;36736:7;:23;36693:66;:111;;;;-1:-1:-1;;36777:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;36777:27:0;;;;36776:28;;36599:213::o;44986:196::-;45101:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;45101:29:0;-1:-1:-1;;;;;45101:29:0;;;;;;;;;45146:28;;45101:24;;45146:28;;;;;;;44986:196;;;:::o;39929:2130::-;40044:35;40082:21;40095:7;40082:12;:21::i;:::-;40044:59;;40142:4;-1:-1:-1;;;;;40120:26:0;:13;:18;;;-1:-1:-1;;;;;40120:26:0;;40116:67;;40155:28;;-1:-1:-1;;;40155:28:0;;;;;;;;;;;40116:67;40196:22;5224:10;-1:-1:-1;;;;;40222:20:0;;;;:73;;-1:-1:-1;40259:36:0;40276:4;5224:10;35160:214;:::i;40259:36::-;40222:126;;;-1:-1:-1;5224:10:0;40312:20;40324:7;40312:11;:20::i;:::-;-1:-1:-1;;;;;40312:36:0;;40222:126;40196:153;;40367:17;40362:66;;40393:35;;-1:-1:-1;;;40393:35:0;;;;;;;;;;;40362:66;-1:-1:-1;;;;;40443:16:0;;40439:52;;40468:23;;-1:-1:-1;;;40468:23:0;;;;;;;;;;;40439:52;40612:35;40629:1;40633:7;40642:4;40612:8;:35::i;:::-;-1:-1:-1;;;;;40943:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;40943:31:0;;;-1:-1:-1;;;;;40943:31:0;;;-1:-1:-1;;40943:31:0;;;;;;;40989:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40989:29:0;;;;;;;;;;;41069:20;;;:11;:20;;;;;;41104:18;;-1:-1:-1;;;;;;41137:49:0;;;;-1:-1:-1;;;41170:15:0;41137:49;;;;;;;;;;41460:11;;41520:24;;;;;41563:13;;41069:20;;41520:24;;41563:13;41559:384;;41773:13;;41758:11;:28;41754:174;;41811:20;;41880:28;;;;-1:-1:-1;;;;;41854:54:0;-1:-1:-1;;;41854:54:0;-1:-1:-1;;;;;;41854:54:0;;;-1:-1:-1;;;;;41811:20:0;;41854:54;;;;41754:174;40918:1036;;;41990:7;41986:2;-1:-1:-1;;;;;41971:27:0;41980:4;-1:-1:-1;;;;;41971:27:0;;;;;;;;;;;42009:42;40033:2026;;39929:2130;;;:::o;50732:104::-;50800:28;50810:5;50817:10;50800:9;:28::i;31458:1141::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;31601:7:0;;50253:1;31650:23;;:47;;;;;31684:13;;31677:4;:20;31650:47;31646:886;;;31718:31;31752:17;;;:11;:17;;;;;;;;;31718:51;;;;;;;;;-1:-1:-1;;;;;31718:51:0;;;;-1:-1:-1;;;31718:51:0;;-1:-1:-1;;;;;31718:51:0;;;;;;;;-1:-1:-1;;;31718:51:0;;;;;;;;;;;;;;31788:729;;31838:14;;-1:-1:-1;;;;;31838:28:0;;31834:101;;31902:9;31458:1141;-1:-1:-1;;;31458:1141:0:o;31834:101::-;-1:-1:-1;;;32277:6:0;32322:17;;;;:11;:17;;;;;;;;;32310:29;;;;;;;;;-1:-1:-1;;;;;32310:29:0;;;;;-1:-1:-1;;;32310:29:0;;-1:-1:-1;;;;;32310:29:0;;;;;;;;-1:-1:-1;;;32310:29:0;;;;;;;;;;;;;32370:28;32366:109;;32438:9;31458:1141;-1:-1:-1;;;31458:1141:0:o;32366:109::-;32237:261;;;31699:833;31646:886;32560:31;;-1:-1:-1;;;32560:31:0;;;;;;;;;;;7748:191;7841:6;;;-1:-1:-1;;;;;7858:17:0;;;-1:-1:-1;;;;;;7858:17:0;;;;;;;7891:40;;7841:6;;;7858:17;7841:6;;7891:40;;7822:16;;7891:40;7811:128;7748:191;:::o;45674:772::-;45871:155;;-1:-1:-1;;;45871:155:0;;45837:4;;-1:-1:-1;;;;;45871:36:0;;;;;:155;;5224:10;;45957:4;;45980:7;;46006:5;;45871:155;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45871:155:0;;;;;;;;-1:-1:-1;;45871:155:0;;;;;;;;;;;;:::i;:::-;;;45854:585;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46197:6;:13;46214:1;46197:18;46193:235;;46243:40;;-1:-1:-1;;;46243:40:0;;;;;;;;;;;46193:235;46386:6;46380:13;46371:6;46367:2;46363:15;46356:38;45854:585;-1:-1:-1;;;;;;46082:55:0;-1:-1:-1;;;46082:55:0;;-1:-1:-1;45854:585:0;45674:772;;;;;;:::o;50040:113::-;50100:13;50133:12;50126:19;;;;;:::i;2676:723::-;2732:13;2953:5;2962:1;2953:10;2949:53;;-1:-1:-1;;2980:10:0;;;;;;;;;;;;-1:-1:-1;;;2980:10:0;;;;;2676:723::o;2949:53::-;3027:5;3012:12;3068:78;3075:9;;3068:78;;3101:8;;;;:::i;:::-;;-1:-1:-1;3124:10:0;;-1:-1:-1;3132:2:0;3124:10;;:::i;:::-;;;3068:78;;;3156:19;3188:6;-1:-1:-1;;;;;3178:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3178:17:0;;3156:39;;3206:154;3213:10;;3206:154;;3240:11;3250:1;3240:11;;:::i;:::-;;-1:-1:-1;3309:10:0;3317:2;3309:5;:10;:::i;:::-;3296:24;;:2;:24;:::i;:::-;3283:39;;3266:6;3273;3266:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3266:56:0;;;;;;;;-1:-1:-1;3337:11:0;3346:2;3337:11;;:::i;:::-;;;3206:154;;36820:104;36889:27;36899:2;36903:8;36889:27;;;;;;;;;;;;37410:32;37416:2;37420:8;37430:5;37437:4;37848:20;37871:13;-1:-1:-1;;;;;37899:16:0;;37895:48;;37924:19;;-1:-1:-1;;;37924:19:0;;;;;;;;;;;37895:48;37958:8;37970:1;37958:13;37954:44;;37980:18;;-1:-1:-1;;;37980:18:0;;;;;;;;;;;37954:44;-1:-1:-1;;;;;38349:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;38408:49:0;;-1:-1:-1;;;;;38349:44:0;;;;;;;38408:49;;;;-1:-1:-1;;38349:44:0;;;;;;38408:49;;;;;;;;;;;;;;;;38474:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;38524:66:0;;;;-1:-1:-1;;;38574:15:0;38524:66;;;;;;;;;;38474:25;38671:23;;;38715:4;:23;;;;-1:-1:-1;;;;;;38723:13:0;;9087:20;9135:8;;38723:15;38711:832;;;38759:505;38790:38;;38815:12;;-1:-1:-1;;;;;38790:38:0;;;38807:1;;38790:38;;38807:1;;38790:38;38882:212;38951:1;38984:2;39017:14;;;;;;39062:5;38882:30;:212::i;:::-;38851:365;;39152:40;;-1:-1:-1;;;39152:40:0;;;;;;;;;;;38851:365;39259:3;39243:12;:19;38759:505;;39345:12;39328:13;;:29;39324:43;;39359:8;;;39324:43;38711:832;;;39408:120;39439:40;;39464:14;;;;;-1:-1:-1;;;;;39439:40:0;;;39456:1;;39439:40;;39456:1;;39439:40;39523:3;39507:12;:19;39408:120;;38711:832;-1:-1:-1;39557:13:0;:28;39607:60;35938:406;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:173::-;1411:20;;-1:-1:-1;;;;;1460:31:1;;1450:42;;1440:70;;1506:1;1503;1496:12;1440:70;1343:173;;;:::o;1521:186::-;1580:6;1633:2;1621:9;1612:7;1608:23;1604:32;1601:52;;;1649:1;1646;1639:12;1601:52;1672:29;1691:9;1672:29;:::i;1712:180::-;1771:6;1824:2;1812:9;1803:7;1799:23;1795:32;1792:52;;;1840:1;1837;1830:12;1792:52;-1:-1:-1;1863:23:1;;1712:180;-1:-1:-1;1712:180:1:o;2105:254::-;2173:6;2181;2234:2;2222:9;2213:7;2209:23;2205:32;2202:52;;;2250:1;2247;2240:12;2202:52;2273:29;2292:9;2273:29;:::i;:::-;2263:39;2349:2;2334:18;;;;2321:32;;-1:-1:-1;;;2105:254:1:o;2546:328::-;2623:6;2631;2639;2692:2;2680:9;2671:7;2667:23;2663:32;2660:52;;;2708:1;2705;2698:12;2660:52;2731:29;2750:9;2731:29;:::i;:::-;2721:39;;2779:38;2813:2;2802:9;2798:18;2779:38;:::i;:::-;2769:48;;2864:2;2853:9;2849:18;2836:32;2826:42;;2546:328;;;;;:::o;2879:127::-;2940:10;2935:3;2931:20;2928:1;2921:31;2971:4;2968:1;2961:15;2995:4;2992:1;2985:15;3011:275;3082:2;3076:9;3147:2;3128:13;;-1:-1:-1;;3124:27:1;3112:40;;-1:-1:-1;;;;;3167:34:1;;3203:22;;;3164:62;3161:88;;;3229:18;;:::i;:::-;3265:2;3258:22;3011:275;;-1:-1:-1;3011:275:1:o;3291:407::-;3356:5;-1:-1:-1;;;;;3382:6:1;3379:30;3376:56;;;3412:18;;:::i;:::-;3450:57;3495:2;3474:15;;-1:-1:-1;;3470:29:1;3501:4;3466:40;3450:57;:::i;:::-;3441:66;;3530:6;3523:5;3516:21;3570:3;3561:6;3556:3;3552:16;3549:25;3546:45;;;3587:1;3584;3577:12;3546:45;3636:6;3631:3;3624:4;3617:5;3613:16;3600:43;3690:1;3683:4;3674:6;3667:5;3663:18;3659:29;3652:40;3291:407;;;;;:::o;3703:451::-;3772:6;3825:2;3813:9;3804:7;3800:23;3796:32;3793:52;;;3841:1;3838;3831:12;3793:52;3881:9;3868:23;-1:-1:-1;;;;;3906:6:1;3903:30;3900:50;;;3946:1;3943;3936:12;3900:50;3969:22;;4022:4;4014:13;;4010:27;-1:-1:-1;4000:55:1;;4051:1;4048;4041:12;4000:55;4074:74;4140:7;4135:2;4122:16;4117:2;4113;4109:11;4074:74;:::i;4159:347::-;4224:6;4232;4285:2;4273:9;4264:7;4260:23;4256:32;4253:52;;;4301:1;4298;4291:12;4253:52;4324:29;4343:9;4324:29;:::i;:::-;4314:39;;4403:2;4392:9;4388:18;4375:32;4450:5;4443:13;4436:21;4429:5;4426:32;4416:60;;4472:1;4469;4462:12;4416:60;4495:5;4485:15;;;4159:347;;;;;:::o;4511:615::-;4597:6;4605;4658:2;4646:9;4637:7;4633:23;4629:32;4626:52;;;4674:1;4671;4664:12;4626:52;4714:9;4701:23;-1:-1:-1;;;;;4784:2:1;4776:6;4773:14;4770:34;;;4800:1;4797;4790:12;4770:34;4838:6;4827:9;4823:22;4813:32;;4883:7;4876:4;4872:2;4868:13;4864:27;4854:55;;4905:1;4902;4895:12;4854:55;4945:2;4932:16;4971:2;4963:6;4960:14;4957:34;;;4987:1;4984;4977:12;4957:34;5040:7;5035:2;5025:6;5022:1;5018:14;5014:2;5010:23;5006:32;5003:45;5000:65;;;5061:1;5058;5051:12;5000:65;5092:2;5084:11;;;;;5114:6;;-1:-1:-1;4511:615:1;;-1:-1:-1;;;;4511:615:1:o;5131:667::-;5226:6;5234;5242;5250;5303:3;5291:9;5282:7;5278:23;5274:33;5271:53;;;5320:1;5317;5310:12;5271:53;5343:29;5362:9;5343:29;:::i;:::-;5333:39;;5391:38;5425:2;5414:9;5410:18;5391:38;:::i;:::-;5381:48;;5476:2;5465:9;5461:18;5448:32;5438:42;;5531:2;5520:9;5516:18;5503:32;-1:-1:-1;;;;;5550:6:1;5547:30;5544:50;;;5590:1;5587;5580:12;5544:50;5613:22;;5666:4;5658:13;;5654:27;-1:-1:-1;5644:55:1;;5695:1;5692;5685:12;5644:55;5718:74;5784:7;5779:2;5766:16;5761:2;5757;5753:11;5718:74;:::i;:::-;5708:84;;;5131:667;;;;;;;:::o;5803:1022::-;5896:6;5904;5957:2;5945:9;5936:7;5932:23;5928:32;5925:52;;;5973:1;5970;5963:12;5925:52;6013:9;6000:23;-1:-1:-1;;;;;6083:2:1;6075:6;6072:14;6069:34;;;6099:1;6096;6089:12;6069:34;6137:6;6126:9;6122:22;6112:32;;6182:7;6175:4;6171:2;6167:13;6163:27;6153:55;;6204:1;6201;6194:12;6153:55;6240:2;6227:16;6262:4;6285:2;6281;6278:10;6275:36;;;6291:18;;:::i;:::-;6337:2;6334:1;6330:10;6320:20;;6360:28;6384:2;6380;6376:11;6360:28;:::i;:::-;6422:15;;;6492:11;;;6488:20;;;6453:12;;;;6520:19;;;6517:39;;;6552:1;6549;6542:12;6517:39;6576:11;;;;6596:148;6612:6;6607:3;6604:15;6596:148;;;6678:23;6697:3;6678:23;:::i;:::-;6666:36;;6629:12;;;;6722;;;;6596:148;;;6763:5;6800:18;;;;6787:32;;-1:-1:-1;;;;;;;5803:1022:1:o;6830:260::-;6898:6;6906;6959:2;6947:9;6938:7;6934:23;6930:32;6927:52;;;6975:1;6972;6965:12;6927:52;6998:29;7017:9;6998:29;:::i;:::-;6988:39;;7046:38;7080:2;7069:9;7065:18;7046:38;:::i;:::-;7036:48;;6830:260;;;;;:::o;7095:380::-;7174:1;7170:12;;;;7217;;;7238:61;;7292:4;7284:6;7280:17;7270:27;;7238:61;7345:2;7337:6;7334:14;7314:18;7311:38;7308:161;;7391:10;7386:3;7382:20;7379:1;7372:31;7426:4;7423:1;7416:15;7454:4;7451:1;7444:15;7308:161;;7095:380;;;:::o;7480:127::-;7541:10;7536:3;7532:20;7529:1;7522:31;7572:4;7569:1;7562:15;7596:4;7593:1;7586:15;7612:128;7652:3;7683:1;7679:6;7676:1;7673:13;7670:39;;;7689:18;;:::i;:::-;-1:-1:-1;7725:9:1;;7612:128::o;7745:412::-;7947:2;7929:21;;;7986:2;7966:18;;;7959:30;8025:34;8020:2;8005:18;;7998:62;-1:-1:-1;;;8091:2:1;8076:18;;8069:46;8147:3;8132:19;;7745:412::o;9265:356::-;9467:2;9449:21;;;9486:18;;;9479:30;9545:34;9540:2;9525:18;;9518:62;9612:2;9597:18;;9265:356::o;10307:545::-;10409:2;10404:3;10401:11;10398:448;;;10445:1;10470:5;10466:2;10459:17;10515:4;10511:2;10501:19;10585:2;10573:10;10569:19;10566:1;10562:27;10556:4;10552:38;10621:4;10609:10;10606:20;10603:47;;;-1:-1:-1;10644:4:1;10603:47;10699:2;10694:3;10690:12;10687:1;10683:20;10677:4;10673:31;10663:41;;10754:82;10772:2;10765:5;10762:13;10754:82;;;10817:17;;;10798:1;10787:13;10754:82;;;10758:3;;;10307:545;;;:::o;11028:1352::-;11154:3;11148:10;-1:-1:-1;;;;;11173:6:1;11170:30;11167:56;;;11203:18;;:::i;:::-;11232:97;11322:6;11282:38;11314:4;11308:11;11282:38;:::i;:::-;11276:4;11232:97;:::i;:::-;11384:4;;11448:2;11437:14;;11465:1;11460:663;;;;12167:1;12184:6;12181:89;;;-1:-1:-1;12236:19:1;;;12230:26;12181:89;-1:-1:-1;;10985:1:1;10981:11;;;10977:24;10973:29;10963:40;11009:1;11005:11;;;10960:57;12283:81;;11430:944;;11460:663;10254:1;10247:14;;;10291:4;10278:18;;-1:-1:-1;;11496:20:1;;;11614:236;11628:7;11625:1;11622:14;11614:236;;;11717:19;;;11711:26;11696:42;;11809:27;;;;11777:1;11765:14;;;;11644:19;;11614:236;;;11618:3;11878:6;11869:7;11866:19;11863:201;;;11939:19;;;11933:26;-1:-1:-1;;12022:1:1;12018:14;;;12034:3;12014:24;12010:37;12006:42;11991:58;11976:74;;11863:201;-1:-1:-1;;;;;12110:1:1;12094:14;;;12090:22;12077:36;;-1:-1:-1;11028:1352:1:o;12385:127::-;12446:10;12441:3;12437:20;12434:1;12427:31;12477:4;12474:1;12467:15;12501:4;12498:1;12491:15;12517:135;12556:3;12577:17;;;12574:43;;12597:18;;:::i;:::-;-1:-1:-1;12644:1:1;12633:13;;12517:135::o;12657:168::-;12697:7;12763:1;12759;12755:6;12751:14;12748:1;12745:21;12740:1;12733:9;12726:17;12722:45;12719:71;;;12770:18;;:::i;:::-;-1:-1:-1;12810:9:1;;12657:168::o;13187:470::-;13366:3;13404:6;13398:13;13420:53;13466:6;13461:3;13454:4;13446:6;13442:17;13420:53;:::i;:::-;13536:13;;13495:16;;;;13558:57;13536:13;13495:16;13592:4;13580:17;;13558:57;:::i;:::-;13631:20;;13187:470;-1:-1:-1;;;;13187:470:1:o;14069:489::-;-1:-1:-1;;;;;14338:15:1;;;14320:34;;14390:15;;14385:2;14370:18;;14363:43;14437:2;14422:18;;14415:34;;;14485:3;14480:2;14465:18;;14458:31;;;14263:4;;14506:46;;14532:19;;14524:6;14506:46;:::i;:::-;14498:54;14069:489;-1:-1:-1;;;;;;14069:489:1:o;14563:249::-;14632:6;14685:2;14673:9;14664:7;14660:23;14656:32;14653:52;;;14701:1;14698;14691:12;14653:52;14733:9;14727:16;14752:30;14776:5;14752:30;:::i;14817:127::-;14878:10;14873:3;14869:20;14866:1;14859:31;14909:4;14906:1;14899:15;14933:4;14930:1;14923:15;14949:120;14989:1;15015;15005:35;;15020:18;;:::i;:::-;-1:-1:-1;15054:9:1;;14949:120::o;15074:125::-;15114:4;15142:1;15139;15136:8;15133:34;;;15147:18;;:::i;:::-;-1:-1:-1;15184:9:1;;15074:125::o;15204:112::-;15236:1;15262;15252:35;;15267:18;;:::i;:::-;-1:-1:-1;15301:9:1;;15204:112::o

Swarm Source

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