ETH Price: $3,500.62 (+2.45%)
Gas: 14 Gwei

Token

CryptoClitLips (CCL$)
 

Overview

Max Total Supply

4,031 CCL$

Holders

376

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 CCL$
0xcc5bf3dac1f4b85f010c50a4cde9884daeace302
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:
CryptoClitLips

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-17
*/

// SPDX-License-Identifier: MIT

//CryptoClitLips
//4200 Nfts
//Firsts 3K Free Mint - Others 0.0069
//................................................................................
//................................................................................
//................................................................................
//................................................................................
//....................@@@@.........................@@@@@,,,*@@....................
//................@(/**,,,,,,,,,@...............@.,,,,,,,,,*,*(@..................
//...............@/**,,,,,@%(,,%,,@...........@.,%,.((.@,,,,*,*/@................
//.............@(/,*,*,,,@...@...%.@...........%. (@.....@,,,**,*(................
//............(/*,,*,,,@.......@( %.@........%  /#........@,,,*,**(@..............
//...........@/*,,,,,@...........@@(//.@@@@//*(@.............@*,*,*/@.............
//...........@*,,*@..............@*,....@@....*//@.............@@/(/@.............
//............@..............@,,....*/...../.....@.. @............................
//........................@,..@.@@,,,,.........@@@@... @..........................
//......................@,...@,@.@..@......@.  .@..@.... @........................
//.....................@,.  @.@@. @  .....@.   .@..@..... ........................
//....................,.   ....@.   .@.....,@..@...... @.. @......................
//...................@. .,................@....... @.... @. @.....................
//...................@..,@..@..@,...  ....@@%#..... @.@.. . @.....................
//...................@..,@..@..&&(//& ....@%#@..  ... .@.@@.@.....................
//................&(((((((....((//((&......@.....  .. ....*@......................
//.................&(#((//////(((#&.........@....  .. ...,@.......................
//....................&((#((((&&,,,.........@........ .,/@........................
//..........................@@@@,,@,.......@,...... @,@...........................
//............................@,....@/.....@/*....*@,.@...........................
//.............................@,@...................@.@..........................
//.............................@,....................@.@..........................
//............................%...***................@@...........................
//................************%((((%%@**************@%..(%........................
//...........................@@*@@@@@..............@%%%%%%@.......................
//................................................................................
//................................................................................
//................................................................................


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// 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 (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.0;








