ETH Price: $2,688.06 (-2.34%)

Token

DEF3CTS (DEF3CTS)
 

Overview

Max Total Supply

2,182 DEF3CTS

Holders

285

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 DEF3CTS
0xfbe22b1bcd5f5cdfc13821481433847c5ce179fb
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:
Def3cts

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-08-19
*/

// 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/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/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// 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: @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/token/ERC721/ERC721.sol


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

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

    /**
     * @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) {
        _requireMinted(tokenId);

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @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.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: 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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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


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

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

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



pragma solidity >=0.7.0 <0.9.0;



contract Def3cts is ERC721Enumerable, Ownable {
  using Strings for uint256;

  // baseURI is the root URI of the metadata files
  string baseURI;

  // List of addresses that have been whitelisted and the amount
  mapping(address => uint256) private whitelistedAddresses;

  // List of addresses that have minted the (almost) free nft
  mapping(address => uint256) private almostFreeAddresses;

  // Usual NFT mint contract variables
  string public baseExtension = ".json";
  uint256 public normalCost = 0.02 ether;
  uint256 public almostFreeCost = 0.008 ether;
  uint256 public maxSupply = 8888;
  uint256 public maxMintAmount = 20;
  bool public mintPaused = true;
  bool public whitelistOnly = true;
  bool public revealed = false;
  string public notRevealedUri;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) ERC721(_name, _symbol) {
    // Sets our initial base URI.
    setBaseURI(_initBaseURI);

    // Sets our initial unrevealed URI
    setNotRevealedURI(_initNotRevealedUri);
  }

  // Internal method used to retrieve the baseURI based on the evolution of the token
  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }

  // Main mint method that will be called to create the tokens
  function mint(uint256 _mintAmount) public payable {
    uint256 supply = totalSupply();
    require(!mintPaused, "Mint is paused");
    require(_mintAmount > 0, "Mint amount must be positive");
    require(_mintAmount <= maxMintAmount, "Mint amount must be less than max mint amount");
    require(supply + _mintAmount <= maxSupply, "Supply + mint amount must be less than max supply");

    // If the whitelist is enabled, only allow the whitelisted user to mint
    if (whitelistOnly) {
      require(whitelistedAddresses[msg.sender] >= _mintAmount, "Not whitelisted or not enough tokens allowed");
    }

    // Determine the amount of whitelist that can be minted
    uint256 whitelistAmount = whitelistedAddresses[msg.sender];

    // Determine the amount of almost free that can be minted
    uint256 almostFreeAmount = 1 - almostFreeAddresses[msg.sender];

    // We determine the normal amount, cannot be below 0
    uint256 normalAmount = 0;

    // We only want to mint the almostFree if needed
    if (_mintAmount <= whitelistAmount) {
      almostFreeAmount = 0;
    }
    
    // We determine the normal amount if needed
    if (_mintAmount > whitelistAmount + almostFreeAmount) {
      normalAmount = _mintAmount - (whitelistAmount + almostFreeAmount);
    }

    // We find out the price needed to mint the _mintAmount
    uint256 price = (normalCost * normalAmount) + (almostFreeCost * almostFreeAmount);

    // We must remove the whitelisted amount
    uint256 whitelistToRemove = _mintAmount > whitelistAmount ? whitelistAmount : _mintAmount;
    whitelistedAddresses[msg.sender] -= whitelistToRemove;

    // We must remove the almostFree amount
    uint256 almostFreeToRemove = almostFreeAmount == 1 ? 1 : 0;
    almostFreeAddresses[msg.sender] = almostFreeToRemove;

    // Owners don't have to pay for the tokens
    if (msg.sender != owner()) {
      require(msg.value >= price, "Not enough ether to mint");
    }

    // Loop through the requested amount to mint and mint the tokens
    for (uint256 i = 1; i <= _mintAmount; i++) {
      uint256 newItemId = supply + i;
      _safeMint(msg.sender, newItemId);
    }
  }

  // Tells us the price for an address and an amount of tokens
  function calculatePrice(address _user, uint256 _mintAmount) public view returns (uint256) {
    // Determine the amount of whitelist that can be minted
    uint256 whitelistAmount = whitelistedAddresses[_user];

    // Determine the amount of almost free that can be minted
    uint256 almostFreeAmount = 1 - almostFreeAddresses[_user];

    // We determine the normal amount, cannot be below 0
    uint256 normalAmount = 0;

    // We only want to mint the almostFree if needed
    if (_mintAmount <= whitelistAmount) {
      almostFreeAmount = 0;
    }

    // We determine the normal amount if needed
    if (_mintAmount > whitelistAmount + almostFreeAmount) {
      normalAmount = _mintAmount - (whitelistAmount + almostFreeAmount);
    }

    // We find out the price needed to mint the _mintAmount
    uint256 price = (normalCost * normalAmount) + (almostFreeCost * almostFreeAmount);

    return price;
  }

  // Tells us the amount of tokens the address can mint
  function getWhitelistAmount(address _user) public view returns (uint256) {
    return whitelistedAddresses[_user];
  }

  // Tells us if an address has mint there (almost) free nft
  function getAlmostFreeAmount(address _user) public view returns (uint256) {
    return almostFreeAddresses[_user];
  }

  // Adds users to the whitelist for a specific amount of tokens
  function setWhitelist(address[] calldata addresses, uint256 numAllowedToMint) external onlyOwner {
    for (uint256 i = 0; i < addresses.length; i++) {
      whitelistedAddresses[addresses[i]] = numAllowedToMint;
    }
  }

  // Retrieved all the tokens IDs for an Ethereum address
  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

  // Retrieve the tokenURI for a specific token ID
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    // If the collection is still unrevealed, return generic metadata
    if (revealed == false) {
        return notRevealedUri;
    }

    // Retrieve the baseURI of the token
    string memory currentBaseURI = _baseURI();

    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
        : "";
  }

  // Reveals the collection and makes metadata accessible
  function reveal() public onlyOwner() {
    revealed = true;
  }

  // Unreveal the collection and makes metadata hidden
  function unreveal() public onlyOwner() {
    revealed = false;
  }

  // Sets the normal costs of the minting
  function setNormalCost(uint256 _newCost) public onlyOwner() {
    normalCost = _newCost;
  }

  // Sets the free costs of the minting
  function setAlmostFreeCost(uint256 _newCost) public onlyOwner() {
    almostFreeCost = _newCost;
  }

  // Sets the maximum amount of tokens that can be minted in one transaction
  function setMaxMintAmount(uint256 _newMaxMintAmount) public onlyOwner() {
    maxMintAmount = _newMaxMintAmount;
  }

  // Sets the unrevealed URI for the collection
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

  // Sets the baseURI
  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  // Sets the base extension of the collection
  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

  // Sets the paused state for the mint of the collection
  function mintPause(bool _state) public onlyOwner {
    mintPaused = _state;
  }

  // Sets the paused state for the whitelist
  function setWhitelistOnly(bool _state) public onlyOwner {
    whitelistOnly = _state;
  }

  // Withdraws the funds from the contract
  function withdraw() public payable onlyOwner {
    (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
    require(success);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"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":"almostFreeCost","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":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"calculatePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getAlmostFreeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getWhitelistAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"mintPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"normalCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setAlmostFreeCost","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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setNormalCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256","name":"numAllowedToMint","type":"uint256"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistOnly","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"unreveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistOnly","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600e9190620001ef565b5066470de4df820000600f55661c6bf5263400006010556122b860115560146012556013805462ffffff19166101011790553480156200006757600080fd5b5060405162002cfa38038062002cfa8339810160408190526200008a916200034c565b835184908490620000a3906000906020850190620001ef565b508051620000b9906001906020840190620001ef565b505050620000d6620000d0620000f660201b60201c565b620000fa565b620000e1826200014c565b620000ec816200016f565b5050505062000458565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001566200018e565b80516200016b90600b906020840190620001ef565b5050565b620001796200018e565b80516200016b906014906020840190620001ef565b600a546001600160a01b03163314620001ed5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b828054620001fd9062000405565b90600052602060002090601f0160209004810192826200022157600085556200026c565b82601f106200023c57805160ff19168380011785556200026c565b828001600101855582156200026c579182015b828111156200026c5782518255916020019190600101906200024f565b506200027a9291506200027e565b5090565b5b808211156200027a57600081556001016200027f565b600082601f830112620002a757600080fd5b81516001600160401b0380821115620002c457620002c462000442565b604051601f8301601f19908116603f01168101908282118183101715620002ef57620002ef62000442565b816040528381526020925086838588010111156200030c57600080fd5b600091505b8382101562000330578582018301518183018401529082019062000311565b83821115620003425760008385830101525b9695505050505050565b600080600080608085870312156200036357600080fd5b84516001600160401b03808211156200037b57600080fd5b620003898883890162000295565b95506020870151915080821115620003a057600080fd5b620003ae8883890162000295565b94506040870151915080821115620003c557600080fd5b620003d38883890162000295565b93506060870151915080821115620003ea57600080fd5b50620003f98782880162000295565b91505092959194509250565b600181811c908216806200041a57607f821691505b602082108114156200043c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61289280620004686000396000f3fe6080604052600436106102725760003560e01c806370a082311161014f578063b88d4fde116100c1578063da3ef23f1161007a578063da3ef23f14610732578063e985e9c514610752578063ea05a8c61461079b578063f203644a146107bb578063f2c4ce1e146107d1578063f2fde38b146107f157600080fd5b8063b88d4fde14610687578063c6682862146106a7578063c87b56dd146106bc578063cf6b6736146106dc578063d18fe0e0146106fc578063d5abeb011461071c57600080fd5b80638da5cb5b116101135780638da5cb5b146105d657806395d89b41146105f4578063a0712d6814610609578063a22cb4651461061c578063a475b5dd1461063c578063aaa0be051461065157600080fd5b806370a0823114610531578063715018a6146105515780637606fc12146105665780637e4831d31461059c5780638d814a8c146105b657600080fd5b80632f745c59116101e85780634d8d1b93116101ac5780634d8d1b931461047b5780634f6ccce71461049157806351830227146104b1578063547d5f7b146104d157806355f804b3146104f15780636352211e1461051157600080fd5b80632f745c59146103e75780633ccfd60b1461040757806342842e0e1461040f578063438b63001461042f5780634b4687b51461045c57600080fd5b8063095ea7b31161023a578063095ea7b31461033d578063158756b91461035d57806318160ddd14610372578063239c70ae1461039157806323b872dd146103a75780632f7306b8146103c757600080fd5b806301ffc9a71461027757806306fdde03146102ac578063081812fc146102ce578063081c8c4414610306578063088a4ed01461031b575b600080fd5b34801561028357600080fd5b50610297610292366004612420565b610811565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c161083c565b6040516102a3919061262d565b3480156102da57600080fd5b506102ee6102e93660046124a3565b6108ce565b6040516001600160a01b0390911681526020016102a3565b34801561031257600080fd5b506102c16108f5565b34801561032757600080fd5b5061033b6103363660046124a3565b610983565b005b34801561034957600080fd5b5061033b610358366004612360565b610990565b34801561036957600080fd5b5061033b610aab565b34801561037e57600080fd5b506008545b6040519081526020016102a3565b34801561039d57600080fd5b5061038360125481565b3480156103b357600080fd5b5061033b6103c236600461227e565b610ac1565b3480156103d357600080fd5b506103836103e2366004612360565b610af2565b3480156103f357600080fd5b50610383610402366004612360565b610b8e565b61033b610c24565b34801561041b57600080fd5b5061033b61042a36600461227e565b610c84565b34801561043b57600080fd5b5061044f61044a366004612230565b610c9f565b6040516102a391906125e9565b34801561046857600080fd5b5060135461029790610100900460ff1681565b34801561048757600080fd5b5061038360105481565b34801561049d57600080fd5b506103836104ac3660046124a3565b610d41565b3480156104bd57600080fd5b506013546102979062010000900460ff1681565b3480156104dd57600080fd5b5061033b6104ec3660046124a3565b610dd4565b3480156104fd57600080fd5b5061033b61050c36600461245a565b610de1565b34801561051d57600080fd5b506102ee61052c3660046124a3565b610e00565b34801561053d57600080fd5b5061038361054c366004612230565b610e60565b34801561055d57600080fd5b5061033b610ee6565b34801561057257600080fd5b50610383610581366004612230565b6001600160a01b03166000908152600c602052604090205490565b3480156105a857600080fd5b506013546102979060ff1681565b3480156105c257600080fd5b5061033b6105d136600461238a565b610efa565b3480156105e257600080fd5b50600a546001600160a01b03166102ee565b34801561060057600080fd5b506102c1610f6b565b61033b6106173660046124a3565b610f7a565b34801561062857600080fd5b5061033b610637366004612336565b61132c565b34801561064857600080fd5b5061033b611337565b34801561065d57600080fd5b5061038361066c366004612230565b6001600160a01b03166000908152600d602052604090205490565b34801561069357600080fd5b5061033b6106a23660046122ba565b611352565b3480156106b357600080fd5b506102c1611384565b3480156106c857600080fd5b506102c16106d73660046124a3565b611391565b3480156106e857600080fd5b5061033b6106f7366004612405565b611511565b34801561070857600080fd5b5061033b6107173660046124a3565b61152c565b34801561072857600080fd5b5061038360115481565b34801561073e57600080fd5b5061033b61074d36600461245a565b611539565b34801561075e57600080fd5b5061029761076d36600461224b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107a757600080fd5b5061033b6107b6366004612405565b611554565b3480156107c757600080fd5b50610383600f5481565b3480156107dd57600080fd5b5061033b6107ec36600461245a565b611576565b3480156107fd57600080fd5b5061033b61080c366004612230565b611591565b60006001600160e01b0319821663780e9d6360e01b1480610836575061083682611607565b92915050565b60606000805461084b9061276e565b80601f01602080910402602001604051908101604052809291908181526020018280546108779061276e565b80156108c45780601f10610899576101008083540402835291602001916108c4565b820191906000526020600020905b8154815290600101906020018083116108a757829003601f168201915b5050505050905090565b60006108d982611657565b506000908152600460205260409020546001600160a01b031690565b601480546109029061276e565b80601f016020809104026020016040519081016040528092919081815260200182805461092e9061276e565b801561097b5780601f106109505761010080835404028352916020019161097b565b820191906000526020600020905b81548152906001019060200180831161095e57829003601f168201915b505050505081565b61098b6116b6565b601255565b600061099b82610e00565b9050806001600160a01b0316836001600160a01b03161415610a0e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610a2a5750610a2a813361076d565b610a9c5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610a05565b610aa68383611710565b505050565b610ab36116b6565b6013805462ff000019169055565b610acb338261177e565b610ae75760405162461bcd60e51b8152600401610a0590612692565b610aa68383836117fd565b6001600160a01b0382166000908152600c6020908152604080832054600d9092528220548290610b2390600161272b565b90506000828511610b3357600091505b610b3d82846126e0565b851115610b5b57610b4e82846126e0565b610b58908661272b565b90505b600082601054610b6b919061270c565b82600f54610b79919061270c565b610b8391906126e0565b979650505050505050565b6000610b9983610e60565b8210610bfb5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a05565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610c2c6116b6565b604051600090339047908381818185875af1925050503d8060008114610c6e576040519150601f19603f3d011682016040523d82523d6000602084013e610c73565b606091505b5050905080610c8157600080fd5b50565b610aa683838360405180602001604052806000815250611352565b60606000610cac83610e60565b905060008167ffffffffffffffff811115610cc957610cc9612830565b604051908082528060200260200182016040528015610cf2578160200160208202803683370190505b50905060005b82811015610d3957610d0a8582610b8e565b828281518110610d1c57610d1c61281a565b602090810291909101015280610d31816127a9565b915050610cf8565b509392505050565b6000610d4c60085490565b8210610daf5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a05565b60088281548110610dc257610dc261281a565b90600052602060002001549050919050565b610ddc6116b6565b600f55565b610de96116b6565b8051610dfc90600b9060208401906120f5565b5050565b6000818152600260205260408120546001600160a01b0316806108365760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610a05565b60006001600160a01b038216610eca5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610a05565b506001600160a01b031660009081526003602052604090205490565b610eee6116b6565b610ef860006119a4565b565b610f026116b6565b60005b82811015610f655781600c6000868685818110610f2457610f2461281a565b9050602002016020810190610f399190612230565b6001600160a01b0316815260208101919091526040016000205580610f5d816127a9565b915050610f05565b50505050565b60606001805461084b9061276e565b6000610f8560085490565b60135490915060ff1615610fcc5760405162461bcd60e51b815260206004820152600e60248201526d135a5b9d081a5cc81c185d5cd95960921b6044820152606401610a05565b6000821161101c5760405162461bcd60e51b815260206004820152601c60248201527f4d696e7420616d6f756e74206d75737420626520706f736974697665000000006044820152606401610a05565b6012548211156110845760405162461bcd60e51b815260206004820152602d60248201527f4d696e7420616d6f756e74206d757374206265206c657373207468616e206d6160448201526c1e081b5a5b9d08185b5bdd5b9d609a1b6064820152608401610a05565b60115461109183836126e0565b11156110f95760405162461bcd60e51b815260206004820152603160248201527f537570706c79202b206d696e7420616d6f756e74206d757374206265206c657360448201527073207468616e206d617820737570706c7960781b6064820152608401610a05565b601354610100900460ff161561117d57336000908152600c602052604090205482111561117d5760405162461bcd60e51b815260206004820152602c60248201527f4e6f742077686974656c6973746564206f72206e6f7420656e6f75676820746f60448201526b1ad95b9cc8185b1b1bddd95960a21b6064820152608401610a05565b336000908152600c6020908152604080832054600d9092528220549091906111a690600161272b565b905060008285116111b657600091505b6111c082846126e0565b8511156111de576111d182846126e0565b6111db908661272b565b90505b6000826010546111ee919061270c565b82600f546111fc919061270c565b61120691906126e0565b905060008487116112175786611219565b845b336000908152600c602052604081208054929350839290919061123d90849061272b565b909155506000905060018514611254576000611257565b60015b336000908152600d6020526040902060ff91909116908190559050611284600a546001600160a01b031690565b6001600160a01b0316336001600160a01b0316146112ec57823410156112ec5760405162461bcd60e51b815260206004820152601860248201527f4e6f7420656e6f75676820657468657220746f206d696e7400000000000000006044820152606401610a05565b60015b888111611321576000611302828a6126e0565b905061130e33826119f6565b5080611319816127a9565b9150506112ef565b505050505050505050565b610dfc338383611a10565b61133f6116b6565b6013805462ff0000191662010000179055565b61135c338361177e565b6113785760405162461bcd60e51b8152600401610a0590612692565b610f6584848484611adf565b600e80546109029061276e565b6000818152600260205260409020546060906001600160a01b03166114105760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a05565b60135462010000900460ff166114b2576014805461142d9061276e565b80601f01602080910402602001604051908101604052809291908181526020018280546114599061276e565b80156114a65780601f1061147b576101008083540402835291602001916114a6565b820191906000526020600020905b81548152906001019060200180831161148957829003601f168201915b50505050509050919050565b60006114bc611b12565b905060008151116114dc576040518060200160405280600081525061150a565b806114e684611b21565b600e6040516020016114fa939291906124e8565b6040516020818303038152906040525b9392505050565b6115196116b6565b6013805460ff1916911515919091179055565b6115346116b6565b601055565b6115416116b6565b8051610dfc90600e9060208401906120f5565b61155c6116b6565b601380549115156101000261ff0019909216919091179055565b61157e6116b6565b8051610dfc9060149060208401906120f5565b6115996116b6565b6001600160a01b0381166115fe5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a05565b610c81816119a4565b60006001600160e01b031982166380ac58cd60e01b148061163857506001600160e01b03198216635b5e139f60e01b145b8061083657506301ffc9a760e01b6001600160e01b0319831614610836565b6000818152600260205260409020546001600160a01b0316610c815760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610a05565b600a546001600160a01b03163314610ef85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a05565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061174582610e00565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061178a83610e00565b9050806001600160a01b0316846001600160a01b031614806117d157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806117f55750836001600160a01b03166117ea846108ce565b6001600160a01b0316145b949350505050565b826001600160a01b031661181082610e00565b6001600160a01b0316146118745760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610a05565b6001600160a01b0382166118d65760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a05565b6118e1838383611c1f565b6118ec600082611710565b6001600160a01b038316600090815260036020526040812080546001929061191590849061272b565b90915550506001600160a01b03821660009081526003602052604081208054600192906119439084906126e0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610dfc828260405180602001604052806000815250611cd7565b816001600160a01b0316836001600160a01b03161415611a725760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a05565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611aea8484846117fd565b611af684848484611d0a565b610f655760405162461bcd60e51b8152600401610a0590612640565b6060600b805461084b9061276e565b606081611b455750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b6f5780611b59816127a9565b9150611b689050600a836126f8565b9150611b49565b60008167ffffffffffffffff811115611b8a57611b8a612830565b6040519080825280601f01601f191660200182016040528015611bb4576020820181803683370190505b5090505b84156117f557611bc960018361272b565b9150611bd6600a866127c4565b611be19060306126e0565b60f81b818381518110611bf657611bf661281a565b60200101906001600160f81b031916908160001a905350611c18600a866126f8565b9450611bb8565b6001600160a01b038316611c7a57611c7581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611c9d565b816001600160a01b0316836001600160a01b031614611c9d57611c9d8382611e17565b6001600160a01b038216611cb457610aa681611eb4565b826001600160a01b0316826001600160a01b031614610aa657610aa68282611f63565b611ce18383611fa7565b611cee6000848484611d0a565b610aa65760405162461bcd60e51b8152600401610a0590612640565b60006001600160a01b0384163b15611e0c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d4e9033908990889088906004016125ac565b602060405180830381600087803b158015611d6857600080fd5b505af1925050508015611d98575060408051601f3d908101601f19168201909252611d959181019061243d565b60015b611df2573d808015611dc6576040519150601f19603f3d011682016040523d82523d6000602084013e611dcb565b606091505b508051611dea5760405162461bcd60e51b8152600401610a0590612640565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117f5565b506001949350505050565b60006001611e2484610e60565b611e2e919061272b565b600083815260076020526040902054909150808214611e81576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611ec69060019061272b565b60008381526009602052604081205460088054939450909284908110611eee57611eee61281a565b906000526020600020015490508060088381548110611f0f57611f0f61281a565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f4757611f47612804565b6001900381819060005260206000200160009055905550505050565b6000611f6e83610e60565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611ffd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a05565b6000818152600260205260409020546001600160a01b0316156120625760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a05565b61206e60008383611c1f565b6001600160a01b03821660009081526003602052604081208054600192906120979084906126e0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546121019061276e565b90600052602060002090601f0160209004810192826121235760008555612169565b82601f1061213c57805160ff1916838001178555612169565b82800160010185558215612169579182015b8281111561216957825182559160200191906001019061214e565b50612175929150612179565b5090565b5b80821115612175576000815560010161217a565b600067ffffffffffffffff808411156121a9576121a9612830565b604051601f8501601f19908116603f011681019082821181831017156121d1576121d1612830565b816040528093508581528686860111156121ea57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461221b57600080fd5b919050565b8035801515811461221b57600080fd5b60006020828403121561224257600080fd5b61150a82612204565b6000806040838503121561225e57600080fd5b61226783612204565b915061227560208401612204565b90509250929050565b60008060006060848603121561229357600080fd5b61229c84612204565b92506122aa60208501612204565b9150604084013590509250925092565b600080600080608085870312156122d057600080fd5b6122d985612204565b93506122e760208601612204565b925060408501359150606085013567ffffffffffffffff81111561230a57600080fd5b8501601f8101871361231b57600080fd5b61232a8782356020840161218e565b91505092959194509250565b6000806040838503121561234957600080fd5b61235283612204565b915061227560208401612220565b6000806040838503121561237357600080fd5b61237c83612204565b946020939093013593505050565b60008060006040848603121561239f57600080fd5b833567ffffffffffffffff808211156123b757600080fd5b818601915086601f8301126123cb57600080fd5b8135818111156123da57600080fd5b8760208260051b85010111156123ef57600080fd5b6020928301989097509590910135949350505050565b60006020828403121561241757600080fd5b61150a82612220565b60006020828403121561243257600080fd5b813561150a81612846565b60006020828403121561244f57600080fd5b815161150a81612846565b60006020828403121561246c57600080fd5b813567ffffffffffffffff81111561248357600080fd5b8201601f8101841361249457600080fd5b6117f58482356020840161218e565b6000602082840312156124b557600080fd5b5035919050565b600081518084526124d4816020860160208601612742565b601f01601f19169290920160200192915050565b6000845160206124fb8285838a01612742565b85519184019161250e8184848a01612742565b8554920191600090600181811c908083168061252b57607f831692505b85831081141561254957634e487b7160e01b85526022600452602485fd5b80801561255d576001811461256e5761259b565b60ff1985168852838801955061259b565b60008b81526020902060005b858110156125935781548a82015290840190880161257a565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125df908301846124bc565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561262157835183529284019291840191600101612605565b50909695505050505050565b60208152600061150a60208301846124bc565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b600082198211156126f3576126f36127d8565b500190565b600082612707576127076127ee565b500490565b6000816000190483118215151615612726576127266127d8565b500290565b60008282101561273d5761273d6127d8565b500390565b60005b8381101561275d578181015183820152602001612745565b83811115610f655750506000910152565b600181811c9082168061278257607f821691505b602082108114156127a357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127bd576127bd6127d8565b5060010190565b6000826127d3576127d36127ee565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c8157600080fdfea2646970667358221220700498f980e3b306fbab8aaa376a0693d6ceff9143e121ada7ecac2aa04dd77064736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000007444546334354530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074445463343545300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003168747470733a2f2f646566336374732d6173736574732d6d657461646174612e73332e616d617a6f6e6177732e636f6d2f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003c68747470733a2f2f646566336374732d6173736574732d6d657461646174612e73332e616d617a6f6e6177732e636f6d2f68696464656e2e6a736f6e00000000

Deployed Bytecode

0x6080604052600436106102725760003560e01c806370a082311161014f578063b88d4fde116100c1578063da3ef23f1161007a578063da3ef23f14610732578063e985e9c514610752578063ea05a8c61461079b578063f203644a146107bb578063f2c4ce1e146107d1578063f2fde38b146107f157600080fd5b8063b88d4fde14610687578063c6682862146106a7578063c87b56dd146106bc578063cf6b6736146106dc578063d18fe0e0146106fc578063d5abeb011461071c57600080fd5b80638da5cb5b116101135780638da5cb5b146105d657806395d89b41146105f4578063a0712d6814610609578063a22cb4651461061c578063a475b5dd1461063c578063aaa0be051461065157600080fd5b806370a0823114610531578063715018a6146105515780637606fc12146105665780637e4831d31461059c5780638d814a8c146105b657600080fd5b80632f745c59116101e85780634d8d1b93116101ac5780634d8d1b931461047b5780634f6ccce71461049157806351830227146104b1578063547d5f7b146104d157806355f804b3146104f15780636352211e1461051157600080fd5b80632f745c59146103e75780633ccfd60b1461040757806342842e0e1461040f578063438b63001461042f5780634b4687b51461045c57600080fd5b8063095ea7b31161023a578063095ea7b31461033d578063158756b91461035d57806318160ddd14610372578063239c70ae1461039157806323b872dd146103a75780632f7306b8146103c757600080fd5b806301ffc9a71461027757806306fdde03146102ac578063081812fc146102ce578063081c8c4414610306578063088a4ed01461031b575b600080fd5b34801561028357600080fd5b50610297610292366004612420565b610811565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c161083c565b6040516102a3919061262d565b3480156102da57600080fd5b506102ee6102e93660046124a3565b6108ce565b6040516001600160a01b0390911681526020016102a3565b34801561031257600080fd5b506102c16108f5565b34801561032757600080fd5b5061033b6103363660046124a3565b610983565b005b34801561034957600080fd5b5061033b610358366004612360565b610990565b34801561036957600080fd5b5061033b610aab565b34801561037e57600080fd5b506008545b6040519081526020016102a3565b34801561039d57600080fd5b5061038360125481565b3480156103b357600080fd5b5061033b6103c236600461227e565b610ac1565b3480156103d357600080fd5b506103836103e2366004612360565b610af2565b3480156103f357600080fd5b50610383610402366004612360565b610b8e565b61033b610c24565b34801561041b57600080fd5b5061033b61042a36600461227e565b610c84565b34801561043b57600080fd5b5061044f61044a366004612230565b610c9f565b6040516102a391906125e9565b34801561046857600080fd5b5060135461029790610100900460ff1681565b34801561048757600080fd5b5061038360105481565b34801561049d57600080fd5b506103836104ac3660046124a3565b610d41565b3480156104bd57600080fd5b506013546102979062010000900460ff1681565b3480156104dd57600080fd5b5061033b6104ec3660046124a3565b610dd4565b3480156104fd57600080fd5b5061033b61050c36600461245a565b610de1565b34801561051d57600080fd5b506102ee61052c3660046124a3565b610e00565b34801561053d57600080fd5b5061038361054c366004612230565b610e60565b34801561055d57600080fd5b5061033b610ee6565b34801561057257600080fd5b50610383610581366004612230565b6001600160a01b03166000908152600c602052604090205490565b3480156105a857600080fd5b506013546102979060ff1681565b3480156105c257600080fd5b5061033b6105d136600461238a565b610efa565b3480156105e257600080fd5b50600a546001600160a01b03166102ee565b34801561060057600080fd5b506102c1610f6b565b61033b6106173660046124a3565b610f7a565b34801561062857600080fd5b5061033b610637366004612336565b61132c565b34801561064857600080fd5b5061033b611337565b34801561065d57600080fd5b5061038361066c366004612230565b6001600160a01b03166000908152600d602052604090205490565b34801561069357600080fd5b5061033b6106a23660046122ba565b611352565b3480156106b357600080fd5b506102c1611384565b3480156106c857600080fd5b506102c16106d73660046124a3565b611391565b3480156106e857600080fd5b5061033b6106f7366004612405565b611511565b34801561070857600080fd5b5061033b6107173660046124a3565b61152c565b34801561072857600080fd5b5061038360115481565b34801561073e57600080fd5b5061033b61074d36600461245a565b611539565b34801561075e57600080fd5b5061029761076d36600461224b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107a757600080fd5b5061033b6107b6366004612405565b611554565b3480156107c757600080fd5b50610383600f5481565b3480156107dd57600080fd5b5061033b6107ec36600461245a565b611576565b3480156107fd57600080fd5b5061033b61080c366004612230565b611591565b60006001600160e01b0319821663780e9d6360e01b1480610836575061083682611607565b92915050565b60606000805461084b9061276e565b80601f01602080910402602001604051908101604052809291908181526020018280546108779061276e565b80156108c45780601f10610899576101008083540402835291602001916108c4565b820191906000526020600020905b8154815290600101906020018083116108a757829003601f168201915b5050505050905090565b60006108d982611657565b506000908152600460205260409020546001600160a01b031690565b601480546109029061276e565b80601f016020809104026020016040519081016040528092919081815260200182805461092e9061276e565b801561097b5780601f106109505761010080835404028352916020019161097b565b820191906000526020600020905b81548152906001019060200180831161095e57829003601f168201915b505050505081565b61098b6116b6565b601255565b600061099b82610e00565b9050806001600160a01b0316836001600160a01b03161415610a0e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610a2a5750610a2a813361076d565b610a9c5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610a05565b610aa68383611710565b505050565b610ab36116b6565b6013805462ff000019169055565b610acb338261177e565b610ae75760405162461bcd60e51b8152600401610a0590612692565b610aa68383836117fd565b6001600160a01b0382166000908152600c6020908152604080832054600d9092528220548290610b2390600161272b565b90506000828511610b3357600091505b610b3d82846126e0565b851115610b5b57610b4e82846126e0565b610b58908661272b565b90505b600082601054610b6b919061270c565b82600f54610b79919061270c565b610b8391906126e0565b979650505050505050565b6000610b9983610e60565b8210610bfb5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a05565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610c2c6116b6565b604051600090339047908381818185875af1925050503d8060008114610c6e576040519150601f19603f3d011682016040523d82523d6000602084013e610c73565b606091505b5050905080610c8157600080fd5b50565b610aa683838360405180602001604052806000815250611352565b60606000610cac83610e60565b905060008167ffffffffffffffff811115610cc957610cc9612830565b604051908082528060200260200182016040528015610cf2578160200160208202803683370190505b50905060005b82811015610d3957610d0a8582610b8e565b828281518110610d1c57610d1c61281a565b602090810291909101015280610d31816127a9565b915050610cf8565b509392505050565b6000610d4c60085490565b8210610daf5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a05565b60088281548110610dc257610dc261281a565b90600052602060002001549050919050565b610ddc6116b6565b600f55565b610de96116b6565b8051610dfc90600b9060208401906120f5565b5050565b6000818152600260205260408120546001600160a01b0316806108365760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610a05565b60006001600160a01b038216610eca5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610a05565b506001600160a01b031660009081526003602052604090205490565b610eee6116b6565b610ef860006119a4565b565b610f026116b6565b60005b82811015610f655781600c6000868685818110610f2457610f2461281a565b9050602002016020810190610f399190612230565b6001600160a01b0316815260208101919091526040016000205580610f5d816127a9565b915050610f05565b50505050565b60606001805461084b9061276e565b6000610f8560085490565b60135490915060ff1615610fcc5760405162461bcd60e51b815260206004820152600e60248201526d135a5b9d081a5cc81c185d5cd95960921b6044820152606401610a05565b6000821161101c5760405162461bcd60e51b815260206004820152601c60248201527f4d696e7420616d6f756e74206d75737420626520706f736974697665000000006044820152606401610a05565b6012548211156110845760405162461bcd60e51b815260206004820152602d60248201527f4d696e7420616d6f756e74206d757374206265206c657373207468616e206d6160448201526c1e081b5a5b9d08185b5bdd5b9d609a1b6064820152608401610a05565b60115461109183836126e0565b11156110f95760405162461bcd60e51b815260206004820152603160248201527f537570706c79202b206d696e7420616d6f756e74206d757374206265206c657360448201527073207468616e206d617820737570706c7960781b6064820152608401610a05565b601354610100900460ff161561117d57336000908152600c602052604090205482111561117d5760405162461bcd60e51b815260206004820152602c60248201527f4e6f742077686974656c6973746564206f72206e6f7420656e6f75676820746f60448201526b1ad95b9cc8185b1b1bddd95960a21b6064820152608401610a05565b336000908152600c6020908152604080832054600d9092528220549091906111a690600161272b565b905060008285116111b657600091505b6111c082846126e0565b8511156111de576111d182846126e0565b6111db908661272b565b90505b6000826010546111ee919061270c565b82600f546111fc919061270c565b61120691906126e0565b905060008487116112175786611219565b845b336000908152600c602052604081208054929350839290919061123d90849061272b565b909155506000905060018514611254576000611257565b60015b336000908152600d6020526040902060ff91909116908190559050611284600a546001600160a01b031690565b6001600160a01b0316336001600160a01b0316146112ec57823410156112ec5760405162461bcd60e51b815260206004820152601860248201527f4e6f7420656e6f75676820657468657220746f206d696e7400000000000000006044820152606401610a05565b60015b888111611321576000611302828a6126e0565b905061130e33826119f6565b5080611319816127a9565b9150506112ef565b505050505050505050565b610dfc338383611a10565b61133f6116b6565b6013805462ff0000191662010000179055565b61135c338361177e565b6113785760405162461bcd60e51b8152600401610a0590612692565b610f6584848484611adf565b600e80546109029061276e565b6000818152600260205260409020546060906001600160a01b03166114105760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a05565b60135462010000900460ff166114b2576014805461142d9061276e565b80601f01602080910402602001604051908101604052809291908181526020018280546114599061276e565b80156114a65780601f1061147b576101008083540402835291602001916114a6565b820191906000526020600020905b81548152906001019060200180831161148957829003601f168201915b50505050509050919050565b60006114bc611b12565b905060008151116114dc576040518060200160405280600081525061150a565b806114e684611b21565b600e6040516020016114fa939291906124e8565b6040516020818303038152906040525b9392505050565b6115196116b6565b6013805460ff1916911515919091179055565b6115346116b6565b601055565b6115416116b6565b8051610dfc90600e9060208401906120f5565b61155c6116b6565b601380549115156101000261ff0019909216919091179055565b61157e6116b6565b8051610dfc9060149060208401906120f5565b6115996116b6565b6001600160a01b0381166115fe5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a05565b610c81816119a4565b60006001600160e01b031982166380ac58cd60e01b148061163857506001600160e01b03198216635b5e139f60e01b145b8061083657506301ffc9a760e01b6001600160e01b0319831614610836565b6000818152600260205260409020546001600160a01b0316610c815760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610a05565b600a546001600160a01b03163314610ef85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a05565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061174582610e00565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061178a83610e00565b9050806001600160a01b0316846001600160a01b031614806117d157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806117f55750836001600160a01b03166117ea846108ce565b6001600160a01b0316145b949350505050565b826001600160a01b031661181082610e00565b6001600160a01b0316146118745760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610a05565b6001600160a01b0382166118d65760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a05565b6118e1838383611c1f565b6118ec600082611710565b6001600160a01b038316600090815260036020526040812080546001929061191590849061272b565b90915550506001600160a01b03821660009081526003602052604081208054600192906119439084906126e0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610dfc828260405180602001604052806000815250611cd7565b816001600160a01b0316836001600160a01b03161415611a725760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a05565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611aea8484846117fd565b611af684848484611d0a565b610f655760405162461bcd60e51b8152600401610a0590612640565b6060600b805461084b9061276e565b606081611b455750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b6f5780611b59816127a9565b9150611b689050600a836126f8565b9150611b49565b60008167ffffffffffffffff811115611b8a57611b8a612830565b6040519080825280601f01601f191660200182016040528015611bb4576020820181803683370190505b5090505b84156117f557611bc960018361272b565b9150611bd6600a866127c4565b611be19060306126e0565b60f81b818381518110611bf657611bf661281a565b60200101906001600160f81b031916908160001a905350611c18600a866126f8565b9450611bb8565b6001600160a01b038316611c7a57611c7581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611c9d565b816001600160a01b0316836001600160a01b031614611c9d57611c9d8382611e17565b6001600160a01b038216611cb457610aa681611eb4565b826001600160a01b0316826001600160a01b031614610aa657610aa68282611f63565b611ce18383611fa7565b611cee6000848484611d0a565b610aa65760405162461bcd60e51b8152600401610a0590612640565b60006001600160a01b0384163b15611e0c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d4e9033908990889088906004016125ac565b602060405180830381600087803b158015611d6857600080fd5b505af1925050508015611d98575060408051601f3d908101601f19168201909252611d959181019061243d565b60015b611df2573d808015611dc6576040519150601f19603f3d011682016040523d82523d6000602084013e611dcb565b606091505b508051611dea5760405162461bcd60e51b8152600401610a0590612640565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117f5565b506001949350505050565b60006001611e2484610e60565b611e2e919061272b565b600083815260076020526040902054909150808214611e81576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611ec69060019061272b565b60008381526009602052604081205460088054939450909284908110611eee57611eee61281a565b906000526020600020015490508060088381548110611f0f57611f0f61281a565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f4757611f47612804565b6001900381819060005260206000200160009055905550505050565b6000611f6e83610e60565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611ffd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a05565b6000818152600260205260409020546001600160a01b0316156120625760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a05565b61206e60008383611c1f565b6001600160a01b03821660009081526003602052604081208054600192906120979084906126e0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546121019061276e565b90600052602060002090601f0160209004810192826121235760008555612169565b82601f1061213c57805160ff1916838001178555612169565b82800160010185558215612169579182015b8281111561216957825182559160200191906001019061214e565b50612175929150612179565b5090565b5b80821115612175576000815560010161217a565b600067ffffffffffffffff808411156121a9576121a9612830565b604051601f8501601f19908116603f011681019082821181831017156121d1576121d1612830565b816040528093508581528686860111156121ea57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461221b57600080fd5b919050565b8035801515811461221b57600080fd5b60006020828403121561224257600080fd5b61150a82612204565b6000806040838503121561225e57600080fd5b61226783612204565b915061227560208401612204565b90509250929050565b60008060006060848603121561229357600080fd5b61229c84612204565b92506122aa60208501612204565b9150604084013590509250925092565b600080600080608085870312156122d057600080fd5b6122d985612204565b93506122e760208601612204565b925060408501359150606085013567ffffffffffffffff81111561230a57600080fd5b8501601f8101871361231b57600080fd5b61232a8782356020840161218e565b91505092959194509250565b6000806040838503121561234957600080fd5b61235283612204565b915061227560208401612220565b6000806040838503121561237357600080fd5b61237c83612204565b946020939093013593505050565b60008060006040848603121561239f57600080fd5b833567ffffffffffffffff808211156123b757600080fd5b818601915086601f8301126123cb57600080fd5b8135818111156123da57600080fd5b8760208260051b85010111156123ef57600080fd5b6020928301989097509590910135949350505050565b60006020828403121561241757600080fd5b61150a82612220565b60006020828403121561243257600080fd5b813561150a81612846565b60006020828403121561244f57600080fd5b815161150a81612846565b60006020828403121561246c57600080fd5b813567ffffffffffffffff81111561248357600080fd5b8201601f8101841361249457600080fd5b6117f58482356020840161218e565b6000602082840312156124b557600080fd5b5035919050565b600081518084526124d4816020860160208601612742565b601f01601f19169290920160200192915050565b6000845160206124fb8285838a01612742565b85519184019161250e8184848a01612742565b8554920191600090600181811c908083168061252b57607f831692505b85831081141561254957634e487b7160e01b85526022600452602485fd5b80801561255d576001811461256e5761259b565b60ff1985168852838801955061259b565b60008b81526020902060005b858110156125935781548a82015290840190880161257a565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125df908301846124bc565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561262157835183529284019291840191600101612605565b50909695505050505050565b60208152600061150a60208301846124bc565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b600082198211156126f3576126f36127d8565b500190565b600082612707576127076127ee565b500490565b6000816000190483118215151615612726576127266127d8565b500290565b60008282101561273d5761273d6127d8565b500390565b60005b8381101561275d578181015183820152602001612745565b83811115610f655750506000910152565b600181811c9082168061278257607f821691505b602082108114156127a357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127bd576127bd6127d8565b5060010190565b6000826127d3576127d36127ee565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c8157600080fdfea2646970667358221220700498f980e3b306fbab8aaa376a0693d6ceff9143e121ada7ecac2aa04dd77064736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000007444546334354530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074445463343545300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003168747470733a2f2f646566336374732d6173736574732d6d657461646174612e73332e616d617a6f6e6177732e636f6d2f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003c68747470733a2f2f646566336374732d6173736574732d6d657461646174612e73332e616d617a6f6e6177732e636f6d2f68696464656e2e6a736f6e00000000

-----Decoded View---------------
Arg [0] : _name (string): DEF3CTS
Arg [1] : _symbol (string): DEF3CTS
Arg [2] : _initBaseURI (string): https://def3cts-assets-metadata.s3.amazonaws.com/
Arg [3] : _initNotRevealedUri (string): https://def3cts-assets-metadata.s3.amazonaws.com/hidden.json

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [5] : 4445463343545300000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [7] : 4445463343545300000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000031
Arg [9] : 68747470733a2f2f646566336374732d6173736574732d6d657461646174612e
Arg [10] : 73332e616d617a6f6e6177732e636f6d2f000000000000000000000000000000
Arg [11] : 000000000000000000000000000000000000000000000000000000000000003c
Arg [12] : 68747470733a2f2f646566336374732d6173736574732d6d657461646174612e
Arg [13] : 73332e616d617a6f6e6177732e636f6d2f68696464656e2e6a736f6e00000000


Deployed Bytecode Sourcemap

46235:8075:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37310:224;;;;;;;;;;-1:-1:-1;37310:224:0;;;;;:::i;:::-;;:::i;:::-;;;8501:14:1;;8494:22;8476:41;;8464:2;8449:18;37310:224:0;;;;;;;;24044:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25557:171::-;;;;;;;;;;-1:-1:-1;25557:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7162:32:1;;;7144:51;;7132:2;7117:18;25557:171:0;6998:203:1;46996:28:0;;;;;;;;;;;;;:::i;53214:118::-;;;;;;;;;;-1:-1:-1;53214:118:0;;;;;:::i;:::-;;:::i;:::-;;25074:417;;;;;;;;;;-1:-1:-1;25074:417:0;;;;;:::i;:::-;;:::i;52770:68::-;;;;;;;;;;;;;:::i;37950:113::-;;;;;;;;;;-1:-1:-1;38038:10:0;:17;37950:113;;;17518:25:1;;;17506:2;17491:18;37950:113:0;17372:177:1;46854:33:0;;;;;;;;;;;;;;;;26257:336;;;;;;;;;;-1:-1:-1;26257:336:0;;;;;:::i;:::-;;:::i;49888:937::-;;;;;;;;;;-1:-1:-1;49888:937:0;;;;;:::i;:::-;;:::i;37618:256::-;;;;;;;;;;-1:-1:-1;37618:256:0;;;;;:::i;:::-;;:::i;54149:158::-;;;:::i;26664:185::-;;;;;;;;;;-1:-1:-1;26664:185:0;;;;;:::i;:::-;;:::i;51559:348::-;;;;;;;;;;-1:-1:-1;51559:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46926:32::-;;;;;;;;;;-1:-1:-1;46926:32:0;;;;;;;;;;;46770:43;;;;;;;;;;;;;;;;38140:233;;;;;;;;;;-1:-1:-1;38140:233:0;;;;;:::i;:::-;;:::i;46963:28::-;;;;;;;;;;-1:-1:-1;46963:28:0;;;;;;;;;;;52887:94;;;;;;;;;;-1:-1:-1;52887:94:0;;;;;:::i;:::-;;:::i;53536:98::-;;;;;;;;;;-1:-1:-1;53536:98:0;;;;;:::i;:::-;;:::i;23755:222::-;;;;;;;;;;-1:-1:-1;23755:222:0;;;;;:::i;:::-;;:::i;23486:207::-;;;;;;;;;;-1:-1:-1;23486:207:0;;;;;:::i;:::-;;:::i;45341:103::-;;;;;;;;;;;;;:::i;50888:120::-;;;;;;;;;;-1:-1:-1;50888:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;50975:27:0;50952:7;50975:27;;;:20;:27;;;;;;;50888:120;46892:29;;;;;;;;;;-1:-1:-1;46892:29:0;;;;;;;;51268:226;;;;;;;;;;-1:-1:-1;51268:226:0;;;;;:::i;:::-;;:::i;44693:87::-;;;;;;;;;;-1:-1:-1;44766:6:0;;-1:-1:-1;;;;;44766:6:0;44693:87;;24213:104;;;;;;;;;;;;;:::i;47622:2196::-;;;;;;:::i;:::-;;:::i;25800:155::-;;;;;;;;;;-1:-1:-1;25800:155:0;;;;;:::i;:::-;;:::i;52643:65::-;;;;;;;;;;;;;:::i;51076:120::-;;;;;;;;;;-1:-1:-1;51076:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;51164:26:0;51141:7;51164:26;;;:19;:26;;;;;;;51076:120;26920:323;;;;;;;;;;-1:-1:-1;26920:323:0;;;;;:::i;:::-;;:::i;46685:37::-;;;;;;;;;;;;;:::i;51965:613::-;;;;;;;;;;-1:-1:-1;51965:613:0;;;;;:::i;:::-;;:::i;53875:81::-;;;;;;;;;;-1:-1:-1;53875:81:0;;;;;:::i;:::-;;:::i;53028:102::-;;;;;;;;;;-1:-1:-1;53028:102:0;;;;;:::i;:::-;;:::i;46818:31::-;;;;;;;;;;;;;;;;53688:122;;;;;;;;;;-1:-1:-1;53688:122:0;;;;;:::i;:::-;;:::i;26026:164::-;;;;;;;;;;-1:-1:-1;26026:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26147:25:0;;;26123:4;26147:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26026:164;54008:91;;;;;;;;;;-1:-1:-1;54008:91:0;;;;;:::i;:::-;;:::i;46727:38::-;;;;;;;;;;;;;;;;53387:120;;;;;;;;;;-1:-1:-1;53387:120:0;;;;;:::i;:::-;;:::i;45599:201::-;;;;;;;;;;-1:-1:-1;45599:201:0;;;;;:::i;:::-;;:::i;37310:224::-;37412:4;-1:-1:-1;;;;;;37436:50:0;;-1:-1:-1;;;37436:50:0;;:90;;;37490:36;37514:11;37490:23;:36::i;:::-;37429:97;37310:224;-1:-1:-1;;37310:224:0:o;24044:100::-;24098:13;24131:5;24124:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24044:100;:::o;25557:171::-;25633:7;25653:23;25668:7;25653:14;:23::i;:::-;-1:-1:-1;25696:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25696:24:0;;25557:171::o;46996:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53214:118::-;44579:13;:11;:13::i;:::-;53293::::1;:33:::0;53214:118::o;25074:417::-;25155:13;25171:23;25186:7;25171:14;:23::i;:::-;25155:39;;25219:5;-1:-1:-1;;;;;25213:11:0;:2;-1:-1:-1;;;;;25213:11:0;;;25205:57;;;;-1:-1:-1;;;25205:57:0;;15226:2:1;25205:57:0;;;15208:21:1;15265:2;15245:18;;;15238:30;15304:34;15284:18;;;15277:62;-1:-1:-1;;;15355:18:1;;;15348:31;15396:19;;25205:57:0;;;;;;;;;21576:10;-1:-1:-1;;;;;25297:21:0;;;;:62;;-1:-1:-1;25322:37:0;25339:5;21576:10;26026:164;:::i;25322:37::-;25275:174;;;;-1:-1:-1;;;25275:174:0;;13304:2:1;25275:174:0;;;13286:21:1;13343:2;13323:18;;;13316:30;13382:34;13362:18;;;13355:62;13453:32;13433:18;;;13426:60;13503:19;;25275:174:0;13102:426:1;25275:174:0;25462:21;25471:2;25475:7;25462:8;:21::i;:::-;25144:347;25074:417;;:::o;52770:68::-;44579:13;:11;:13::i;:::-;52816:8:::1;:16:::0;;-1:-1:-1;;52816:16:0::1;::::0;;52770:68::o;26257:336::-;26452:41;21576:10;26485:7;26452:18;:41::i;:::-;26444:100;;;;-1:-1:-1;;;26444:100:0;;;;;;;:::i;:::-;26557:28;26567:4;26573:2;26577:7;26557:9;:28::i;49888:937::-;-1:-1:-1;;;;;50072:27:0;;49969:7;50072:27;;;:20;:27;;;;;;;;;50202:19;:26;;;;;;49969:7;;50198:30;;:1;:30;:::i;:::-;50171:57;;50295:20;50401:15;50386:11;:30;50382:73;;50446:1;50427:20;;50382:73;50530:34;50548:16;50530:15;:34;:::i;:::-;50516:11;:48;50512:136;;;50605:34;50623:16;50605:15;:34;:::i;:::-;50590:50;;:11;:50;:::i;:::-;50575:65;;50512:136;50717:13;50781:16;50764:14;;:33;;;;:::i;:::-;50747:12;50734:10;;:25;;;;:::i;:::-;50733:65;;;;:::i;:::-;50717:81;49888:937;-1:-1:-1;;;;;;;49888:937:0:o;37618:256::-;37715:7;37751:23;37768:5;37751:16;:23::i;:::-;37743:5;:31;37735:87;;;;-1:-1:-1;;;37735:87:0;;9368:2:1;37735:87:0;;;9350:21:1;9407:2;9387:18;;;9380:30;9446:34;9426:18;;;9419:62;-1:-1:-1;;;9497:18:1;;;9490:41;9548:19;;37735:87:0;9166:407:1;37735:87:0;-1:-1:-1;;;;;;37840:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;37618:256::o;54149:158::-;44579:13;:11;:13::i;:::-;54220:58:::1;::::0;54202:12:::1;::::0;54228:10:::1;::::0;54252:21:::1;::::0;54202:12;54220:58;54202:12;54220:58;54252:21;54228:10;54220:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54201:77;;;54293:7;54285:16;;;::::0;::::1;;54194:113;54149:158::o:0;26664:185::-;26802:39;26819:4;26825:2;26829:7;26802:39;;;;;;;;;;;;:16;:39::i;51559:348::-;51634:16;51662:23;51688:17;51698:6;51688:9;:17::i;:::-;51662:43;;51712:25;51754:15;51740:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51740:30:0;;51712:58;;51782:9;51777:103;51797:15;51793:1;:19;51777:103;;;51842:30;51862:6;51870:1;51842:19;:30::i;:::-;51828:8;51837:1;51828:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;51814:3;;;;:::i;:::-;;;;51777:103;;;-1:-1:-1;51893:8:0;51559:348;-1:-1:-1;;;51559:348:0:o;38140:233::-;38215:7;38251:30;38038:10;:17;;37950:113;38251:30;38243:5;:38;38235:95;;;;-1:-1:-1;;;38235:95:0;;16046:2:1;38235:95:0;;;16028:21:1;16085:2;16065:18;;;16058:30;16124:34;16104:18;;;16097:62;-1:-1:-1;;;16175:18:1;;;16168:42;16227:19;;38235:95:0;15844:408:1;38235:95:0;38348:10;38359:5;38348:17;;;;;;;;:::i;:::-;;;;;;;;;38341:24;;38140:233;;;:::o;52887:94::-;44579:13;:11;:13::i;:::-;52954:10:::1;:21:::0;52887:94::o;53536:98::-;44579:13;:11;:13::i;:::-;53607:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;53536:98:::0;:::o;23755:222::-;23827:7;23863:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23863:16:0;23898:19;23890:56;;;;-1:-1:-1;;;23890:56:0;;14873:2:1;23890:56:0;;;14855:21:1;14912:2;14892:18;;;14885:30;-1:-1:-1;;;14931:18:1;;;14924:54;14995:18;;23890:56:0;14671:348:1;23486:207:0;23558:7;-1:-1:-1;;;;;23586:19:0;;23578:73;;;;-1:-1:-1;;;23578:73:0;;12894:2:1;23578:73:0;;;12876:21:1;12933:2;12913:18;;;12906:30;12972:34;12952:18;;;12945:62;-1:-1:-1;;;13023:18:1;;;13016:39;13072:19;;23578:73:0;12692:405:1;23578:73:0;-1:-1:-1;;;;;;23669:16:0;;;;;:9;:16;;;;;;;23486:207::o;45341:103::-;44579:13;:11;:13::i;:::-;45406:30:::1;45433:1;45406:18;:30::i;:::-;45341:103::o:0;51268:226::-;44579:13;:11;:13::i;:::-;51377:9:::1;51372:117;51392:20:::0;;::::1;51372:117;;;51465:16;51428:20;:34;51449:9;;51459:1;51449:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;51428:34:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;51428:34:0;:53;51414:3;::::1;::::0;::::1;:::i;:::-;;;;51372:117;;;;51268:226:::0;;;:::o;24213:104::-;24269:13;24302:7;24295:14;;;;;:::i;47622:2196::-;47679:14;47696:13;38038:10;:17;;37950:113;47696:13;47725:10;;47679:30;;-1:-1:-1;47725:10:0;;47724:11;47716:38;;;;-1:-1:-1;;;47716:38:0;;16874:2:1;47716:38:0;;;16856:21:1;16913:2;16893:18;;;16886:30;-1:-1:-1;;;16932:18:1;;;16925:44;16986:18;;47716:38:0;16672:338:1;47716:38:0;47783:1;47769:11;:15;47761:56;;;;-1:-1:-1;;;47761:56:0;;17217:2:1;47761:56:0;;;17199:21:1;17256:2;17236:18;;;17229:30;17295;17275:18;;;17268:58;17343:18;;47761:56:0;17015:352:1;47761:56:0;47847:13;;47832:11;:28;;47824:86;;;;-1:-1:-1;;;47824:86:0;;8954:2:1;47824:86:0;;;8936:21:1;8993:2;8973:18;;;8966:30;9032:34;9012:18;;;9005:62;-1:-1:-1;;;9083:18:1;;;9076:43;9136:19;;47824:86:0;8752:409:1;47824:86:0;47949:9;;47925:20;47934:11;47925:6;:20;:::i;:::-;:33;;47917:95;;;;-1:-1:-1;;;47917:95:0;;15628:2:1;47917:95:0;;;15610:21:1;15667:2;15647:18;;;15640:30;15706:34;15686:18;;;15679:62;-1:-1:-1;;;15757:18:1;;;15750:47;15814:19;;47917:95:0;15426:413:1;47917:95:0;48102:13;;;;;;;48098:140;;;48155:10;48134:32;;;;:20;:32;;;;;;:47;-1:-1:-1;48134:47:0;48126:104;;;;-1:-1:-1;;;48126:104:0;;11722:2:1;48126:104:0;;;11704:21:1;11761:2;11741:18;;;11734:30;11800:34;11780:18;;;11773:62;-1:-1:-1;;;11851:18:1;;;11844:42;11903:19;;48126:104:0;11520:408:1;48126:104:0;48354:10;48307:23;48333:32;;;:20;:32;;;;;;;;;48468:19;:31;;;;;;48333:32;;48307:23;48464:35;;:1;:35;:::i;:::-;48437:62;;48566:20;48672:15;48657:11;:30;48653:73;;48717:1;48698:20;;48653:73;48805:34;48823:16;48805:15;:34;:::i;:::-;48791:11;:48;48787:136;;;48880:34;48898:16;48880:15;:34;:::i;:::-;48865:50;;:11;:50;:::i;:::-;48850:65;;48787:136;48992:13;49056:16;49039:14;;:33;;;;:::i;:::-;49022:12;49009:10;;:25;;;;:::i;:::-;49008:65;;;;:::i;:::-;48992:81;;49128:25;49170:15;49156:11;:29;:61;;49206:11;49156:61;;;49188:15;49156:61;49245:10;49224:32;;;;:20;:32;;;;;:53;;49128:89;;-1:-1:-1;49128:89:0;;49224:32;;;:53;;49128:89;;49224:53;:::i;:::-;;;;-1:-1:-1;49331:26:0;;-1:-1:-1;49380:1:0;49360:21;;:29;;49388:1;49360:29;;;49384:1;49360:29;49416:10;49396:31;;;;:19;:31;;;;;49331:58;;;;;49396:52;;;;49331:58;-1:-1:-1;49523:7:0;44766:6;;-1:-1:-1;;;;;44766:6:0;;44693:87;49523:7;-1:-1:-1;;;;;49509:21:0;:10;-1:-1:-1;;;;;49509:21:0;;49505:99;;49562:5;49549:9;:18;;49541:55;;;;-1:-1:-1;;;49541:55:0;;11369:2:1;49541:55:0;;;11351:21:1;11408:2;11388:18;;;11381:30;11447:26;11427:18;;;11420:54;11491:18;;49541:55:0;11167:348:1;49541:55:0;49699:1;49682:131;49707:11;49702:1;:16;49682:131;;49734:17;49754:10;49763:1;49754:6;:10;:::i;:::-;49734:30;;49773:32;49783:10;49795:9;49773;:32::i;:::-;-1:-1:-1;49720:3:0;;;;:::i;:::-;;;;49682:131;;;;47672:2146;;;;;;;47622:2196;:::o;25800:155::-;25895:52;21576:10;25928:8;25938;25895:18;:52::i;52643:65::-;44579:13;:11;:13::i;:::-;52687:8:::1;:15:::0;;-1:-1:-1;;52687:15:0::1;::::0;::::1;::::0;;52643:65::o;26920:323::-;27094:41;21576:10;27127:7;27094:18;:41::i;:::-;27086:100;;;;-1:-1:-1;;;27086:100:0;;;;;;;:::i;:::-;27197:38;27211:4;27217:2;27221:7;27230:4;27197:13;:38::i;46685:37::-;;;;;;;:::i;51965:613::-;28815:4;28839:16;;;:7;:16;;;;;;52063:13;;-1:-1:-1;;;;;28839:16:0;52088:97;;;;-1:-1:-1;;;52088:97:0;;14457:2:1;52088:97:0;;;14439:21:1;14496:2;14476:18;;;14469:30;14535:34;14515:18;;;14508:62;-1:-1:-1;;;14586:18:1;;;14579:45;14641:19;;52088:97:0;14255:411:1;52088:97:0;52273:8;;;;;;;52269:63;;52310:14;52303:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51965:613;;;:::o;52269:63::-;52382:28;52413:10;:8;:10::i;:::-;52382:41;;52470:1;52445:14;52439:28;:32;:133;;;;;;;;;;;;;;;;;52507:14;52523:18;:7;:16;:18::i;:::-;52543:13;52490:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52439:133;52432:140;51965:613;-1:-1:-1;;;51965:613:0:o;53875:81::-;44579:13;:11;:13::i;:::-;53931:10:::1;:19:::0;;-1:-1:-1;;53931:19:0::1;::::0;::::1;;::::0;;;::::1;::::0;;53875:81::o;53028:102::-;44579:13;:11;:13::i;:::-;53099:14:::1;:25:::0;53028:102::o;53688:122::-;44579:13;:11;:13::i;:::-;53771:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;54008:91::-:0;44579:13;:11;:13::i;:::-;54071::::1;:22:::0;;;::::1;;;;-1:-1:-1::0;;54071:22:0;;::::1;::::0;;;::::1;::::0;;54008:91::o;53387:120::-;44579:13;:11;:13::i;:::-;53469:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;45599:201::-:0;44579:13;:11;:13::i;:::-;-1:-1:-1;;;;;45688:22:0;::::1;45680:73;;;::::0;-1:-1:-1;;;45680:73:0;;10199:2:1;45680:73:0::1;::::0;::::1;10181:21:1::0;10238:2;10218:18;;;10211:30;10277:34;10257:18;;;10250:62;-1:-1:-1;;;10328:18:1;;;10321:36;10374:19;;45680:73:0::1;9997:402:1::0;45680:73:0::1;45764:28;45783:8;45764:18;:28::i;23117:305::-:0;23219:4;-1:-1:-1;;;;;;23256:40:0;;-1:-1:-1;;;23256:40:0;;:105;;-1:-1:-1;;;;;;;23313:48:0;;-1:-1:-1;;;23313:48:0;23256:105;:158;;;-1:-1:-1;;;;;;;;;;13995:40:0;;;23378:36;13886:157;33532:135;28815:4;28839:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28839:16:0;33606:53;;;;-1:-1:-1;;;33606:53:0;;14873:2:1;33606:53:0;;;14855:21:1;14912:2;14892:18;;;14885:30;-1:-1:-1;;;14931:18:1;;;14924:54;14995:18;;33606:53:0;14671:348:1;44858:132:0;44766:6;;-1:-1:-1;;;;;44766:6:0;21576:10;44922:23;44914:68;;;;-1:-1:-1;;;44914:68:0;;14096:2:1;44914:68:0;;;14078:21:1;;;14115:18;;;14108:30;14174:34;14154:18;;;14147:62;14226:18;;44914:68:0;13894:356:1;32811:174:0;32886:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32886:29:0;-1:-1:-1;;;;;32886:29:0;;;;;;;;:24;;32940:23;32886:24;32940:14;:23::i;:::-;-1:-1:-1;;;;;32931:46:0;;;;;;;;;;;32811:174;;:::o;29044:264::-;29137:4;29154:13;29170:23;29185:7;29170:14;:23::i;:::-;29154:39;;29223:5;-1:-1:-1;;;;;29212:16:0;:7;-1:-1:-1;;;;;29212:16:0;;:52;;;-1:-1:-1;;;;;;26147:25:0;;;26123:4;26147:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;29232:32;29212:87;;;;29292:7;-1:-1:-1;;;;;29268:31:0;:20;29280:7;29268:11;:20::i;:::-;-1:-1:-1;;;;;29268:31:0;;29212:87;29204:96;29044:264;-1:-1:-1;;;;29044:264:0:o;32067:625::-;32226:4;-1:-1:-1;;;;;32199:31:0;:23;32214:7;32199:14;:23::i;:::-;-1:-1:-1;;;;;32199:31:0;;32191:81;;;;-1:-1:-1;;;32191:81:0;;10606:2:1;32191:81:0;;;10588:21:1;10645:2;10625:18;;;10618:30;10684:34;10664:18;;;10657:62;-1:-1:-1;;;10735:18:1;;;10728:35;10780:19;;32191:81:0;10404:401:1;32191:81:0;-1:-1:-1;;;;;32291:16:0;;32283:65;;;;-1:-1:-1;;;32283:65:0;;12135:2:1;32283:65:0;;;12117:21:1;12174:2;12154:18;;;12147:30;12213:34;12193:18;;;12186:62;-1:-1:-1;;;12264:18:1;;;12257:34;12308:19;;32283:65:0;11933:400:1;32283:65:0;32361:39;32382:4;32388:2;32392:7;32361:20;:39::i;:::-;32465:29;32482:1;32486:7;32465:8;:29::i;:::-;-1:-1:-1;;;;;32507:15:0;;;;;;:9;:15;;;;;:20;;32526:1;;32507:15;:20;;32526:1;;32507:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32538:13:0;;;;;;:9;:13;;;;;:18;;32555:1;;32538:13;:18;;32555:1;;32538:18;:::i;:::-;;;;-1:-1:-1;;32567:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32567:21:0;-1:-1:-1;;;;;32567:21:0;;;;;;;;;32606:27;;32567:16;;32606:27;;;;;;;25144:347;25074:417;;:::o;45960:191::-;46053:6;;;-1:-1:-1;;;;;46070:17:0;;;-1:-1:-1;;;;;;46070:17:0;;;;;;;46103:40;;46053:6;;;46070:17;46053:6;;46103:40;;46034:16;;46103:40;46023:128;45960:191;:::o;29650:110::-;29726:26;29736:2;29740:7;29726:26;;;;;;;;;;;;:9;:26::i;33128:315::-;33283:8;-1:-1:-1;;;;;33274:17:0;:5;-1:-1:-1;;;;;33274:17:0;;;33266:55;;;;-1:-1:-1;;;33266:55:0;;12540:2:1;33266:55:0;;;12522:21:1;12579:2;12559:18;;;12552:30;12618:27;12598:18;;;12591:55;12663:18;;33266:55:0;12338:349:1;33266:55:0;-1:-1:-1;;;;;33332:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;33332:46:0;;;;;;;;;;33394:41;;8476::1;;;33394::0;;8449:18:1;33394:41:0;;;;;;;33128:315;;;:::o;28124:313::-;28280:28;28290:4;28296:2;28300:7;28280:9;:28::i;:::-;28327:47;28350:4;28356:2;28360:7;28369:4;28327:22;:47::i;:::-;28319:110;;;;-1:-1:-1;;;28319:110:0;;;;;;;:::i;47450:102::-;47510:13;47539:7;47532:14;;;;;:::i;430:723::-;486:13;707:10;703:53;;-1:-1:-1;;734:10:0;;;;;;;;;;;;-1:-1:-1;;;734:10:0;;;;;430:723::o;703:53::-;781:5;766:12;822:78;829:9;;822:78;;855:8;;;;:::i;:::-;;-1:-1:-1;878:10:0;;-1:-1:-1;886:2:0;878:10;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;932:17:0;;910:39;;960:154;967:10;;960:154;;994:11;1004:1;994:11;;:::i;:::-;;-1:-1:-1;1063:10:0;1071:2;1063:5;:10;:::i;:::-;1050:24;;:2;:24;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1020:56:0;;;;;;;;-1:-1:-1;1091:11:0;1100:2;1091:11;;:::i;:::-;;;960:154;;38986:589;-1:-1:-1;;;;;39192:18:0;;39188:187;;39227:40;39259:7;40402:10;:17;;40375:24;;;;:15;:24;;;;;:44;;;40430:24;;;;;;;;;;;;40298:164;39227:40;39188:187;;;39297:2;-1:-1:-1;;;;;39289:10:0;:4;-1:-1:-1;;;;;39289:10:0;;39285:90;;39316:47;39349:4;39355:7;39316:32;:47::i;:::-;-1:-1:-1;;;;;39389:16:0;;39385:183;;39422:45;39459:7;39422:36;:45::i;39385:183::-;39495:4;-1:-1:-1;;;;;39489:10:0;:2;-1:-1:-1;;;;;39489:10:0;;39485:83;;39516:40;39544:2;39548:7;39516:27;:40::i;29987:319::-;30116:18;30122:2;30126:7;30116:5;:18::i;:::-;30167:53;30198:1;30202:2;30206:7;30215:4;30167:22;:53::i;:::-;30145:153;;;;-1:-1:-1;;;30145:153:0;;;;;;;:::i;34231:853::-;34385:4;-1:-1:-1;;;;;34406:13:0;;4025:19;:23;34402:675;;34442:71;;-1:-1:-1;;;34442:71:0;;-1:-1:-1;;;;;34442:36:0;;;;;:71;;21576:10;;34493:4;;34499:7;;34508:4;;34442:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34442:71:0;;;;;;;;-1:-1:-1;;34442:71:0;;;;;;;;;;;;:::i;:::-;;;34438:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34683:13:0;;34679:328;;34726:60;;-1:-1:-1;;;34726:60:0;;;;;;;:::i;34679:328::-;34957:6;34951:13;34942:6;34938:2;34934:15;34927:38;34438:584;-1:-1:-1;;;;;;34564:51:0;-1:-1:-1;;;34564:51:0;;-1:-1:-1;34557:58:0;;34402:675;-1:-1:-1;35061:4:0;34231:853;;;;;;:::o;41089:988::-;41355:22;41405:1;41380:22;41397:4;41380:16;:22::i;:::-;:26;;;;:::i;:::-;41417:18;41438:26;;;:17;:26;;;;;;41355:51;;-1:-1:-1;41571:28:0;;;41567:328;;-1:-1:-1;;;;;41638:18:0;;41616:19;41638:18;;;:12;:18;;;;;;;;:34;;;;;;;;;41689:30;;;;;;:44;;;41806:30;;:17;:30;;;;;:43;;;41567:328;-1:-1:-1;41991:26:0;;;;:17;:26;;;;;;;;41984:33;;;-1:-1:-1;;;;;42035:18:0;;;;;:12;:18;;;;;:34;;;;;;;42028:41;41089:988::o;42372:1079::-;42650:10;:17;42625:22;;42650:21;;42670:1;;42650:21;:::i;:::-;42682:18;42703:24;;;:15;:24;;;;;;43076:10;:26;;42625:46;;-1:-1:-1;42703:24:0;;42625:46;;43076:26;;;;;;:::i;:::-;;;;;;;;;43054:48;;43140:11;43115:10;43126;43115:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;43220:28;;;:15;:28;;;;;;;:41;;;43392:24;;;;;43385:31;43427:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;42443:1008;;;42372:1079;:::o;39876:221::-;39961:14;39978:20;39995:2;39978:16;:20::i;:::-;-1:-1:-1;;;;;40009:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;40054:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39876:221:0:o;30642:439::-;-1:-1:-1;;;;;30722:16:0;;30714:61;;;;-1:-1:-1;;;30714:61:0;;13735:2:1;30714:61:0;;;13717:21:1;;;13754:18;;;13747:30;13813:34;13793:18;;;13786:62;13865:18;;30714:61:0;13533:356:1;30714:61:0;28815:4;28839:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28839:16:0;:30;30786:58;;;;-1:-1:-1;;;30786:58:0;;11012:2:1;30786:58:0;;;10994:21:1;11051:2;11031:18;;;11024:30;11090;11070:18;;;11063:58;11138:18;;30786:58:0;10810:352:1;30786:58:0;30857:45;30886:1;30890:2;30894:7;30857:20;:45::i;:::-;-1:-1:-1;;;;;30915:13:0;;;;;;:9;:13;;;;;:18;;30932:1;;30915:13;:18;;30932:1;;30915:18;:::i;:::-;;;;-1:-1:-1;;30944:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30944:21:0;-1:-1:-1;;;;;30944:21:0;;;;;;;;30983:33;;30944:16;;;30983:33;;30944:16;;30983:33;53607:21:::1;53536:98:::0;:::o;-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:689::-;3066:6;3074;3082;3135:2;3123:9;3114:7;3110:23;3106:32;3103:52;;;3151:1;3148;3141:12;3103:52;3191:9;3178:23;3220:18;3261:2;3253:6;3250:14;3247:34;;;3277:1;3274;3267:12;3247:34;3315:6;3304:9;3300:22;3290:32;;3360:7;3353:4;3349:2;3345:13;3341:27;3331:55;;3382:1;3379;3372:12;3331:55;3422:2;3409:16;3448:2;3440:6;3437:14;3434:34;;;3464:1;3461;3454:12;3434:34;3519:7;3512:4;3502:6;3499:1;3495:14;3491:2;3487:23;3483:34;3480:47;3477:67;;;3540:1;3537;3530:12;3477:67;3571:4;3563:13;;;;3595:6;;-1:-1:-1;3633:20:1;;;;3620:34;;2971:689;-1:-1:-1;;;;2971:689:1:o;3665:180::-;3721:6;3774:2;3762:9;3753:7;3749:23;3745:32;3742:52;;;3790:1;3787;3780:12;3742:52;3813:26;3829:9;3813:26;:::i;3850:245::-;3908:6;3961:2;3949:9;3940:7;3936:23;3932:32;3929:52;;;3977:1;3974;3967:12;3929:52;4016:9;4003:23;4035:30;4059:5;4035:30;:::i;4100:249::-;4169:6;4222:2;4210:9;4201:7;4197:23;4193:32;4190:52;;;4238:1;4235;4228:12;4190:52;4270:9;4264:16;4289:30;4313:5;4289:30;:::i;4354:450::-;4423:6;4476:2;4464:9;4455:7;4451:23;4447:32;4444:52;;;4492:1;4489;4482:12;4444:52;4532:9;4519:23;4565:18;4557:6;4554:30;4551:50;;;4597:1;4594;4587:12;4551:50;4620:22;;4673:4;4665:13;;4661:27;-1:-1:-1;4651:55:1;;4702:1;4699;4692:12;4651:55;4725:73;4790:7;4785:2;4772:16;4767:2;4763;4759:11;4725:73;:::i;4809:180::-;4868:6;4921:2;4909:9;4900:7;4896:23;4892:32;4889:52;;;4937:1;4934;4927:12;4889:52;-1:-1:-1;4960:23:1;;4809:180;-1:-1:-1;4809:180:1:o;4994:257::-;5035:3;5073:5;5067:12;5100:6;5095:3;5088:19;5116:63;5172:6;5165:4;5160:3;5156:14;5149:4;5142:5;5138:16;5116:63;:::i;:::-;5233:2;5212:15;-1:-1:-1;;5208:29:1;5199:39;;;;5240:4;5195:50;;4994:257;-1:-1:-1;;4994:257:1:o;5256:1527::-;5480:3;5518:6;5512:13;5544:4;5557:51;5601:6;5596:3;5591:2;5583:6;5579:15;5557:51;:::i;:::-;5671:13;;5630:16;;;;5693:55;5671:13;5630:16;5715:15;;;5693:55;:::i;:::-;5837:13;;5770:20;;;5810:1;;5897;5919:18;;;;5972;;;;5999:93;;6077:4;6067:8;6063:19;6051:31;;5999:93;6140:2;6130:8;6127:16;6107:18;6104:40;6101:167;;;-1:-1:-1;;;6167:33:1;;6223:4;6220:1;6213:15;6253:4;6174:3;6241:17;6101:167;6284:18;6311:110;;;;6435:1;6430:328;;;;6277:481;;6311:110;-1:-1:-1;;6346:24:1;;6332:39;;6391:20;;;;-1:-1:-1;6311:110:1;;6430:328;17627:1;17620:14;;;17664:4;17651:18;;6525:1;6539:169;6553:8;6550:1;6547:15;6539:169;;;6635:14;;6620:13;;;6613:37;6678:16;;;;6570:10;;6539:169;;;6543:3;;6739:8;6732:5;6728:20;6721:27;;6277:481;-1:-1:-1;6774:3:1;;5256:1527;-1:-1:-1;;;;;;;;;;;5256:1527:1:o;7206:488::-;-1:-1:-1;;;;;7475:15:1;;;7457:34;;7527:15;;7522:2;7507:18;;7500:43;7574:2;7559:18;;7552:34;;;7622:3;7617:2;7602:18;;7595:31;;;7400:4;;7643:45;;7668:19;;7660:6;7643:45;:::i;:::-;7635:53;7206:488;-1:-1:-1;;;;;;7206:488:1:o;7699:632::-;7870:2;7922:21;;;7992:13;;7895:18;;;8014:22;;;7841:4;;7870:2;8093:15;;;;8067:2;8052:18;;;7841:4;8136:169;8150:6;8147:1;8144:13;8136:169;;;8211:13;;8199:26;;8280:15;;;;8245:12;;;;8172:1;8165:9;8136:169;;;-1:-1:-1;8322:3:1;;7699:632;-1:-1:-1;;;;;;7699:632:1:o;8528:219::-;8677:2;8666:9;8659:21;8640:4;8697:44;8737:2;8726:9;8722:18;8714:6;8697:44;:::i;9578:414::-;9780:2;9762:21;;;9819:2;9799:18;;;9792:30;9858:34;9853:2;9838:18;;9831:62;-1:-1:-1;;;9924:2:1;9909:18;;9902:48;9982:3;9967:19;;9578:414::o;16257:410::-;16459:2;16441:21;;;16498:2;16478:18;;;16471:30;16537:34;16532:2;16517:18;;16510:62;-1:-1:-1;;;16603:2:1;16588:18;;16581:44;16657:3;16642:19;;16257:410::o;17680:128::-;17720:3;17751:1;17747:6;17744:1;17741:13;17738:39;;;17757:18;;:::i;:::-;-1:-1:-1;17793:9:1;;17680:128::o;17813:120::-;17853:1;17879;17869:35;;17884:18;;:::i;:::-;-1:-1:-1;17918:9:1;;17813:120::o;17938:168::-;17978:7;18044:1;18040;18036:6;18032:14;18029:1;18026:21;18021:1;18014:9;18007:17;18003:45;18000:71;;;18051:18;;:::i;:::-;-1:-1:-1;18091:9:1;;17938:168::o;18111:125::-;18151:4;18179:1;18176;18173:8;18170:34;;;18184:18;;:::i;:::-;-1:-1:-1;18221:9:1;;18111:125::o;18241:258::-;18313:1;18323:113;18337:6;18334:1;18331:13;18323:113;;;18413:11;;;18407:18;18394:11;;;18387:39;18359:2;18352:10;18323:113;;;18454:6;18451:1;18448:13;18445:48;;;-1:-1:-1;;18489:1:1;18471:16;;18464:27;18241:258::o;18504:380::-;18583:1;18579:12;;;;18626;;;18647:61;;18701:4;18693:6;18689:17;18679:27;;18647:61;18754:2;18746:6;18743:14;18723:18;18720:38;18717:161;;;18800:10;18795:3;18791:20;18788:1;18781:31;18835:4;18832:1;18825:15;18863:4;18860:1;18853:15;18717:161;;18504:380;;;:::o;18889:135::-;18928:3;-1:-1:-1;;18949:17:1;;18946:43;;;18969:18;;:::i;:::-;-1:-1:-1;19016:1:1;19005:13;;18889:135::o;19029:112::-;19061:1;19087;19077:35;;19092:18;;:::i;:::-;-1:-1:-1;19126:9:1;;19029:112::o;19146:127::-;19207:10;19202:3;19198:20;19195:1;19188:31;19238:4;19235:1;19228:15;19262:4;19259:1;19252:15;19278:127;19339:10;19334:3;19330:20;19327:1;19320:31;19370:4;19367:1;19360:15;19394:4;19391:1;19384:15;19410:127;19471:10;19466:3;19462:20;19459:1;19452:31;19502:4;19499:1;19492:15;19526:4;19523:1;19516:15;19542:127;19603:10;19598:3;19594:20;19591:1;19584:31;19634:4;19631:1;19624:15;19658:4;19655:1;19648:15;19674:127;19735:10;19730:3;19726:20;19723:1;19716:31;19766:4;19763:1;19756:15;19790:4;19787:1;19780:15;19806:131;-1:-1:-1;;;;;;19880:32:1;;19870:43;;19860:71;;19927:1;19924;19917:12

Swarm Source

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