/**
 * @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 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

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

    function totalSupply() public view returns (uint256) {
        return currentIndex;
    }

    /**
     * @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) {
        require(owner != address(0), 'ERC721A: balance query for the zero address');
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * 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) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

    unchecked {
        for (uint256 curr = tokenId; curr >= 0; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }
    }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @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) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, 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);
        require(to != owner, 'ERC721A: approval to current owner');

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            'ERC721A: approve caller is not owner nor approved for all'
        );

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        require(_exists(tokenId), 'ERC721A: approved query for nonexistent token');

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: approve to caller');

        _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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: transfer to non ERC721Receiver implementer'
        );
    }

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

    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;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
    unchecked {
        _addressData[to].balance += uint128(quantity);
        _addressData[to].numberMinted += uint128(quantity);

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

        uint256 updatedIndex = startTokenId;

        for (uint256 i; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            if (safe) {
                require(
                    _checkOnERC721Received(address(0), to, updatedIndex, _data),
                    'ERC721A: transfer to non ERC721Receiver implementer'
                );
            }

            updatedIndex++;
        }

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

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
        getApproved(tokenId) == _msgSender() ||
        isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

        _ownerships[tokenId].addr = to;
        _ownerships[tokenId].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;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId].addr = prevOwnership.addr;
                _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
            }
        }
    }

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

    /**
     * @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 address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            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('ERC721A: transfer to non ERC721Receiver implementer');
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * 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`.
     */
    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.
     *
     * 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` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// File: contracts/cryptoclitlips.sol



pragma solidity ^0.8.4;




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

    uint256 public PRICE; // 0.0069 ether - 6900000000000000 wei price
    uint256 public MAX_SUPPLY; //4200
    string private BASE_URI; // ipfs://QmZdwDrmJuEbyLZd7HcDxRXTXNaiTcZd5dgzY3pS27vnKx/
    uint256 public FREE_MINT_LIMIT_PER_WALLET; // 2
    uint256 public MAX_MINT_AMOUNT_PER_TX; // 10
    bool public IS_SALE_ACTIVE; // false
    uint256 public FREE_MINT_IS_ALLOWED_UNTIL; // Free mint is allowed until 3000 mint
    bool public METADATA_FROZEN;

    mapping(address => uint256) private freeMintCountMap;

    constructor(uint256 price, uint256 maxSupply, string memory baseUri, uint256 freeMintAllowance, uint256 maxMintPerTx, bool isSaleActive, uint256 freeMintIsAllowedUntil) ERC721A("CryptoClitLips", "CCL$") {
        PRICE = price; 
        MAX_SUPPLY = maxSupply; 
        BASE_URI = baseUri; 
        FREE_MINT_LIMIT_PER_WALLET = freeMintAllowance;
        MAX_MINT_AMOUNT_PER_TX = maxMintPerTx;
        IS_SALE_ACTIVE = isSaleActive;
        FREE_MINT_IS_ALLOWED_UNTIL = freeMintIsAllowedUntil;
    }

    /** FREE MINT **/

    function updateFreeMintCount(address minter, uint256 count) private {
        freeMintCountMap[minter] += count;
    }

    function freeMintCount(address addr) public view returns (uint256) {
        return freeMintCountMap[addr];
    }

    /** GETTERS **/

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

    /** SETTERS **/

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

    function lowerMaxSupply(uint256 newMaxSupply) external onlyOwner {
        require(newMaxSupply < MAX_SUPPLY, "Invalid new max supply");
        require(newMaxSupply >= currentIndex, "Invalid new max supply");
        MAX_SUPPLY = newMaxSupply;
    }

    function setBaseURI(string memory customBaseURI_) external onlyOwner {
        require(!METADATA_FROZEN, "Metadata frozen!");
        BASE_URI = customBaseURI_;
    }

    function setFreeMintAllowance(uint256 freeMintAllowance) external onlyOwner {
        FREE_MINT_LIMIT_PER_WALLET = freeMintAllowance;
    }

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

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

    function setFreeMintAllowedUntil(uint256 freeMintIsAllowedUntil) external onlyOwner {
        FREE_MINT_IS_ALLOWED_UNTIL = freeMintIsAllowedUntil;
    }

    function freezeMetadata() external onlyOwner {
        METADATA_FROZEN = true;
    }

    /** MINT **/

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

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

        uint256 price = PRICE * _mintAmount;

        if (currentIndex < FREE_MINT_IS_ALLOWED_UNTIL) {
            uint256 remainingFreeMint = FREE_MINT_LIMIT_PER_WALLET - freeMintCountMap[msg.sender];
            if (remainingFreeMint > 0) {
                if (_mintAmount >= remainingFreeMint) {
                    price -= remainingFreeMint * PRICE;
                    updateFreeMintCount(msg.sender, remainingFreeMint);
                } else {
                    price -= _mintAmount * PRICE;
                    updateFreeMintCount(msg.sender, _mintAmount);
                }
            }
        }

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

        _safeMint(msg.sender, _mintAmount);
    }

    function mintOwner(address _to, uint256 _mintAmount) public mintCompliance(_mintAmount) onlyOwner {
        _safeMint(_to, _mintAmount);
    }

    /** PAYOUT **/

    address private payoutAddress1 =
    0x08b55717F3A8b9F228b9129d05a983A8D5118aD3;

   

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

        Address.sendValue(payable(payoutAddress1), balance / 1);

       
    }

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

    function setPayoutAddress(address addy, uint id) external onlyOwner {
        if (id == 0) {
            payoutAddress1 = addy;
        } 
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"string","name":"baseUri","type":"string"},{"internalType":"uint256","name":"freeMintAllowance","type":"uint256"},{"internalType":"uint256","name":"maxMintPerTx","type":"uint256"},{"internalType":"bool","name":"isSaleActive","type":"bool"},{"internalType":"uint256","name":"freeMintIsAllowedUntil","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"FREE_MINT_IS_ALLOWED_UNTIL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MINT_LIMIT_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IS_SALE_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_AMOUNT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"METADATA_FROZEN","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"freeMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freezeMetadata","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":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"lowerMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"customBaseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeMintAllowance","type":"uint256"}],"name":"setFreeMintAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeMintIsAllowedUntil","type":"uint256"}],"name":"setFreeMintAllowedUntil","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintPerTx","type":"uint256"}],"name":"setMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addy","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"setPayoutAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"customPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"saleIsActive","type":"bool"}],"name":"setSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawToThisAddress","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052601280546001600160a01b0319167308b55717f3a8b9f228b9129d05a983a8d5118ad31790553480156200003757600080fd5b5060405162002597380380620025978339810160408190526200005a9162000240565b604080518082018252600e81526d43727970746f436c69744c69707360901b60208083019182528351808501909452600484526310d0d30960e21b908401528151919291620000ac9160019162000184565b508051620000c290600290602084019062000184565b505050620000df620000d96200012e60201b60201c565b62000132565b60016008556009879055600a86905584516200010390600b90602088019062000184565b50600c93909355600d91909155600e805460ff1916911515919091179055600f5550620003b6915050565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001929062000363565b90600052602060002090601f016020900481019282620001b6576000855562000201565b82601f10620001d157805160ff191683800117855562000201565b8280016001018555821562000201579182015b8281111562000201578251825591602001919060010190620001e4565b506200020f92915062000213565b5090565b5b808211156200020f576000815560010162000214565b805180151581146200023b57600080fd5b919050565b600080600080600080600060e0888a0312156200025c57600080fd5b87516020808a015160408b01519299509750906001600160401b03808211156200028557600080fd5b818b0191508b601f8301126200029a57600080fd5b815181811115620002af57620002af620003a0565b604051601f8201601f19908116603f01168101908382118183101715620002da57620002da620003a0565b816040528281528e86848701011115620002f357600080fd5b600093505b82841015620003175784840186015181850187015292850192620002f8565b82841115620003295760008684830101525b809a5050505050505060608801519350608088015192506200034e60a089016200022a565b915060c0880151905092959891949750929550565b600181811c908216806200037857607f821691505b602082108114156200039a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6121d180620003c66000396000f3fe6080604052600436106102255760003560e01c8063715018a611610123578063a22cb465116100ab578063d111515d1161006f578063d111515d14610621578063deae121314610636578063e985e9c514610656578063f2fde38b1461069f578063fdb4953a146106bf57600080fd5b8063a22cb46514610581578063b0551ac4146105a1578063b88d4fde146105c1578063c4e9374d146105e1578063c87b56dd1461060157600080fd5b80638d859f3e116100f25780638d859f3e146105055780638da5cb5b1461051b57806391b7f5ed1461053957806395d89b4114610559578063a0712d681461056e57600080fd5b8063715018a61461049657806376d02b71146104ab578063841718a6146104c55780638b85e43d146104e557600080fd5b80633ccfd60b116101b15780635daa1fc3116101755780635daa1fc3146103eb5780635ecf8a8014610400578063616cdb1e146104365780636352211e1461045657806370a082311461047657600080fd5b80633ccfd60b146103605780634065b85f14610375578063408cbf941461038b57806342842e0e146103ab57806355f804b3146103cb57600080fd5b806309ef6527116101f857806309ef6527146102db57806310b0c052146102ff57806318160ddd1461031557806323b872dd1461032a57806332cb6b0c1461034a57600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b9575b600080fd5b34801561023657600080fd5b5061024a610245366004611e8b565b6106d9565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027461072b565b6040516102569190611fcf565b34801561028d57600080fd5b506102a161029c366004611f0e565b6107bd565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d4366004611e46565b61084d565b005b3480156102e757600080fd5b506102f1600d5481565b604051908152602001610256565b34801561030b57600080fd5b506102f1600c5481565b34801561032157600080fd5b506000546102f1565b34801561033657600080fd5b506102d9610345366004611d64565b610965565b34801561035657600080fd5b506102f1600a5481565b34801561036c57600080fd5b506102d9610970565b34801561038157600080fd5b506102f1600f5481565b34801561039757600080fd5b506102d96103a6366004611e46565b6109fa565b3480156103b757600080fd5b506102d96103c6366004611d64565b610ab8565b3480156103d757600080fd5b506102d96103e6366004611ec5565b610ad3565b3480156103f757600080fd5b506102d9610b38565b34801561040c57600080fd5b506102f161041b366004611d16565b6001600160a01b031660009081526011602052604090205490565b34801561044257600080fd5b506102d9610451366004611f0e565b610bb4565b34801561046257600080fd5b506102a1610471366004611f0e565b610bc1565b34801561048257600080fd5b506102f1610491366004611d16565b610bd3565b3480156104a257600080fd5b506102d9610c64565b3480156104b757600080fd5b50600e5461024a9060ff1681565b3480156104d157600080fd5b506102d96104e0366004611e70565b610c78565b3480156104f157600080fd5b506102d9610500366004611f0e565b610c93565b34801561051157600080fd5b506102f160095481565b34801561052757600080fd5b506007546001600160a01b03166102a1565b34801561054557600080fd5b506102d9610554366004611f0e565b610ca0565b34801561056557600080fd5b50610274610cad565b6102d961057c366004611f0e565b610cbc565b34801561058d57600080fd5b506102d961059c366004611e1c565b610e97565b3480156105ad57600080fd5b506102d96105bc366004611f0e565b610f5c565b3480156105cd57600080fd5b506102d96105dc366004611da0565b610f69565b3480156105ed57600080fd5b506102d96105fc366004611f0e565b610fa2565b34801561060d57600080fd5b5061027461061c366004611f0e565b611044565b34801561062d57600080fd5b506102d9611112565b34801561064257600080fd5b506102d9610651366004611e46565b611129565b34801561066257600080fd5b5061024a610671366004611d31565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106ab57600080fd5b506102d96106ba366004611d16565b611157565b3480156106cb57600080fd5b5060105461024a9060ff1681565b60006001600160e01b031982166380ac58cd60e01b148061070a57506001600160e01b03198216635b5e139f60e01b145b8061072557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461073a906120c3565b80601f0160208091040260200160405190810160405280929190818152602001828054610766906120c3565b80156107b35780601f10610788576101008083540402835291602001916107b3565b820191906000526020600020905b81548152906001019060200180831161079657829003601f168201915b5050505050905090565b60006107ca826000541190565b6108315760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061085882610bc1565b9050806001600160a01b0316836001600160a01b031614156108c75760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610828565b336001600160a01b03821614806108e357506108e38133610671565b6109555760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610828565b6109608383836111cd565b505050565b610960838383611229565b61097861150e565b600260085414156109cb5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610828565b600260085560125447906109f2906001600160a01b03166109ed60018461204d565b611568565b506001600855565b80600081118015610a0d5750600d548111155b610a505760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610828565b600a5481600054610a619190612035565b1115610aa65760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610828565b610aae61150e565b6109608383611681565b61096083838360405180602001604052806000815250610f69565b610adb61150e565b60105460ff1615610b215760405162461bcd60e51b815260206004820152601060248201526f4d657461646174612066726f7a656e2160801b6044820152606401610828565b8051610b3490600b906020840190611bdb565b5050565b610b4061150e565b6000610b546007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b9e576040519150601f19603f3d011682016040523d82523d6000602084013e610ba3565b606091505b5050905080610bb157600080fd5b50565b610bbc61150e565b600d55565b6000610bcc8261169b565b5192915050565b60006001600160a01b038216610c3f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610828565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610c6c61150e565b610c766000611772565b565b610c8061150e565b600e805460ff1916911515919091179055565b610c9b61150e565b600f55565b610ca861150e565b600955565b60606002805461073a906120c3565b80600081118015610ccf5750600d548111155b610d125760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610828565b600a5481600054610d239190612035565b1115610d685760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610828565b600e5460ff16610db05760405162461bcd60e51b815260206004820152601360248201527253616c65206973206e6f74206163746976652160681b6044820152606401610828565b600082600954610dc09190612061565b9050600f546000541015610e475733600090815260116020526040812054600c54610deb9190612080565b90508015610e4557808410610e2257600954610e079082612061565b610e119083612080565b9150610e1d33826117c4565b610e45565b600954610e2f9085612061565b610e399083612080565b9150610e4533856117c4565b505b80341015610e8d5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610828565b6109603384611681565b6001600160a01b038216331415610ef05760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610828565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f6461150e565b600c55565b610f74848484611229565b610f80848484846117f5565b610f9c5760405162461bcd60e51b815260040161082890611fe2565b50505050565b610faa61150e565b600a548110610ff45760405162461bcd60e51b8152602060048201526016602482015275496e76616c6964206e6577206d617820737570706c7960501b6044820152606401610828565b60005481101561103f5760405162461bcd60e51b8152602060048201526016602482015275496e76616c6964206e6577206d617820737570706c7960501b6044820152606401610828565b600a55565b6060611051826000541190565b6110b55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610828565b60006110bf611903565b90508051600014156110e0576040518060200160405280600081525061110b565b806110ea84611912565b6040516020016110fb929190611f53565b6040516020818303038152906040525b9392505050565b61111a61150e565b6010805460ff19166001179055565b61113161150e565b80610b3457601280546001600160a01b0384166001600160a01b03199091161790555050565b61115f61150e565b6001600160a01b0381166111c45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610828565b610bb181611772565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112348261169b565b80519091506000906001600160a01b0316336001600160a01b0316148061126b575033611260846107bd565b6001600160a01b0316145b8061127d5750815161127d9033610671565b9050806112e75760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610828565b846001600160a01b031682600001516001600160a01b03161461135b5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610828565b6001600160a01b0384166113bf5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610828565b6113cf60008484600001516111cd565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166114c457611477816000541190565b156114c4578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6007546001600160a01b03163314610c765760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610828565b804710156115b85760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610828565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611605576040519150601f19603f3d011682016040523d82523d6000602084013e61160a565b606091505b50509050806109605760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610828565b610b34828260405180602001604052806000815250611a10565b60408051808201909152600080825260208201526116ba826000541190565b6117195760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610828565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611768579392505050565b506000190161171b565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600090815260116020526040812080548392906117ec908490612035565b90915550505050565b60006001600160a01b0384163b156118f757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611839903390899088908890600401611f92565b602060405180830381600087803b15801561185357600080fd5b505af1925050508015611883575060408051601f3d908101601f1916820190925261188091810190611ea8565b60015b6118dd573d8080156118b1576040519150601f19603f3d011682016040523d82523d6000602084013e6118b6565b606091505b5080516118d55760405162461bcd60e51b815260040161082890611fe2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118fb565b5060015b949350505050565b6060600b805461073a906120c3565b6060816119365750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611960578061194a816120fe565b91506119599050600a8361204d565b915061193a565b60008167ffffffffffffffff81111561197b5761197b61216f565b6040519080825280601f01601f1916602001820160405280156119a5576020820181803683370190505b5090505b84156118fb576119ba600183612080565b91506119c7600a86612119565b6119d2906030612035565b60f81b8183815181106119e7576119e7612159565b60200101906001600160f81b031916908160001a905350611a09600a8661204d565b94506119a9565b61096083838360016000546001600160a01b038516611a7b5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610828565b83611ad95760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610828565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611bd25760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611bc657611baa60008884886117f5565b611bc65760405162461bcd60e51b815260040161082890611fe2565b60019182019101611b57565b50600055611507565b828054611be7906120c3565b90600052602060002090601f016020900481019282611c095760008555611c4f565b82601f10611c2257805160ff1916838001178555611c4f565b82800160010185558215611c4f579182015b82811115611c4f578251825591602001919060010190611c34565b50611c5b929150611c5f565b5090565b5b80821115611c5b5760008155600101611c60565b600067ffffffffffffffff80841115611c8f57611c8f61216f565b604051601f8501601f19908116603f01168101908282118183101715611cb757611cb761216f565b81604052809350858152868686011115611cd057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611d0157600080fd5b919050565b80358015158114611d0157600080fd5b600060208284031215611d2857600080fd5b61110b82611cea565b60008060408385031215611d4457600080fd5b611d4d83611cea565b9150611d5b60208401611cea565b90509250929050565b600080600060608486031215611d7957600080fd5b611d8284611cea565b9250611d9060208501611cea565b9150604084013590509250925092565b60008060008060808587031215611db657600080fd5b611dbf85611cea565b9350611dcd60208601611cea565b925060408501359150606085013567ffffffffffffffff811115611df057600080fd5b8501601f81018713611e0157600080fd5b611e1087823560208401611c74565b91505092959194509250565b60008060408385031215611e2f57600080fd5b611e3883611cea565b9150611d5b60208401611d06565b60008060408385031215611e5957600080fd5b611e6283611cea565b946020939093013593505050565b600060208284031215611e8257600080fd5b61110b82611d06565b600060208284031215611e9d57600080fd5b813561110b81612185565b600060208284031215611eba57600080fd5b815161110b81612185565b600060208284031215611ed757600080fd5b813567ffffffffffffffff811115611eee57600080fd5b8201601f81018413611eff57600080fd5b6118fb84823560208401611c74565b600060208284031215611f2057600080fd5b5035919050565b60008151808452611f3f816020860160208601612097565b601f01601f19169290920160200192915050565b60008351611f65818460208801612097565b835190830190611f79818360208801612097565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fc590830184611f27565b9695505050505050565b60208152600061110b6020830184611f27565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600082198211156120485761204861212d565b500190565b60008261205c5761205c612143565b500490565b600081600019048311821515161561207b5761207b61212d565b500290565b6000828210156120925761209261212d565b500390565b60005b838110156120b257818101518382015260200161209a565b83811115610f9c5750506000910152565b600181811c908216806120d757607f821691505b602082108114156120f857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121125761211261212d565b5060010190565b60008261212857612128612143565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610bb157600080fdfea2646970667358221220ff23f53b1c2792615a0bc412a24391b52b43d95b3ef74615019918dc28bcfdf664736f6c634300080700330000000000000000000000000000000000000000000000000018838370f34000000000000000000000000000000000000000000000000000000000000000106800000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bb80000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a647744726d4a754562794c5a643748634478525854584e616954635a643564677a593370533237766e4b782f00000000000000000000

Deployed Bytecode

0x6080604052600436106102255760003560e01c8063715018a611610123578063a22cb465116100ab578063d111515d1161006f578063d111515d14610621578063deae121314610636578063e985e9c514610656578063f2fde38b1461069f578063fdb4953a146106bf57600080fd5b8063a22cb46514610581578063b0551ac4146105a1578063b88d4fde146105c1578063c4e9374d146105e1578063c87b56dd1461060157600080fd5b80638d859f3e116100f25780638d859f3e146105055780638da5cb5b1461051b57806391b7f5ed1461053957806395d89b4114610559578063a0712d681461056e57600080fd5b8063715018a61461049657806376d02b71146104ab578063841718a6146104c55780638b85e43d146104e557600080fd5b80633ccfd60b116101b15780635daa1fc3116101755780635daa1fc3146103eb5780635ecf8a8014610400578063616cdb1e146104365780636352211e1461045657806370a082311461047657600080fd5b80633ccfd60b146103605780634065b85f14610375578063408cbf941461038b57806342842e0e146103ab57806355f804b3146103cb57600080fd5b806309ef6527116101f857806309ef6527146102db57806310b0c052146102ff57806318160ddd1461031557806323b872dd1461032a57806332cb6b0c1461034a57600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b9575b600080fd5b34801561023657600080fd5b5061024a610245366004611e8b565b6106d9565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027461072b565b6040516102569190611fcf565b34801561028d57600080fd5b506102a161029c366004611f0e565b6107bd565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d4366004611e46565b61084d565b005b3480156102e757600080fd5b506102f1600d5481565b604051908152602001610256565b34801561030b57600080fd5b506102f1600c5481565b34801561032157600080fd5b506000546102f1565b34801561033657600080fd5b506102d9610345366004611d64565b610965565b34801561035657600080fd5b506102f1600a5481565b34801561036c57600080fd5b506102d9610970565b34801561038157600080fd5b506102f1600f5481565b34801561039757600080fd5b506102d96103a6366004611e46565b6109fa565b3480156103b757600080fd5b506102d96103c6366004611d64565b610ab8565b3480156103d757600080fd5b506102d96103e6366004611ec5565b610ad3565b3480156103f757600080fd5b506102d9610b38565b34801561040c57600080fd5b506102f161041b366004611d16565b6001600160a01b031660009081526011602052604090205490565b34801561044257600080fd5b506102d9610451366004611f0e565b610bb4565b34801561046257600080fd5b506102a1610471366004611f0e565b610bc1565b34801561048257600080fd5b506102f1610491366004611d16565b610bd3565b3480156104a257600080fd5b506102d9610c64565b3480156104b757600080fd5b50600e5461024a9060ff1681565b3480156104d157600080fd5b506102d96104e0366004611e70565b610c78565b3480156104f157600080fd5b506102d9610500366004611f0e565b610c93565b34801561051157600080fd5b506102f160095481565b34801561052757600080fd5b506007546001600160a01b03166102a1565b34801561054557600080fd5b506102d9610554366004611f0e565b610ca0565b34801561056557600080fd5b50610274610cad565b6102d961057c366004611f0e565b610cbc565b34801561058d57600080fd5b506102d961059c366004611e1c565b610e97565b3480156105ad57600080fd5b506102d96105bc366004611f0e565b610f5c565b3480156105cd57600080fd5b506102d96105dc366004611da0565b610f69565b3480156105ed57600080fd5b506102d96105fc366004611f0e565b610fa2565b34801561060d57600080fd5b5061027461061c366004611f0e565b611044565b34801561062d57600080fd5b506102d9611112565b34801561064257600080fd5b506102d9610651366004611e46565b611129565b34801561066257600080fd5b5061024a610671366004611d31565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106ab57600080fd5b506102d96106ba366004611d16565b611157565b3480156106cb57600080fd5b5060105461024a9060ff1681565b60006001600160e01b031982166380ac58cd60e01b148061070a57506001600160e01b03198216635b5e139f60e01b145b8061072557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461073a906120c3565b80601f0160208091040260200160405190810160405280929190818152602001828054610766906120c3565b80156107b35780601f10610788576101008083540402835291602001916107b3565b820191906000526020600020905b81548152906001019060200180831161079657829003601f168201915b5050505050905090565b60006107ca826000541190565b6108315760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061085882610bc1565b9050806001600160a01b0316836001600160a01b031614156108c75760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610828565b336001600160a01b03821614806108e357506108e38133610671565b6109555760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610828565b6109608383836111cd565b505050565b610960838383611229565b61097861150e565b600260085414156109cb5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610828565b600260085560125447906109f2906001600160a01b03166109ed60018461204d565b611568565b506001600855565b80600081118015610a0d5750600d548111155b610a505760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610828565b600a5481600054610a619190612035565b1115610aa65760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610828565b610aae61150e565b6109608383611681565b61096083838360405180602001604052806000815250610f69565b610adb61150e565b60105460ff1615610b215760405162461bcd60e51b815260206004820152601060248201526f4d657461646174612066726f7a656e2160801b6044820152606401610828565b8051610b3490600b906020840190611bdb565b5050565b610b4061150e565b6000610b546007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b9e576040519150601f19603f3d011682016040523d82523d6000602084013e610ba3565b606091505b5050905080610bb157600080fd5b50565b610bbc61150e565b600d55565b6000610bcc8261169b565b5192915050565b60006001600160a01b038216610c3f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610828565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610c6c61150e565b610c766000611772565b565b610c8061150e565b600e805460ff1916911515919091179055565b610c9b61150e565b600f55565b610ca861150e565b600955565b60606002805461073a906120c3565b80600081118015610ccf5750600d548111155b610d125760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610828565b600a5481600054610d239190612035565b1115610d685760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610828565b600e5460ff16610db05760405162461bcd60e51b815260206004820152601360248201527253616c65206973206e6f74206163746976652160681b6044820152606401610828565b600082600954610dc09190612061565b9050600f546000541015610e475733600090815260116020526040812054600c54610deb9190612080565b90508015610e4557808410610e2257600954610e079082612061565b610e119083612080565b9150610e1d33826117c4565b610e45565b600954610e2f9085612061565b610e399083612080565b9150610e4533856117c4565b505b80341015610e8d5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610828565b6109603384611681565b6001600160a01b038216331415610ef05760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610828565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f6461150e565b600c55565b610f74848484611229565b610f80848484846117f5565b610f9c5760405162461bcd60e51b815260040161082890611fe2565b50505050565b610faa61150e565b600a548110610ff45760405162461bcd60e51b8152602060048201526016602482015275496e76616c6964206e6577206d617820737570706c7960501b6044820152606401610828565b60005481101561103f5760405162461bcd60e51b8152602060048201526016602482015275496e76616c6964206e6577206d617820737570706c7960501b6044820152606401610828565b600a55565b6060611051826000541190565b6110b55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610828565b60006110bf611903565b90508051600014156110e0576040518060200160405280600081525061110b565b806110ea84611912565b6040516020016110fb929190611f53565b6040516020818303038152906040525b9392505050565b61111a61150e565b6010805460ff19166001179055565b61113161150e565b80610b3457601280546001600160a01b0384166001600160a01b03199091161790555050565b61115f61150e565b6001600160a01b0381166111c45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610828565b610bb181611772565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112348261169b565b80519091506000906001600160a01b0316336001600160a01b0316148061126b575033611260846107bd565b6001600160a01b0316145b8061127d5750815161127d9033610671565b9050806112e75760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610828565b846001600160a01b031682600001516001600160a01b03161461135b5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610828565b6001600160a01b0384166113bf5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610828565b6113cf60008484600001516111cd565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166114c457611477816000541190565b156114c4578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6007546001600160a01b03163314610c765760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610828565b804710156115b85760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610828565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611605576040519150601f19603f3d011682016040523d82523d6000602084013e61160a565b606091505b50509050806109605760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610828565b610b34828260405180602001604052806000815250611a10565b60408051808201909152600080825260208201526116ba826000541190565b6117195760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610828565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611768579392505050565b506000190161171b565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600090815260116020526040812080548392906117ec908490612035565b90915550505050565b60006001600160a01b0384163b156118f757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611839903390899088908890600401611f92565b602060405180830381600087803b15801561185357600080fd5b505af1925050508015611883575060408051601f3d908101601f1916820190925261188091810190611ea8565b60015b6118dd573d8080156118b1576040519150601f19603f3d011682016040523d82523d6000602084013e6118b6565b606091505b5080516118d55760405162461bcd60e51b815260040161082890611fe2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118fb565b5060015b949350505050565b6060600b805461073a906120c3565b6060816119365750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611960578061194a816120fe565b91506119599050600a8361204d565b915061193a565b60008167ffffffffffffffff81111561197b5761197b61216f565b6040519080825280601f01601f1916602001820160405280156119a5576020820181803683370190505b5090505b84156118fb576119ba600183612080565b91506119c7600a86612119565b6119d2906030612035565b60f81b8183815181106119e7576119e7612159565b60200101906001600160f81b031916908160001a905350611a09600a8661204d565b94506119a9565b61096083838360016000546001600160a01b038516611a7b5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610828565b83611ad95760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610828565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611bd25760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611bc657611baa60008884886117f5565b611bc65760405162461bcd60e51b815260040161082890611fe2565b60019182019101611b57565b50600055611507565b828054611be7906120c3565b90600052602060002090601f016020900481019282611c095760008555611c4f565b82601f10611c2257805160ff1916838001178555611c4f565b82800160010185558215611c4f579182015b82811115611c4f578251825591602001919060010190611c34565b50611c5b929150611c5f565b5090565b5b80821115611c5b5760008155600101611c60565b600067ffffffffffffffff80841115611c8f57611c8f61216f565b604051601f8501601f19908116603f01168101908282118183101715611cb757611cb761216f565b81604052809350858152868686011115611cd057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611d0157600080fd5b919050565b80358015158114611d0157600080fd5b600060208284031215611d2857600080fd5b61110b82611cea565b60008060408385031215611d4457600080fd5b611d4d83611cea565b9150611d5b60208401611cea565b90509250929050565b600080600060608486031215611d7957600080fd5b611d8284611cea565b9250611d9060208501611cea565b9150604084013590509250925092565b60008060008060808587031215611db657600080fd5b611dbf85611cea565b9350611dcd60208601611cea565b925060408501359150606085013567ffffffffffffffff811115611df057600080fd5b8501601f81018713611e0157600080fd5b611e1087823560208401611c74565b91505092959194509250565b60008060408385031215611e2f57600080fd5b611e3883611cea565b9150611d5b60208401611d06565b60008060408385031215611e5957600080fd5b611e6283611cea565b946020939093013593505050565b600060208284031215611e8257600080fd5b61110b82611d06565b600060208284031215611e9d57600080fd5b813561110b81612185565b600060208284031215611eba57600080fd5b815161110b81612185565b600060208284031215611ed757600080fd5b813567ffffffffffffffff811115611eee57600080fd5b8201601f81018413611eff57600080fd5b6118fb84823560208401611c74565b600060208284031215611f2057600080fd5b5035919050565b60008151808452611f3f816020860160208601612097565b601f01601f19169290920160200192915050565b60008351611f65818460208801612097565b835190830190611f79818360208801612097565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fc590830184611f27565b9695505050505050565b60208152600061110b6020830184611f27565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600082198211156120485761204861212d565b500190565b60008261205c5761205c612143565b500490565b600081600019048311821515161561207b5761207b61212d565b500290565b6000828210156120925761209261212d565b500390565b60005b838110156120b257818101518382015260200161209a565b83811115610f9c5750506000910152565b600181811c908216806120d757607f821691505b602082108114156120f857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121125761211261212d565b5060010190565b60008261212857612128612143565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610bb157600080fdfea2646970667358221220ff23f53b1c2792615a0bc412a24391b52b43d95b3ef74615019918dc28bcfdf664736f6c63430008070033

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

0000000000000000000000000000000000000000000000000018838370f34000000000000000000000000000000000000000000000000000000000000000106800000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bb80000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a647744726d4a754562794c5a643748634478525854584e616954635a643564677a593370533237766e4b782f00000000000000000000

-----Decoded View---------------
Arg [0] : price (uint256): 6900000000000000
Arg [1] : maxSupply (uint256): 4200
Arg [2] : baseUri (string): ipfs://QmZdwDrmJuEbyLZd7HcDxRXTXNaiTcZd5dgzY3pS27vnKx/
Arg [3] : freeMintAllowance (uint256): 2
Arg [4] : maxMintPerTx (uint256): 10
Arg [5] : isSaleActive (bool): False
Arg [6] : freeMintIsAllowedUntil (uint256): 3000

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000018838370f34000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000001068
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000bb8
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d5a647744726d4a754562794c5a64374863447852585458
Arg [9] : 4e616954635a643564677a593370533237766e4b782f00000000000000000000


Deployed Bytecode Sourcemap

43647:4724:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30690:293;;;;;;;;;;-1:-1:-1;30690:293:0;;;;;:::i;:::-;;:::i;:::-;;;6280:14:1;;6273:22;6255:41;;6243:2;6228:18;30690:293:0;;;;;;;;32465:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34035:214::-;;;;;;;;;;-1:-1:-1;34035:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5578:32:1;;;5560:51;;5548:2;5533:18;34035:214:0;5414:203:1;33556:413:0;;;;;;;;;;-1:-1:-1;33556:413:0;;;;;:::i;:::-;;:::i;:::-;;44001:37;;;;;;;;;;;;;;;;;;;16396:25:1;;;16384:2;16369:18;44001:37:0;16250:177:1;43948:41:0;;;;;;;;;;;;;;;;30527:91;;;;;;;;;;-1:-1:-1;30571:7:0;30598:12;30527:91;;34911:162;;;;;;;;;;-1:-1:-1;34911:162:0;;;;;:::i;:::-;;:::i;43821:25::-;;;;;;;;;;;;;;;;47861:187;;;;;;;;;;;;;:::i;44093:41::-;;;;;;;;;;;;;;;;47591:144;;;;;;;;;;-1:-1:-1;47591:144:0;;;;;:::i;:::-;;:::i;35144:177::-;;;;;;;;;;-1:-1:-1;35144:177:0;;;;;:::i;:::-;;:::i;45598:169::-;;;;;;;;;;-1:-1:-1;45598:169:0;;;;;:::i;:::-;;:::i;48056:156::-;;;;;;;;;;;;;:::i;44946:115::-;;;;;;;;;;-1:-1:-1;44946:115:0;;;;;:::i;:::-;-1:-1:-1;;;;;45031:22:0;45004:7;45031:22;;;:16;:22;;;;;;;44946:115;45924:122;;;;;;;;;;-1:-1:-1;45924:122:0;;;;;:::i;:::-;;:::i;32274:124::-;;;;;;;;;;-1:-1:-1;32274:124:0;;;;;:::i;:::-;;:::i;31047:221::-;;;;;;;;;;-1:-1:-1;31047:221:0;;;;;:::i;:::-;;:::i;10761:103::-;;;;;;;;;;;;;:::i;44051:26::-;;;;;;;;;;-1:-1:-1;44051:26:0;;;;;;;;46054:109;;;;;;;;;;-1:-1:-1;46054:109:0;;;;;:::i;:::-;;:::i;46171:154::-;;;;;;;;;;-1:-1:-1;46171:154:0;;;;;:::i;:::-;;:::i;43749:20::-;;;;;;;;;;;;;;;;10113:87;;;;;;;;;;-1:-1:-1;10186:6:0;;-1:-1:-1;;;;;10186:6:0;10113:87;;45232:96;;;;;;;;;;-1:-1:-1;45232:96:0;;;;;:::i;:::-;;:::i;32634:104::-;;;;;;;;;;;;;:::i;46704:879::-;;;;;;:::i;:::-;;:::i;34321:288::-;;;;;;;;;;-1:-1:-1;34321:288:0;;;;;:::i;:::-;;:::i;45775:141::-;;;;;;;;;;-1:-1:-1;45775:141:0;;;;;:::i;:::-;;:::i;35392:355::-;;;;;;;;;;-1:-1:-1;35392:355:0;;;;;:::i;:::-;;:::i;45336:254::-;;;;;;;;;;-1:-1:-1;45336:254:0;;;;;:::i;:::-;;:::i;32809:343::-;;;;;;;;;;-1:-1:-1;32809:343:0;;;;;:::i;:::-;;:::i;46333:86::-;;;;;;;;;;;;;:::i;48220:148::-;;;;;;;;;;-1:-1:-1;48220:148:0;;;;;:::i;:::-;;:::i;34680:164::-;;;;;;;;;;-1:-1:-1;34680:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34801:25:0;;;34777:4;34801:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34680:164;11019:201;;;;;;;;;;-1:-1:-1;11019:201:0;;;;;:::i;:::-;;:::i;44181:27::-;;;;;;;;;;-1:-1:-1;44181:27:0;;;;;;;;30690:293;30792:4;-1:-1:-1;;;;;;30825:40:0;;-1:-1:-1;;;30825:40:0;;:101;;-1:-1:-1;;;;;;;30878:48:0;;-1:-1:-1;;;30878:48:0;30825:101;:150;;;-1:-1:-1;;;;;;;;;;23076:40:0;;;30939:36;30809:166;30690:293;-1:-1:-1;;30690:293:0:o;32465:100::-;32519:13;32552:5;32545:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32465:100;:::o;34035:214::-;34103:7;34131:16;34139:7;36059:4;36093:12;-1:-1:-1;36083:22:0;36002:111;34131:16;34123:74;;;;-1:-1:-1;;;34123:74:0;;15690:2:1;34123:74:0;;;15672:21:1;15729:2;15709:18;;;15702:30;15768:34;15748:18;;;15741:62;-1:-1:-1;;;15819:18:1;;;15812:43;15872:19;;34123:74:0;;;;;;;;;-1:-1:-1;34217:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34217:24:0;;34035:214::o;33556:413::-;33629:13;33645:24;33661:7;33645:15;:24::i;:::-;33629:40;;33694:5;-1:-1:-1;;;;;33688:11:0;:2;-1:-1:-1;;;;;33688:11:0;;;33680:58;;;;-1:-1:-1;;;33680:58:0;;12931:2:1;33680:58:0;;;12913:21:1;12970:2;12950:18;;;12943:30;13009:34;12989:18;;;12982:62;-1:-1:-1;;;13060:18:1;;;13053:32;13102:19;;33680:58:0;12729:398:1;33680:58:0;8744:10;-1:-1:-1;;;;;33773:21:0;;;;:62;;-1:-1:-1;33798:37:0;33815:5;8744:10;34680:164;:::i;33798:37::-;33751:169;;;;-1:-1:-1;;;33751:169:0;;9091:2:1;33751:169:0;;;9073:21:1;9130:2;9110:18;;;9103:30;9169:34;9149:18;;;9142:62;9240:27;9220:18;;;9213:55;9285:19;;33751:169:0;8889:421:1;33751:169:0;33933:28;33942:2;33946:7;33955:5;33933:8;:28::i;:::-;33618:351;33556:413;;:::o;34911:162::-;35037:28;35047:4;35053:2;35057:7;35037:9;:28::i;47861:187::-;9999:13;:11;:13::i;:::-;4541:1:::1;5139:7;;:19;;5131:63;;;::::0;-1:-1:-1;;;5131:63:0;;14914:2:1;5131:63:0::1;::::0;::::1;14896:21:1::0;14953:2;14933:18;;;14926:30;14992:33;14972:18;;;14965:61;15043:18;;5131:63:0::1;14712:355:1::0;5131:63:0::1;4541:1;5272:7;:18:::0;48000:14:::2;::::0;47940:21:::2;::::0;47974:55:::2;::::0;-1:-1:-1;;;;;48000:14:0::2;48017:11;48000:14:::0;47940:21;48017:11:::2;:::i;:::-;47974:17;:55::i;:::-;-1:-1:-1::0;4497:1:0::1;5451:7;:22:::0;47861:187::o;47591:144::-;47666:11;46525:1;46511:11;:15;:56;;;;;46545:22;;46530:11;:37;;46511:56;46503:89;;;;-1:-1:-1;;;46503:89:0;;7551:2:1;46503:89:0;;;7533:21:1;7590:2;7570:18;;;7563:30;-1:-1:-1;;;7609:18:1;;;7602:50;7669:18;;46503:89:0;7349:344:1;46503:89:0;46641:10;;46626:11;46611:12;;:26;;;;:::i;:::-;:40;;46603:73;;;;-1:-1:-1;;;46603:73:0;;13334:2:1;46603:73:0;;;13316:21:1;13373:2;13353:18;;;13346:30;-1:-1:-1;;;13392:18:1;;;13385:50;13452:18;;46603:73:0;13132:344:1;46603:73:0;9999:13:::1;:11;:13::i;:::-;47700:27:::2;47710:3;47715:11;47700:9;:27::i;35144:177::-:0;35274:39;35291:4;35297:2;35301:7;35274:39;;;;;;;;;;;;:16;:39::i;45598:169::-;9999:13;:11;:13::i;:::-;45687:15:::1;::::0;::::1;;45686:16;45678:45;;;::::0;-1:-1:-1;;;45678:45:0;;12586:2:1;45678:45:0::1;::::0;::::1;12568:21:1::0;12625:2;12605:18;;;12598:30;-1:-1:-1;;;12644:18:1;;;12637:46;12700:18;;45678:45:0::1;12384:340:1::0;45678:45:0::1;45734:25:::0;;::::1;::::0;:8:::1;::::0;:25:::1;::::0;::::1;::::0;::::1;:::i;:::-;;45598:169:::0;:::o;48056:156::-;9999:13;:11;:13::i;:::-;48114:7:::1;48135;10186:6:::0;;-1:-1:-1;;;;;10186:6:0;;10113:87;48135:7:::1;-1:-1:-1::0;;;;;48127:21:0::1;48156;48127:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48113:69;;;48197:2;48189:11;;;::::0;::::1;;48106:106;48056:156::o:0;45924:122::-;9999:13;:11;:13::i;:::-;46001:22:::1;:37:::0;45924:122::o;32274:124::-;32338:7;32365:20;32377:7;32365:11;:20::i;:::-;:25;;32274:124;-1:-1:-1;;32274:124:0:o;31047:221::-;31111:7;-1:-1:-1;;;;;31139:19:0;;31131:75;;;;-1:-1:-1;;;31131:75:0;;9517:2:1;31131:75:0;;;9499:21:1;9556:2;9536:18;;;9529:30;9595:34;9575:18;;;9568:62;-1:-1:-1;;;9646:18:1;;;9639:41;9697:19;;31131:75:0;9315:407:1;31131:75:0;-1:-1:-1;;;;;;31232:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;31232:27:0;;31047:221::o;10761:103::-;9999:13;:11;:13::i;:::-;10826:30:::1;10853:1;10826:18;:30::i;:::-;10761:103::o:0;46054:109::-;9999:13;:11;:13::i;:::-;46126:14:::1;:29:::0;;-1:-1:-1;;46126:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46054:109::o;46171:154::-;9999:13;:11;:13::i;:::-;46266:26:::1;:51:::0;46171:154::o;45232:96::-;9999:13;:11;:13::i;:::-;45301:5:::1;:19:::0;45232:96::o;32634:104::-;32690:13;32723:7;32716:14;;;;;:::i;46704:879::-;46769:11;46525:1;46511:11;:15;:56;;;;;46545:22;;46530:11;:37;;46511:56;46503:89;;;;-1:-1:-1;;;46503:89:0;;7551:2:1;46503:89:0;;;7533:21:1;7590:2;7570:18;;;7563:30;-1:-1:-1;;;7609:18:1;;;7602:50;7669:18;;46503:89:0;7349:344:1;46503:89:0;46641:10;;46626:11;46611:12;;:26;;;;:::i;:::-;:40;;46603:73;;;;-1:-1:-1;;;46603:73:0;;13334:2:1;46603:73:0;;;13316:21:1;13373:2;13353:18;;;13346:30;-1:-1:-1;;;13392:18:1;;;13385:50;13452:18;;46603:73:0;13132:344:1;46603:73:0;46801:14:::1;::::0;::::1;;46793:46;;;::::0;-1:-1:-1;;;46793:46:0;;11887:2:1;46793:46:0::1;::::0;::::1;11869:21:1::0;11926:2;11906:18;;;11899:30;-1:-1:-1;;;11945:18:1;;;11938:49;12004:18;;46793:46:0::1;11685:343:1::0;46793:46:0::1;46852:13;46876:11;46868:5;;:19;;;;:::i;:::-;46852:35;;46919:26;;46904:12;;:41;46900:566;;;47036:10;46962:25;47019:28:::0;;;:16:::1;:28;::::0;;;;;46990:26:::1;::::0;:57:::1;::::0;47019:28;46990:57:::1;:::i;:::-;46962:85:::0;-1:-1:-1;47066:21:0;;47062:393:::1;;47127:17;47112:11;:32;47108:332;;47198:5;::::0;47178:25:::1;::::0;:17;:25:::1;:::i;:::-;47169:34;::::0;;::::1;:::i;:::-;;;47226:50;47246:10;47258:17;47226:19;:50::i;:::-;47108:332;;;47348:5;::::0;47334:19:::1;::::0;:11;:19:::1;:::i;:::-;47325:28;::::0;;::::1;:::i;:::-;;;47376:44;47396:10;47408:11;47376:19;:44::i;:::-;46947:519;46900:566;47499:5;47486:9;:18;;47478:50;;;::::0;-1:-1:-1;;;47478:50:0;;16104:2:1;47478:50:0::1;::::0;::::1;16086:21:1::0;16143:2;16123:18;;;16116:30;-1:-1:-1;;;16162:18:1;;;16155:49;16221:18;;47478:50:0::1;15902:343:1::0;47478:50:0::1;47541:34;47551:10;47563:11;47541:9;:34::i;34321:288::-:0;-1:-1:-1;;;;;34416:24:0;;8744:10;34416:24;;34408:63;;;;-1:-1:-1;;;34408:63:0;;11113:2:1;34408:63:0;;;11095:21:1;11152:2;11132:18;;;11125:30;11191:28;11171:18;;;11164:56;11237:18;;34408:63:0;10911:350:1;34408:63:0;8744:10;34484:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34484:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34484:53:0;;;;;;;;;;34553:48;;6255:41:1;;;34484:42:0;;8744:10;34553:48;;6228:18:1;34553:48:0;;;;;;;34321:288;;:::o;45775:141::-;9999:13;:11;:13::i;:::-;45862:26:::1;:46:::0;45775:141::o;35392:355::-;35551:28;35561:4;35567:2;35571:7;35551:9;:28::i;:::-;35612:48;35635:4;35641:2;35645:7;35654:5;35612:22;:48::i;:::-;35590:149;;;;-1:-1:-1;;;35590:149:0;;;;;;;:::i;:::-;35392:355;;;;:::o;45336:254::-;9999:13;:11;:13::i;:::-;45435:10:::1;;45420:12;:25;45412:60;;;::::0;-1:-1:-1;;;45412:60:0;;12235:2:1;45412:60:0::1;::::0;::::1;12217:21:1::0;12274:2;12254:18;;;12247:30;-1:-1:-1;;;12293:18:1;;;12286:52;12355:18;;45412:60:0::1;12033:346:1::0;45412:60:0::1;45507:12;;45491;:28;;45483:63;;;::::0;-1:-1:-1;;;45483:63:0;;12235:2:1;45483:63:0::1;::::0;::::1;12217:21:1::0;12274:2;12254:18;;;12247:30;-1:-1:-1;;;12293:18:1;;;12286:52;12355:18;;45483:63:0::1;12033:346:1::0;45483:63:0::1;45557:10;:25:::0;45336:254::o;32809:343::-;32882:13;32916:16;32924:7;36059:4;36093:12;-1:-1:-1;36083:22:0;36002:111;32916:16;32908:76;;;;-1:-1:-1;;;32908:76:0;;10697:2:1;32908:76:0;;;10679:21:1;10736:2;10716:18;;;10709:30;10775:34;10755:18;;;10748:62;-1:-1:-1;;;10826:18:1;;;10819:45;10881:19;;32908:76:0;10495:411:1;32908:76:0;32997:21;33021:10;:8;:10::i;:::-;32997:34;;33055:7;33049:21;33074:1;33049:26;;:95;;;;;;;;;;;;;;;;;33102:7;33111:18;:7;:16;:18::i;:::-;33085:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33049:95;33042:102;32809:343;-1:-1:-1;;;32809:343:0:o;46333:86::-;9999:13;:11;:13::i;:::-;46389:15:::1;:22:::0;;-1:-1:-1;;46389:22:0::1;46407:4;46389:22;::::0;;46333:86::o;48220:148::-;9999:13;:11;:13::i;:::-;48303:7;48299:61:::1;;48327:14;:21:::0;;-1:-1:-1;;;;;48327:21:0;::::1;-1:-1:-1::0;;;;;;48327:21:0;;::::1;;::::0;;48220:148;;:::o;11019:201::-;9999:13;:11;:13::i;:::-;-1:-1:-1;;;;;11108:22:0;::::1;11100:73;;;::::0;-1:-1:-1;;;11100:73:0;;6733:2:1;11100:73:0::1;::::0;::::1;6715:21:1::0;6772:2;6752:18;;;6745:30;6811:34;6791:18;;;6784:62;-1:-1:-1;;;6862:18:1;;;6855:36;6908:19;;11100:73:0::1;6531:402:1::0;11100:73:0::1;11184:28;11203:8;11184:18;:28::i;40782:196::-:0;40897:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40897:29:0;-1:-1:-1;;;;;40897:29:0;;;;;;;;;40942:28;;40897:24;;40942:28;;;;;;;40782:196;;;:::o;38730:1934::-;38845:35;38883:20;38895:7;38883:11;:20::i;:::-;38958:18;;38845:58;;-1:-1:-1;38916:22:0;;-1:-1:-1;;;;;38942:34:0;8744:10;-1:-1:-1;;;;;38942:34:0;;:83;;;-1:-1:-1;8744:10:0;38989:20;39001:7;38989:11;:20::i;:::-;-1:-1:-1;;;;;38989:36:0;;38942:83;:146;;;-1:-1:-1;39055:18:0;;39038:50;;8744:10;34680:164;:::i;39038:50::-;38916:173;;39110:17;39102:80;;;;-1:-1:-1;;;39102:80:0;;11468:2:1;39102:80:0;;;11450:21:1;11507:2;11487:18;;;11480:30;11546:34;11526:18;;;11519:62;-1:-1:-1;;;11597:18:1;;;11590:48;11655:19;;39102:80:0;11266:414:1;39102:80:0;39225:4;-1:-1:-1;;;;;39203:26:0;:13;:18;;;-1:-1:-1;;;;;39203:26:0;;39195:77;;;;-1:-1:-1;;;39195:77:0;;9929:2:1;39195:77:0;;;9911:21:1;9968:2;9948:18;;;9941:30;10007:34;9987:18;;;9980:62;-1:-1:-1;;;10058:18:1;;;10051:36;10104:19;;39195:77:0;9727:402:1;39195:77:0;-1:-1:-1;;;;;39291:16:0;;39283:66;;;;-1:-1:-1;;;39283:66:0;;7900:2:1;39283:66:0;;;7882:21:1;7939:2;7919:18;;;7912:30;7978:34;7958:18;;;7951:62;-1:-1:-1;;;8029:18:1;;;8022:35;8074:19;;39283:66:0;7698:401:1;39283:66:0;39470:49;39487:1;39491:7;39500:13;:18;;;39470:8;:49::i;:::-;-1:-1:-1;;;;;39807:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;39807:31:0;;;-1:-1:-1;;;;;39807:31:0;;;-1:-1:-1;;39807:31:0;;;;;;;39849:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;39849:29:0;;;;;;;;;;;;;39891:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;39932:61:0;;;;-1:-1:-1;;;39977:15:0;39932:61;;;;;;40255:11;;;40281:24;;;;;:29;40255:11;;40281:29;40277:275;;40345:20;40353:11;36059:4;36093:12;-1:-1:-1;36083:22:0;36002:111;40345:20;40341:200;;;40418:18;;;40386:24;;;:11;:24;;;;;;;;:50;;40497:28;;;;40455:70;;-1:-1:-1;;;40455:70:0;-1:-1:-1;;;;;;40455:70:0;;;-1:-1:-1;;;;;40386:50:0;;;40455:70;;;;;;;40341:200;39786:773;40595:7;40591:2;-1:-1:-1;;;;;40576:27:0;40585:4;-1:-1:-1;;;;;40576:27:0;;;;;;;;;;;40614:42;38834:1830;;38730:1934;;;:::o;10278:132::-;10186:6;;-1:-1:-1;;;;;10186:6:0;8744:10;10342:23;10334:68;;;;-1:-1:-1;;;10334:68:0;;10336:2:1;10334:68:0;;;10318:21:1;;;10355:18;;;10348:30;10414:34;10394:18;;;10387:62;10466:18;;10334:68:0;10134:356:1;14072:317:0;14187:6;14162:21;:31;;14154:73;;;;-1:-1:-1;;;14154:73:0;;8733:2:1;14154:73:0;;;8715:21:1;8772:2;8752:18;;;8745:30;8811:31;8791:18;;;8784:59;8860:18;;14154:73:0;8531:353:1;14154:73:0;14241:12;14259:9;-1:-1:-1;;;;;14259:14:0;14281:6;14259:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14240:52;;;14311:7;14303:78;;;;-1:-1:-1;;;14303:78:0;;8306:2:1;14303:78:0;;;8288:21:1;8345:2;8325:18;;;8318:30;8384:34;8364:18;;;8357:62;8455:28;8435:18;;;8428:56;8501:19;;14303:78:0;8104:422:1;36121:104:0;36190:27;36200:2;36204:8;36190:27;;;;;;;;;;;;:9;:27::i;31707:505::-;-1:-1:-1;;;;;;;;;;;;;;;;;31810:16:0;31818:7;36059:4;36093:12;-1:-1:-1;36083:22:0;36002:111;31810:16;31802:71;;;;-1:-1:-1;;;31802:71:0;;7140:2:1;31802:71:0;;;7122:21:1;7179:2;7159:18;;;7152:30;7218:34;7198:18;;;7191:62;-1:-1:-1;;;7269:18:1;;;7262:40;7319:19;;31802:71:0;6938:406:1;31802:71:0;31923:7;31903:225;31966:31;32000:17;;;:11;:17;;;;;;;;;31966:51;;;;;;;;;-1:-1:-1;;;;;31966:51:0;;;;;-1:-1:-1;;;31966:51:0;;;;;;;;;;;;32036:28;32032:85;;32092:9;31707:505;-1:-1:-1;;;31707:505:0:o;32032:85::-;-1:-1:-1;;;31943:6:0;31903:225;;11380:191;11473:6;;;-1:-1:-1;;;;;11490:17:0;;;-1:-1:-1;;;;;;11490:17:0;;;;;;;11523:40;;11473:6;;;11490:17;11473:6;;11523:40;;11454:16;;11523:40;11443:128;11380:191;:::o;44818:120::-;-1:-1:-1;;;;;44897:24:0;;;;;;:16;:24;;;;;:33;;44925:5;;44897:24;:33;;44925:5;;44897:33;:::i;:::-;;;;-1:-1:-1;;;;44818:120:0:o;41543:804::-;41698:4;-1:-1:-1;;;;;41719:13:0;;13106:19;:23;41715:625;;41755:72;;-1:-1:-1;;;41755:72:0;;-1:-1:-1;;;;;41755:36:0;;;;;:72;;8744:10;;41806:4;;41812:7;;41821:5;;41755:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41755:72:0;;;;;;;;-1:-1:-1;;41755:72:0;;;;;;;;;;;;:::i;:::-;;;41751:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42001:13:0;;41997:273;;42044:61;;-1:-1:-1;;;42044:61:0;;;;;;;:::i;41997:273::-;42220:6;42214:13;42205:6;42201:2;42197:15;42190:38;41751:534;-1:-1:-1;;;;;;41878:55:0;-1:-1:-1;;;41878:55:0;;-1:-1:-1;41871:62:0;;41715:625;-1:-1:-1;42324:4:0;41715:625;41543:804;;;;;;:::o;45092:109::-;45152:13;45185:8;45178:15;;;;;:::i;5918:723::-;5974:13;6195:10;6191:53;;-1:-1:-1;;6222:10:0;;;;;;;;;;;;-1:-1:-1;;;6222:10:0;;;;;5918:723::o;6191:53::-;6269:5;6254:12;6310:78;6317:9;;6310:78;;6343:8;;;;:::i;:::-;;-1:-1:-1;6366:10:0;;-1:-1:-1;6374:2:0;6366:10;;:::i;:::-;;;6310:78;;;6398:19;6430:6;6420:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6420:17:0;;6398:39;;6448:154;6455:10;;6448:154;;6482:11;6492:1;6482:11;;:::i;:::-;;-1:-1:-1;6551:10:0;6559:2;6551:5;:10;:::i;:::-;6538:24;;:2;:24;:::i;:::-;6525:39;;6508:6;6515;6508:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6508:56:0;;;;;;;;-1:-1:-1;6579:11:0;6588:2;6579:11;;:::i;:::-;;;6448:154;;36588:163;36711:32;36717:2;36721:8;36731:5;36738:4;37149:20;37172:12;-1:-1:-1;;;;;37203:16:0;;37195:62;;;;-1:-1:-1;;;37195:62:0;;14103:2:1;37195:62:0;;;14085:21:1;14142:2;14122:18;;;14115:30;14181:34;14161:18;;;14154:62;-1:-1:-1;;;14232:18:1;;;14225:31;14273:19;;37195:62:0;13901:397:1;37195:62:0;37276:13;37268:66;;;;-1:-1:-1;;;37268:66:0;;14505:2:1;37268:66:0;;;14487:21:1;14544:2;14524:18;;;14517:30;14583:34;14563:18;;;14556:62;-1:-1:-1;;;14634:18:1;;;14627:38;14682:19;;37268:66:0;14303:404:1;37268:66:0;-1:-1:-1;;;;;37678:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;37678:45:0;;-1:-1:-1;;;;;37678:45:0;;;;;;;;;;37734:50;;;;;;;;;;;;;;37797:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;37843:66:0;;;;-1:-1:-1;;;37893:15:0;37843:66;;;;;;;37797:25;;37970:379;37990:8;37986:1;:12;37970:379;;;38025:38;;38050:12;;-1:-1:-1;;;;;38025:38:0;;;38042:1;;38025:38;;38042:1;;38025:38;38082:4;38078:229;;;38137:59;38168:1;38172:2;38176:12;38190:5;38137:22;:59::i;:::-;38107:184;;;;-1:-1:-1;;;38107:184:0;;;;;;;:::i;:::-;38323:14;;;;;38000:3;37970:379;;;-1:-1:-1;38361:12:0;:27;38408:60;35392:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:637::-;4842:3;4880:6;4874:13;4896:53;4942:6;4937:3;4930:4;4922:6;4918:17;4896:53;:::i;:::-;5012:13;;4971:16;;;;5034:57;5012:13;4971:16;5068:4;5056:17;;5034:57;:::i;:::-;-1:-1:-1;;;5113:20:1;;5142:22;;;5191:1;5180:13;;4562:637;-1:-1:-1;;;;4562:637:1:o;5622:488::-;-1:-1:-1;;;;;5891:15:1;;;5873:34;;5943:15;;5938:2;5923:18;;5916:43;5990:2;5975:18;;5968:34;;;6038:3;6033:2;6018:18;;6011:31;;;5816:4;;6059:45;;6084:19;;6076:6;6059:45;:::i;:::-;6051:53;5622:488;-1:-1:-1;;;;;;5622:488:1:o;6307:219::-;6456:2;6445:9;6438:21;6419:4;6476:44;6516:2;6505:9;6501:18;6493:6;6476:44;:::i;13481:415::-;13683:2;13665:21;;;13722:2;13702:18;;;13695:30;13761:34;13756:2;13741:18;;13734:62;-1:-1:-1;;;13827:2:1;13812:18;;13805:49;13886:3;13871:19;;13481:415::o;16432:128::-;16472:3;16503:1;16499:6;16496:1;16493:13;16490:39;;;16509:18;;:::i;:::-;-1:-1:-1;16545:9:1;;16432:128::o;16565:120::-;16605:1;16631;16621:35;;16636:18;;:::i;:::-;-1:-1:-1;16670:9:1;;16565:120::o;16690:168::-;16730:7;16796:1;16792;16788:6;16784:14;16781:1;16778:21;16773:1;16766:9;16759:17;16755:45;16752:71;;;16803:18;;:::i;:::-;-1:-1:-1;16843:9:1;;16690:168::o;16863:125::-;16903:4;16931:1;16928;16925:8;16922:34;;;16936:18;;:::i;:::-;-1:-1:-1;16973:9:1;;16863:125::o;16993:258::-;17065:1;17075:113;17089:6;17086:1;17083:13;17075:113;;;17165:11;;;17159:18;17146:11;;;17139:39;17111:2;17104:10;17075:113;;;17206:6;17203:1;17200:13;17197:48;;;-1:-1:-1;;17241:1:1;17223:16;;17216:27;16993:258::o;17256:380::-;17335:1;17331:12;;;;17378;;;17399:61;;17453:4;17445:6;17441:17;17431:27;;17399:61;17506:2;17498:6;17495:14;17475:18;17472:38;17469:161;;;17552:10;17547:3;17543:20;17540:1;17533:31;17587:4;17584:1;17577:15;17615:4;17612:1;17605:15;17469:161;;17256:380;;;:::o;17641:135::-;17680:3;-1:-1:-1;;17701:17:1;;17698:43;;;17721:18;;:::i;:::-;-1:-1:-1;17768:1:1;17757:13;;17641:135::o;17781:112::-;17813:1;17839;17829:35;;17844:18;;:::i;:::-;-1:-1:-1;17878:9:1;;17781:112::o;17898:127::-;17959:10;17954:3;17950:20;17947:1;17940:31;17990:4;17987:1;17980:15;18014:4;18011:1;18004:15;18030:127;18091:10;18086:3;18082:20;18079:1;18072:31;18122:4;18119:1;18112:15;18146:4;18143:1;18136:15;18162:127;18223:10;18218:3;18214:20;18211:1;18204:31;18254:4;18251:1;18244:15;18278:4;18275:1;18268:15;18294:127;18355:10;18350:3;18346:20;18343:1;18336:31;18386:4;18383:1;18376:15;18410:4;18407:1;18400:15;18426:131;-1:-1:-1;;;;;;18500:32:1;;18490:43;;18480:71;;18547:1;18544;18537:12

Swarm Source

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