ETH Price: $3,612.80 (-2.15%)

Token

Reptikas Collective (RPTKA)
 

Overview

Max Total Supply

46 RPTKA

Holders

18

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 RPTKA
0x4c4a44d236468756df8fe5e37d31e61e80279b3a
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Reptikas Collective is a collection of 6,666 Reptika NFTs, living on the Ethereum blockchain.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Reptikas_Collective

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.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: balance query for the zero address");
        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: owner query for nonexistent token");
        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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public 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 owner nor approved for all"
        );

        _approve(to, tokenId);
    }

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

        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: transfer caller is not 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: transfer caller is not 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) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, 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 a {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 a {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 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 {
                    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: contracts/Reptikas.sol

//SPDX-License-Identifier: UNLICENSED








//             ▄▀▀▄▀▀▀▄  ▄▀▀█▄▄▄▄  ▄▀▀▄▀▀▀▄  ▄▀▀▀█▀▀▄  ▄▀▀█▀▄    ▄▀▀▄ █  ▄▀▀█▄   ▄▀▀▀▀▄             
//            █   █   █ ▐  ▄▀   ▐ █   █   █ █    █  ▐ █   █  █  █  █ ▄▀ ▐ ▄▀ ▀▄ █ █   ▐             
//            ▐  █▀▀█▀    █▄▄▄▄▄  ▐  █▀▀▀▀  ▐   █     ▐   █  ▐  ▐  █▀▄    █▄▄▄█    ▀▄               
//             ▄▀    █    █    ▌     █         █          █       █   █  ▄▀   █ ▀▄   █              
//            █     █    ▄▀▄▄▄▄    ▄▀        ▄▀        ▄▀▀▀▀▀▄  ▄▀   █  █   ▄▀   █▀▀▀               
//            ▐     ▐    █    ▐   █         █         █       █ █    ▐  ▐   ▐    ▐                  
//                       ▐        ▐         ▐         ▐       ▐ ▐                                   
// ▄▀▄▄▄▄   ▄▀▀▀▀▄   ▄▀▀▀▀▄    ▄▀▀▀▀▄     ▄▀▀█▄▄▄▄  ▄▀▄▄▄▄   ▄▀▀▀█▀▀▄  ▄▀▀█▀▄   ▄▀▀▄ ▄▀▀▄  ▄▀▀█▄▄▄▄ 
//█ █    ▌ █      █ █    █    █    █     ▐  ▄▀   ▐ █ █    ▌ █    █  ▐ █   █  █ █   █    █ ▐  ▄▀   ▐ 
//▐ █      █      █ ▐    █    ▐    █       █▄▄▄▄▄  ▐ █      ▐   █     ▐   █  ▐ ▐  █    █    █▄▄▄▄▄  
//  █      ▀▄    ▄▀     █         █        █    ▌    █         █          █       █   ▄▀    █    ▌  
// ▄▀▄▄▄▄▀   ▀▀▀▀     ▄▀▄▄▄▄▄▄▀ ▄▀▄▄▄▄▄▄▀ ▄▀▄▄▄▄    ▄▀▄▄▄▄▀  ▄▀        ▄▀▀▀▀▀▄     ▀▄▀     ▄▀▄▄▄▄   
//█     ▐             █         █         █    ▐   █     ▐  █         █       █            █    ▐   
//▐                   ▐         ▐         ▐        ▐        ▐         ▐       ▐            ▐    

pragma solidity ^0.8.0;








contract Reptikas_Collective is ERC721, Ownable, ReentrancyGuard{
  using Counters for Counters.Counter;
  using Strings for uint256;

  Counters.Counter private supply;
  string public uriPrefix = "";
  string public uriSuffix = ".json";

  bool public saleIsActive;
  bool public presaleIsActive;

    uint256 public constant WHITELIST_SALE_PRICE = 0.02 ether;
    uint256 public constant PUBLIC_SALE_PRICE = 0.03 ether;
    uint256 public maxSupplyPlusOne = 6667;

    // used to validate whitelists
    bytes32 public giftMerkleRoot;
    bytes32 public whitelistMerkleRoot;

    // keep track of those on whitelist who have claimed their NFT
    mapping(address => bool) public claimed;
    mapping(address => bool) public giftclaimed;

    constructor() ERC721("Reptikas Collective", "RPTKA") {
    _mintLoop(msg.sender, 35);
    saleIsActive = false;
    presaleIsActive = false;
    }


    modifier isValidMerkleProof(bytes32[] calldata merkleProof, bytes32 root) {
        require(
            MerkleProof.verify(
                merkleProof,
                root,
                keccak256(abi.encodePacked(msg.sender))
            ),
            "Address does not exist in list"
        );
        _;
    }

    modifier isCorrectPayment(uint256 price, uint256 numberOfTokens) {
        require(
            price * numberOfTokens == msg.value,
            "Incorrect ETH value sent"
        );
        _;
    }

    modifier canMint(uint256 numberOfTokens) {
        require(supply.current() + 1 < maxSupplyPlusOne, "Max supply exceeded!");
        _;
    }

    function mintGift(
        bytes32[] calldata merkleProof
    )
        public
        isValidMerkleProof(merkleProof, giftMerkleRoot)
        nonReentrant
    {
      require(!giftclaimed[msg.sender], "NFT is already claimed by this wallet");
      require(presaleIsActive == true, "Pre-sale is not active");
    _mintLoop(msg.sender, 1);
    giftclaimed[msg.sender] = true;
    }

    function mintWhitelist(
      bytes32[] calldata merkleProof
    )
        public
        payable
        isValidMerkleProof(merkleProof, whitelistMerkleRoot)
        isCorrectPayment(WHITELIST_SALE_PRICE, 1)
        nonReentrant
    {
        require(!claimed[msg.sender], "NFT is already claimed by this wallet");
        require(presaleIsActive == true, "Pre-sale is not active");
        _mintLoop(msg.sender, 1);
        claimed[msg.sender] = true;
    }

    function publicMint(
      uint256 numberOfTokens
    )
        public
        payable
        isCorrectPayment(PUBLIC_SALE_PRICE, numberOfTokens)
        canMint(numberOfTokens)
        nonReentrant
    {
        require(saleIsActive == true, "Sale is not active");
        for (uint256 i = 0; i < numberOfTokens; i++) {
        _mintLoop(msg.sender, numberOfTokens);
        }
    }

  function setSale(bool newState) public onlyOwner {
    saleIsActive = newState;
  }

  function setPreSale(bool newState) public onlyOwner {
    presaleIsActive = newState;
  }

  function totalSupply() public view returns (uint256) {
    return supply.current();
  }
  
  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

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

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

   function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

    function setGiftMerkleRoot(bytes32 merkleRoot) external onlyOwner {
        giftMerkleRoot = merkleRoot;
    }

    function setWhitelistMerkleRoot(bytes32 merkleRoot) external onlyOwner {
        whitelistMerkleRoot = merkleRoot;
    }

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }

  function withdraw() public onlyOwner {
 //pays treasury 75%
    (bool hs, ) = payable(0xd5A44EF877A5ff62f234aC016456B51e7C2bFf54).call{value: address(this).balance * 75 / 100}("");
    require(hs);
//pays owner 25%
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"giftMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"giftclaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"maxSupplyPlusOne","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintGift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setGiftMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b9160099162000536565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600a9162000536565b50611a0b600c553480156200005e57600080fd5b50604080518082018252601381527f52657074696b617320436f6c6c656374697665000000000000000000000000006020808301918252835180850190945260058452645250544b4160d81b908401528151919291620000c19160009162000536565b508051620000d790600190602084019062000536565b505050620000f4620000ee6200011760201b60201c565b6200011b565b6001600755620001063360236200016d565b600b805461ffff1916905562000716565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b81811015620001c757620001906008620001cc60201b620014d31760201c565b620001b283620001ac6008620001d560201b620014dc1760201c565b620001d9565b80620001be81620006e2565b91505062000170565b505050565b80546001019055565b5490565b620001fb828260405180602001604052806000815250620001ff60201b60201c565b5050565b6200020b838362000276565b6200021a6000848484620003be565b620001c75760405162461bcd60e51b8152602060048201526032602482015260008051602062002ccb83398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084015b60405180910390fd5b6001600160a01b038216620002ce5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016200026d565b6000818152600260205260409020546001600160a01b031615620003355760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016200026d565b6001600160a01b0382166000908152600360205260408120805460019290620003609084906200068a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000620003df846001600160a01b03166200052760201b620014e01760201c565b156200051b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290620004199033908990889088906004016200060f565b602060405180830381600087803b1580156200043457600080fd5b505af192505050801562000467575060408051601f3d908101601f191682019092526200046491810190620005dc565b60015b62000500573d80801562000498576040519150601f19603f3d011682016040523d82523d6000602084013e6200049d565b606091505b508051620004f85760405162461bcd60e51b8152602060048201526032602482015260008051602062002ccb83398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016200026d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506200051f565b5060015b949350505050565b6001600160a01b03163b151590565b8280546200054490620006a5565b90600052602060002090601f016020900481019282620005685760008555620005b3565b82601f106200058357805160ff1916838001178555620005b3565b82800160010185558215620005b3579182015b82811115620005b357825182559160200191906001019062000596565b50620005c1929150620005c5565b5090565b5b80821115620005c15760008155600101620005c6565b600060208284031215620005ef57600080fd5b81516001600160e01b0319811681146200060857600080fd5b9392505050565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b828110156200065e5785810182015185820160a00152810162000640565b828111156200067157600060a084870101525b5050601f01601f19169190910160a00195945050505050565b60008219821115620006a057620006a062000700565b500190565b600181811c90821680620006ba57607f821691505b60208210811415620006dc57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415620006f957620006f962000700565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6125a580620007266000396000f3fe6080604052600436106102255760003560e01c806370a0823111610123578063b77807eb116100ab578063c884ef831161006f578063c884ef831461061c578063d4d20d591461064c578063e985e9c514610662578063eb8d2444146106ab578063f2fde38b146106c557600080fd5b8063b77807eb14610571578063b88d4fde146105a1578063bc912e1a146105c1578063bd32fb66146105dc578063c87b56dd146105fc57600080fd5b80638da5cb5b116100f25780638da5cb5b146104f257806395d89b4114610510578063a19829c014610525578063a22cb4651461053b578063aa98e0c61461055b57600080fd5b806370a082311461047d578063715018a61461049d5780637ec4a659146104b2578063811dab35146104d257600080fd5b806323b872dd116101b157806342842e0e1161017557806342842e0e1461040057806344d84381146104205780635503a0e81461043357806362b99ad4146104485780636352211e1461045d57600080fd5b806323b872dd146103795780632db115441461039957806330f72cd4146103ac5780633ba46d46146103cb5780633ccfd60b146103eb57600080fd5b8063095ea7b3116101f8578063095ea7b3146102e25780630d95ccc91461030457806316ba10e01461032457806318160ddd146103445780631d2e5a3a1461035957600080fd5b806301ffc9a71461022a57806306fdde031461025f57806307e89ec014610281578063081812fc146102aa575b600080fd5b34801561023657600080fd5b5061024a6102453660046120f2565b6106e5565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b50610274610737565b60405161025691906122a2565b34801561028d57600080fd5b5061029c666a94d74f43000081565b604051908152602001610256565b3480156102b657600080fd5b506102ca6102c53660046120d9565b6107c9565b6040516001600160a01b039091168152602001610256565b3480156102ee57600080fd5b506103026102fd36600461201f565b610863565b005b34801561031057600080fd5b5061030261031f3660046120be565b610979565b34801561033057600080fd5b5061030261033f36600461212c565b6109bd565b34801561035057600080fd5b5061029c6109fe565b34801561036557600080fd5b506103026103743660046120be565b610a0e565b34801561038557600080fd5b50610302610394366004611f3d565b610a4b565b6103026103a73660046120d9565b610a7c565b3480156103b857600080fd5b50600b5461024a90610100900460ff1681565b3480156103d757600080fd5b506103026103e63660046120d9565b610bdb565b3480156103f757600080fd5b50610302610c0a565b34801561040c57600080fd5b5061030261041b366004611f3d565b610d22565b61030261042e366004612049565b610d3d565b34801561043f57600080fd5b50610274610f40565b34801561045457600080fd5b50610274610fce565b34801561046957600080fd5b506102ca6104783660046120d9565b610fdb565b34801561048957600080fd5b5061029c610498366004611eef565b611052565b3480156104a957600080fd5b506103026110d9565b3480156104be57600080fd5b506103026104cd36600461212c565b61110f565b3480156104de57600080fd5b506103026104ed366004612049565b61114c565b3480156104fe57600080fd5b506006546001600160a01b03166102ca565b34801561051c57600080fd5b506102746112d9565b34801561053157600080fd5b5061029c600d5481565b34801561054757600080fd5b50610302610556366004611ff5565b6112e8565b34801561056757600080fd5b5061029c600e5481565b34801561057d57600080fd5b5061024a61058c366004611eef565b60106020526000908152604090205460ff1681565b3480156105ad57600080fd5b506103026105bc366004611f79565b6112f3565b3480156105cd57600080fd5b5061029c66470de4df82000081565b3480156105e857600080fd5b506103026105f73660046120d9565b61132b565b34801561060857600080fd5b506102746106173660046120d9565b61135a565b34801561062857600080fd5b5061024a610637366004611eef565b600f6020526000908152604090205460ff1681565b34801561065857600080fd5b5061029c600c5481565b34801561066e57600080fd5b5061024a61067d366004611f0a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106b757600080fd5b50600b5461024a9060ff1681565b3480156106d157600080fd5b506103026106e0366004611eef565b611438565b60006001600160e01b031982166380ac58cd60e01b148061071657506001600160e01b03198216635b5e139f60e01b145b8061073157506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461074690612497565b80601f016020809104026020016040519081016040528092919081815260200182805461077290612497565b80156107bf5780601f10610794576101008083540402835291602001916107bf565b820191906000526020600020905b8154815290600101906020018083116107a257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108475760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061086e82610fdb565b9050806001600160a01b0316836001600160a01b031614156108dc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161083e565b336001600160a01b03821614806108f857506108f8813361067d565b61096a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161083e565b61097483836114ef565b505050565b6006546001600160a01b031633146109a35760405162461bcd60e51b815260040161083e9061234c565b600b80549115156101000261ff0019909216919091179055565b6006546001600160a01b031633146109e75760405162461bcd60e51b815260040161083e9061234c565b80516109fa90600a906020840190611db4565b5050565b6000610a0960085490565b905090565b6006546001600160a01b03163314610a385760405162461bcd60e51b815260040161083e9061234c565b600b805460ff1916911515919091179055565b610a55338261155d565b610a715760405162461bcd60e51b815260040161083e90612381565b610974838383611654565b666a94d74f4300008134610a908284612435565b14610ad85760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b604482015260640161083e565b82600c54610ae560085490565b610af0906001612409565b10610b345760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161083e565b60026007541415610b575760405162461bcd60e51b815260040161083e906123d2565b6002600755600b5460ff161515600114610ba85760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b604482015260640161083e565b60005b84811015610bcf57610bbd33866117f0565b80610bc7816124d2565b915050610bab565b50506001600755505050565b6006546001600160a01b03163314610c055760405162461bcd60e51b815260040161083e9061234c565b600d55565b6006546001600160a01b03163314610c345760405162461bcd60e51b815260040161083e9061234c565b600073d5a44ef877a5ff62f234ac016456b51e7c2bff546064610c5847604b612435565b610c629190612421565b604051600081818185875af1925050503d8060008114610c9e576040519150601f19603f3d011682016040523d82523d6000602084013e610ca3565b606091505b5050905080610cb157600080fd5b6000610cc56006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d0f576040519150601f19603f3d011682016040523d82523d6000602084013e610d14565b606091505b50509050806109fa57600080fd5b610974838383604051806020016040528060008152506112f3565b8181600e54610db5838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b16602082015285925060340190505b6040516020818303038152906040528051906020012061182d565b610e015760405162461bcd60e51b815260206004820152601e60248201527f4164647265737320646f6573206e6f7420657869737420696e206c6973740000604482015260640161083e565b66470de4df820000600134610e168284612435565b14610e5e5760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b604482015260640161083e565b60026007541415610e815760405162461bcd60e51b815260040161083e906123d2565b6002600755336000908152600f602052604090205460ff1615610eb65760405162461bcd60e51b815260040161083e90612307565b600b5460ff610100909104161515600114610f0c5760405162461bcd60e51b81526020600482015260166024820152755072652d73616c65206973206e6f742061637469766560501b604482015260640161083e565b610f173360016117f0565b5050336000908152600f60205260409020805460ff191660019081179091556007555050505050565b600a8054610f4d90612497565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7990612497565b8015610fc65780601f10610f9b57610100808354040283529160200191610fc6565b820191906000526020600020905b815481529060010190602001808311610fa957829003601f168201915b505050505081565b60098054610f4d90612497565b6000818152600260205260408120546001600160a01b0316806107315760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161083e565b60006001600160a01b0382166110bd5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161083e565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146111035760405162461bcd60e51b815260040161083e9061234c565b61110d6000611843565b565b6006546001600160a01b031633146111395760405162461bcd60e51b815260040161083e9061234c565b80516109fa906009906020840190611db4565b8181600d546111ad838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b1660208201528592506034019050610d9a565b6111f95760405162461bcd60e51b815260206004820152601e60248201527f4164647265737320646f6573206e6f7420657869737420696e206c6973740000604482015260640161083e565b6002600754141561121c5760405162461bcd60e51b815260040161083e906123d2565b60026007553360009081526010602052604090205460ff16156112515760405162461bcd60e51b815260040161083e90612307565b600b5460ff6101009091041615156001146112a75760405162461bcd60e51b81526020600482015260166024820152755072652d73616c65206973206e6f742061637469766560501b604482015260640161083e565b6112b23360016117f0565b5050336000908152601060205260409020805460ff19166001908117909155600755505050565b60606001805461074690612497565b6109fa338383611895565b6112fd338361155d565b6113195760405162461bcd60e51b815260040161083e90612381565b61132584848484611964565b50505050565b6006546001600160a01b031633146113555760405162461bcd60e51b815260040161083e9061234c565b600e55565b6000818152600260205260409020546060906001600160a01b03166113d95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161083e565b60006113e3611997565b905060008151116114035760405180602001604052806000815250611431565b8061140d846119a6565b600a604051602001611421939291906121a1565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146114625760405162461bcd60e51b815260040161083e9061234c565b6001600160a01b0381166114c75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161083e565b6114d081611843565b50565b80546001019055565b5490565b6001600160a01b03163b151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061152482610fdb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115d65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161083e565b60006115e183610fdb565b9050806001600160a01b0316846001600160a01b0316148061161c5750836001600160a01b0316611611846107c9565b6001600160a01b0316145b8061164c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661166782610fdb565b6001600160a01b0316146116cb5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161083e565b6001600160a01b03821661172d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161083e565b6117386000826114ef565b6001600160a01b0383166000908152600360205260408120805460019290611761908490612454565b90915550506001600160a01b038216600090815260036020526040812080546001929061178f908490612409565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60005b8181101561097457611809600880546001019055565b61181b8361181660085490565b611aa4565b80611825816124d2565b9150506117f3565b60008261183a8584611abe565b14949350505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156118f75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161083e565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61196f848484611654565b61197b84848484611b32565b6113255760405162461bcd60e51b815260040161083e906122b5565b60606009805461074690612497565b6060816119ca5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119f457806119de816124d2565b91506119ed9050600a83612421565b91506119ce565b60008167ffffffffffffffff811115611a0f57611a0f612543565b6040519080825280601f01601f191660200182016040528015611a39576020820181803683370190505b5090505b841561164c57611a4e600183612454565b9150611a5b600a866124ed565b611a66906030612409565b60f81b818381518110611a7b57611a7b61252d565b60200101906001600160f81b031916908160001a905350611a9d600a86612421565b9450611a3d565b6109fa828260405180602001604052806000815250611c3f565b600081815b8451811015611b2a576000858281518110611ae057611ae061252d565b60200260200101519050808311611b065760008381526020829052604090209250611b17565b600081815260208490526040902092505b5080611b22816124d2565b915050611ac3565b509392505050565b60006001600160a01b0384163b15611c3457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b76903390899088908890600401612265565b602060405180830381600087803b158015611b9057600080fd5b505af1925050508015611bc0575060408051601f3d908101601f19168201909252611bbd9181019061210f565b60015b611c1a573d808015611bee576040519150601f19603f3d011682016040523d82523d6000602084013e611bf3565b606091505b508051611c125760405162461bcd60e51b815260040161083e906122b5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061164c565b506001949350505050565b611c498383611c72565b611c566000848484611b32565b6109745760405162461bcd60e51b815260040161083e906122b5565b6001600160a01b038216611cc85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161083e565b6000818152600260205260409020546001600160a01b031615611d2d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161083e565b6001600160a01b0382166000908152600360205260408120805460019290611d56908490612409565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611dc090612497565b90600052602060002090601f016020900481019282611de25760008555611e28565b82601f10611dfb57805160ff1916838001178555611e28565b82800160010185558215611e28579182015b82811115611e28578251825591602001919060010190611e0d565b50611e34929150611e38565b5090565b5b80821115611e345760008155600101611e39565b600067ffffffffffffffff80841115611e6857611e68612543565b604051601f8501601f19908116603f01168101908282118183101715611e9057611e90612543565b81604052809350858152868686011115611ea957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611eda57600080fd5b919050565b80358015158114611eda57600080fd5b600060208284031215611f0157600080fd5b61143182611ec3565b60008060408385031215611f1d57600080fd5b611f2683611ec3565b9150611f3460208401611ec3565b90509250929050565b600080600060608486031215611f5257600080fd5b611f5b84611ec3565b9250611f6960208501611ec3565b9150604084013590509250925092565b60008060008060808587031215611f8f57600080fd5b611f9885611ec3565b9350611fa660208601611ec3565b925060408501359150606085013567ffffffffffffffff811115611fc957600080fd5b8501601f81018713611fda57600080fd5b611fe987823560208401611e4d565b91505092959194509250565b6000806040838503121561200857600080fd5b61201183611ec3565b9150611f3460208401611edf565b6000806040838503121561203257600080fd5b61203b83611ec3565b946020939093013593505050565b6000806020838503121561205c57600080fd5b823567ffffffffffffffff8082111561207457600080fd5b818501915085601f83011261208857600080fd5b81358181111561209757600080fd5b8660208260051b85010111156120ac57600080fd5b60209290920196919550909350505050565b6000602082840312156120d057600080fd5b61143182611edf565b6000602082840312156120eb57600080fd5b5035919050565b60006020828403121561210457600080fd5b813561143181612559565b60006020828403121561212157600080fd5b815161143181612559565b60006020828403121561213e57600080fd5b813567ffffffffffffffff81111561215557600080fd5b8201601f8101841361216657600080fd5b61164c84823560208401611e4d565b6000815180845261218d81602086016020860161246b565b601f01601f19169290920160200192915050565b6000845160206121b48285838a0161246b565b8551918401916121c78184848a0161246b565b8554920191600090600181811c90808316806121e457607f831692505b85831081141561220257634e487b7160e01b85526022600452602485fd5b808015612216576001811461222757612254565b60ff19851688528388019550612254565b60008b81526020902060005b8581101561224c5781548a820152908401908801612233565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061229890830184612175565b9695505050505050565b6020815260006114316020830184612175565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526025908201527f4e465420697320616c726561647920636c61696d656420627920746869732077604082015264185b1b195d60da1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6000821982111561241c5761241c612501565b500190565b60008261243057612430612517565b500490565b600081600019048311821515161561244f5761244f612501565b500290565b60008282101561246657612466612501565b500390565b60005b8381101561248657818101518382015260200161246e565b838111156113255750506000910152565b600181811c908216806124ab57607f821691505b602082108114156124cc57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124e6576124e6612501565b5060010190565b6000826124fc576124fc612517565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146114d057600080fdfea264697066735822122082b21eecfd8cd84537904b88b9d32412a4bab4ce1aaea443ea0db959a451431564736f6c634300080700334552433732313a207472616e7366657220746f206e6f6e204552433732315265

Deployed Bytecode

0x6080604052600436106102255760003560e01c806370a0823111610123578063b77807eb116100ab578063c884ef831161006f578063c884ef831461061c578063d4d20d591461064c578063e985e9c514610662578063eb8d2444146106ab578063f2fde38b146106c557600080fd5b8063b77807eb14610571578063b88d4fde146105a1578063bc912e1a146105c1578063bd32fb66146105dc578063c87b56dd146105fc57600080fd5b80638da5cb5b116100f25780638da5cb5b146104f257806395d89b4114610510578063a19829c014610525578063a22cb4651461053b578063aa98e0c61461055b57600080fd5b806370a082311461047d578063715018a61461049d5780637ec4a659146104b2578063811dab35146104d257600080fd5b806323b872dd116101b157806342842e0e1161017557806342842e0e1461040057806344d84381146104205780635503a0e81461043357806362b99ad4146104485780636352211e1461045d57600080fd5b806323b872dd146103795780632db115441461039957806330f72cd4146103ac5780633ba46d46146103cb5780633ccfd60b146103eb57600080fd5b8063095ea7b3116101f8578063095ea7b3146102e25780630d95ccc91461030457806316ba10e01461032457806318160ddd146103445780631d2e5a3a1461035957600080fd5b806301ffc9a71461022a57806306fdde031461025f57806307e89ec014610281578063081812fc146102aa575b600080fd5b34801561023657600080fd5b5061024a6102453660046120f2565b6106e5565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b50610274610737565b60405161025691906122a2565b34801561028d57600080fd5b5061029c666a94d74f43000081565b604051908152602001610256565b3480156102b657600080fd5b506102ca6102c53660046120d9565b6107c9565b6040516001600160a01b039091168152602001610256565b3480156102ee57600080fd5b506103026102fd36600461201f565b610863565b005b34801561031057600080fd5b5061030261031f3660046120be565b610979565b34801561033057600080fd5b5061030261033f36600461212c565b6109bd565b34801561035057600080fd5b5061029c6109fe565b34801561036557600080fd5b506103026103743660046120be565b610a0e565b34801561038557600080fd5b50610302610394366004611f3d565b610a4b565b6103026103a73660046120d9565b610a7c565b3480156103b857600080fd5b50600b5461024a90610100900460ff1681565b3480156103d757600080fd5b506103026103e63660046120d9565b610bdb565b3480156103f757600080fd5b50610302610c0a565b34801561040c57600080fd5b5061030261041b366004611f3d565b610d22565b61030261042e366004612049565b610d3d565b34801561043f57600080fd5b50610274610f40565b34801561045457600080fd5b50610274610fce565b34801561046957600080fd5b506102ca6104783660046120d9565b610fdb565b34801561048957600080fd5b5061029c610498366004611eef565b611052565b3480156104a957600080fd5b506103026110d9565b3480156104be57600080fd5b506103026104cd36600461212c565b61110f565b3480156104de57600080fd5b506103026104ed366004612049565b61114c565b3480156104fe57600080fd5b506006546001600160a01b03166102ca565b34801561051c57600080fd5b506102746112d9565b34801561053157600080fd5b5061029c600d5481565b34801561054757600080fd5b50610302610556366004611ff5565b6112e8565b34801561056757600080fd5b5061029c600e5481565b34801561057d57600080fd5b5061024a61058c366004611eef565b60106020526000908152604090205460ff1681565b3480156105ad57600080fd5b506103026105bc366004611f79565b6112f3565b3480156105cd57600080fd5b5061029c66470de4df82000081565b3480156105e857600080fd5b506103026105f73660046120d9565b61132b565b34801561060857600080fd5b506102746106173660046120d9565b61135a565b34801561062857600080fd5b5061024a610637366004611eef565b600f6020526000908152604090205460ff1681565b34801561065857600080fd5b5061029c600c5481565b34801561066e57600080fd5b5061024a61067d366004611f0a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106b757600080fd5b50600b5461024a9060ff1681565b3480156106d157600080fd5b506103026106e0366004611eef565b611438565b60006001600160e01b031982166380ac58cd60e01b148061071657506001600160e01b03198216635b5e139f60e01b145b8061073157506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461074690612497565b80601f016020809104026020016040519081016040528092919081815260200182805461077290612497565b80156107bf5780601f10610794576101008083540402835291602001916107bf565b820191906000526020600020905b8154815290600101906020018083116107a257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108475760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061086e82610fdb565b9050806001600160a01b0316836001600160a01b031614156108dc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161083e565b336001600160a01b03821614806108f857506108f8813361067d565b61096a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161083e565b61097483836114ef565b505050565b6006546001600160a01b031633146109a35760405162461bcd60e51b815260040161083e9061234c565b600b80549115156101000261ff0019909216919091179055565b6006546001600160a01b031633146109e75760405162461bcd60e51b815260040161083e9061234c565b80516109fa90600a906020840190611db4565b5050565b6000610a0960085490565b905090565b6006546001600160a01b03163314610a385760405162461bcd60e51b815260040161083e9061234c565b600b805460ff1916911515919091179055565b610a55338261155d565b610a715760405162461bcd60e51b815260040161083e90612381565b610974838383611654565b666a94d74f4300008134610a908284612435565b14610ad85760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b604482015260640161083e565b82600c54610ae560085490565b610af0906001612409565b10610b345760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161083e565b60026007541415610b575760405162461bcd60e51b815260040161083e906123d2565b6002600755600b5460ff161515600114610ba85760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b604482015260640161083e565b60005b84811015610bcf57610bbd33866117f0565b80610bc7816124d2565b915050610bab565b50506001600755505050565b6006546001600160a01b03163314610c055760405162461bcd60e51b815260040161083e9061234c565b600d55565b6006546001600160a01b03163314610c345760405162461bcd60e51b815260040161083e9061234c565b600073d5a44ef877a5ff62f234ac016456b51e7c2bff546064610c5847604b612435565b610c629190612421565b604051600081818185875af1925050503d8060008114610c9e576040519150601f19603f3d011682016040523d82523d6000602084013e610ca3565b606091505b5050905080610cb157600080fd5b6000610cc56006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d0f576040519150601f19603f3d011682016040523d82523d6000602084013e610d14565b606091505b50509050806109fa57600080fd5b610974838383604051806020016040528060008152506112f3565b8181600e54610db5838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b16602082015285925060340190505b6040516020818303038152906040528051906020012061182d565b610e015760405162461bcd60e51b815260206004820152601e60248201527f4164647265737320646f6573206e6f7420657869737420696e206c6973740000604482015260640161083e565b66470de4df820000600134610e168284612435565b14610e5e5760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b604482015260640161083e565b60026007541415610e815760405162461bcd60e51b815260040161083e906123d2565b6002600755336000908152600f602052604090205460ff1615610eb65760405162461bcd60e51b815260040161083e90612307565b600b5460ff610100909104161515600114610f0c5760405162461bcd60e51b81526020600482015260166024820152755072652d73616c65206973206e6f742061637469766560501b604482015260640161083e565b610f173360016117f0565b5050336000908152600f60205260409020805460ff191660019081179091556007555050505050565b600a8054610f4d90612497565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7990612497565b8015610fc65780601f10610f9b57610100808354040283529160200191610fc6565b820191906000526020600020905b815481529060010190602001808311610fa957829003601f168201915b505050505081565b60098054610f4d90612497565b6000818152600260205260408120546001600160a01b0316806107315760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161083e565b60006001600160a01b0382166110bd5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161083e565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146111035760405162461bcd60e51b815260040161083e9061234c565b61110d6000611843565b565b6006546001600160a01b031633146111395760405162461bcd60e51b815260040161083e9061234c565b80516109fa906009906020840190611db4565b8181600d546111ad838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b1660208201528592506034019050610d9a565b6111f95760405162461bcd60e51b815260206004820152601e60248201527f4164647265737320646f6573206e6f7420657869737420696e206c6973740000604482015260640161083e565b6002600754141561121c5760405162461bcd60e51b815260040161083e906123d2565b60026007553360009081526010602052604090205460ff16156112515760405162461bcd60e51b815260040161083e90612307565b600b5460ff6101009091041615156001146112a75760405162461bcd60e51b81526020600482015260166024820152755072652d73616c65206973206e6f742061637469766560501b604482015260640161083e565b6112b23360016117f0565b5050336000908152601060205260409020805460ff19166001908117909155600755505050565b60606001805461074690612497565b6109fa338383611895565b6112fd338361155d565b6113195760405162461bcd60e51b815260040161083e90612381565b61132584848484611964565b50505050565b6006546001600160a01b031633146113555760405162461bcd60e51b815260040161083e9061234c565b600e55565b6000818152600260205260409020546060906001600160a01b03166113d95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161083e565b60006113e3611997565b905060008151116114035760405180602001604052806000815250611431565b8061140d846119a6565b600a604051602001611421939291906121a1565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146114625760405162461bcd60e51b815260040161083e9061234c565b6001600160a01b0381166114c75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161083e565b6114d081611843565b50565b80546001019055565b5490565b6001600160a01b03163b151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061152482610fdb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115d65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161083e565b60006115e183610fdb565b9050806001600160a01b0316846001600160a01b0316148061161c5750836001600160a01b0316611611846107c9565b6001600160a01b0316145b8061164c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661166782610fdb565b6001600160a01b0316146116cb5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161083e565b6001600160a01b03821661172d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161083e565b6117386000826114ef565b6001600160a01b0383166000908152600360205260408120805460019290611761908490612454565b90915550506001600160a01b038216600090815260036020526040812080546001929061178f908490612409565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60005b8181101561097457611809600880546001019055565b61181b8361181660085490565b611aa4565b80611825816124d2565b9150506117f3565b60008261183a8584611abe565b14949350505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156118f75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161083e565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61196f848484611654565b61197b84848484611b32565b6113255760405162461bcd60e51b815260040161083e906122b5565b60606009805461074690612497565b6060816119ca5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119f457806119de816124d2565b91506119ed9050600a83612421565b91506119ce565b60008167ffffffffffffffff811115611a0f57611a0f612543565b6040519080825280601f01601f191660200182016040528015611a39576020820181803683370190505b5090505b841561164c57611a4e600183612454565b9150611a5b600a866124ed565b611a66906030612409565b60f81b818381518110611a7b57611a7b61252d565b60200101906001600160f81b031916908160001a905350611a9d600a86612421565b9450611a3d565b6109fa828260405180602001604052806000815250611c3f565b600081815b8451811015611b2a576000858281518110611ae057611ae061252d565b60200260200101519050808311611b065760008381526020829052604090209250611b17565b600081815260208490526040902092505b5080611b22816124d2565b915050611ac3565b509392505050565b60006001600160a01b0384163b15611c3457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b76903390899088908890600401612265565b602060405180830381600087803b158015611b9057600080fd5b505af1925050508015611bc0575060408051601f3d908101601f19168201909252611bbd9181019061210f565b60015b611c1a573d808015611bee576040519150601f19603f3d011682016040523d82523d6000602084013e611bf3565b606091505b508051611c125760405162461bcd60e51b815260040161083e906122b5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061164c565b506001949350505050565b611c498383611c72565b611c566000848484611b32565b6109745760405162461bcd60e51b815260040161083e906122b5565b6001600160a01b038216611cc85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161083e565b6000818152600260205260409020546001600160a01b031615611d2d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161083e565b6001600160a01b0382166000908152600360205260408120805460019290611d56908490612409565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611dc090612497565b90600052602060002090601f016020900481019282611de25760008555611e28565b82601f10611dfb57805160ff1916838001178555611e28565b82800160010185558215611e28579182015b82811115611e28578251825591602001919060010190611e0d565b50611e34929150611e38565b5090565b5b80821115611e345760008155600101611e39565b600067ffffffffffffffff80841115611e6857611e68612543565b604051601f8501601f19908116603f01168101908282118183101715611e9057611e90612543565b81604052809350858152868686011115611ea957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611eda57600080fd5b919050565b80358015158114611eda57600080fd5b600060208284031215611f0157600080fd5b61143182611ec3565b60008060408385031215611f1d57600080fd5b611f2683611ec3565b9150611f3460208401611ec3565b90509250929050565b600080600060608486031215611f5257600080fd5b611f5b84611ec3565b9250611f6960208501611ec3565b9150604084013590509250925092565b60008060008060808587031215611f8f57600080fd5b611f9885611ec3565b9350611fa660208601611ec3565b925060408501359150606085013567ffffffffffffffff811115611fc957600080fd5b8501601f81018713611fda57600080fd5b611fe987823560208401611e4d565b91505092959194509250565b6000806040838503121561200857600080fd5b61201183611ec3565b9150611f3460208401611edf565b6000806040838503121561203257600080fd5b61203b83611ec3565b946020939093013593505050565b6000806020838503121561205c57600080fd5b823567ffffffffffffffff8082111561207457600080fd5b818501915085601f83011261208857600080fd5b81358181111561209757600080fd5b8660208260051b85010111156120ac57600080fd5b60209290920196919550909350505050565b6000602082840312156120d057600080fd5b61143182611edf565b6000602082840312156120eb57600080fd5b5035919050565b60006020828403121561210457600080fd5b813561143181612559565b60006020828403121561212157600080fd5b815161143181612559565b60006020828403121561213e57600080fd5b813567ffffffffffffffff81111561215557600080fd5b8201601f8101841361216657600080fd5b61164c84823560208401611e4d565b6000815180845261218d81602086016020860161246b565b601f01601f19169290920160200192915050565b6000845160206121b48285838a0161246b565b8551918401916121c78184848a0161246b565b8554920191600090600181811c90808316806121e457607f831692505b85831081141561220257634e487b7160e01b85526022600452602485fd5b808015612216576001811461222757612254565b60ff19851688528388019550612254565b60008b81526020902060005b8581101561224c5781548a820152908401908801612233565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061229890830184612175565b9695505050505050565b6020815260006114316020830184612175565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526025908201527f4e465420697320616c726561647920636c61696d656420627920746869732077604082015264185b1b195d60da1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6000821982111561241c5761241c612501565b500190565b60008261243057612430612517565b500490565b600081600019048311821515161561244f5761244f612501565b500290565b60008282101561246657612466612501565b500390565b60005b8381101561248657818101518382015260200161246e565b838111156113255750506000910152565b600181811c908216806124ab57607f821691505b602082108114156124cc57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124e6576124e6612501565b5060010190565b6000826124fc576124fc612517565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146114d057600080fdfea264697066735822122082b21eecfd8cd84537904b88b9d32412a4bab4ce1aaea443ea0db959a451431564736f6c63430008070033

Deployed Bytecode Sourcemap

46205:4729:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30722:305;;;;;;;;;;-1:-1:-1;30722:305:0;;;;;:::i;:::-;;:::i;:::-;;;8209:14:1;;8202:22;8184:41;;8172:2;8157:18;30722:305:0;;;;;;;;31667:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;46584:54::-;;;;;;;;;;;;46628:10;46584:54;;;;;8382:25:1;;;8370:2;8355:18;46584:54:0;8236:177:1;33226:221:0;;;;;;;;;;-1:-1:-1;33226:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7507:32:1;;;7489:51;;7477:2;7462:18;33226:221:0;7343:203:1;32749:411:0;;;;;;;;;;-1:-1:-1;32749:411:0;;;;;:::i;:::-;;:::i;:::-;;49209:91;;;;;;;;;;-1:-1:-1;49209:91:0;;;;;:::i;:::-;;:::i;50048:100::-;;;;;;;;;;-1:-1:-1;50048:100:0;;;;;:::i;:::-;;:::i;49306:89::-;;;;;;;;;;;;;:::i;49118:85::-;;;;;;;;;;-1:-1:-1;49118:85:0;;;;;:::i;:::-;;:::i;33976:339::-;;;;;;;;;;-1:-1:-1;33976:339:0;;;;;:::i;:::-;;:::i;48715:397::-;;;;;;:::i;:::-;;:::i;46484:27::-;;;;;;;;;;-1:-1:-1;46484:27:0;;;;;;;;;;;50156:112;;;;;;;;;;-1:-1:-1;50156:112:0;;;;;:::i;:::-;;:::i;50614:317::-;;;;;;;;;;;;;:::i;34386:185::-;;;;;;;;;;-1:-1:-1;34386:185:0;;;;;:::i;:::-;;:::i;48235:472::-;;;;;;:::i;:::-;;:::i;46415:33::-;;;;;;;;;;;;;:::i;46382:28::-;;;;;;;;;;;;;:::i;31361:239::-;;;;;;;;;;-1:-1:-1;31361:239:0;;;;;:::i;:::-;;:::i;31091:208::-;;;;;;;;;;-1:-1:-1;31091:208:0;;;;;:::i;:::-;;:::i;9219:103::-;;;;;;;;;;;;;:::i;49942:100::-;;;;;;;;;;-1:-1:-1;49942:100:0;;;;;:::i;:::-;;:::i;47835:392::-;;;;;;;;;;-1:-1:-1;47835:392:0;;;;;:::i;:::-;;:::i;8568:87::-;;;;;;;;;;-1:-1:-1;8641:6:0;;-1:-1:-1;;;;;8641:6:0;8568:87;;31836:104;;;;;;;;;;;;;:::i;46728:29::-;;;;;;;;;;;;;;;;33519:155;;;;;;;;;;-1:-1:-1;33519:155:0;;;;;:::i;:::-;;:::i;46764:34::-;;;;;;;;;;;;;;;;46921:43;;;;;;;;;;-1:-1:-1;46921:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;34642:328;;;;;;;;;;-1:-1:-1;34642:328:0;;;;;:::i;:::-;;:::i;46520:57::-;;;;;;;;;;;;46567:10;46520:57;;50276:122;;;;;;;;;;-1:-1:-1;50276:122:0;;;;;:::i;:::-;;:::i;49403:422::-;;;;;;;;;;-1:-1:-1;49403:422:0;;;;;:::i;:::-;;:::i;46875:39::-;;;;;;;;;;-1:-1:-1;46875:39:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;46645:38;;;;;;;;;;;;;;;;33745:164;;;;;;;;;;-1:-1:-1;33745:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33866:25:0;;;33842:4;33866:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33745:164;46455:24;;;;;;;;;;-1:-1:-1;46455:24:0;;;;;;;;9477:201;;;;;;;;;;-1:-1:-1;9477:201:0;;;;;:::i;:::-;;:::i;30722:305::-;30824:4;-1:-1:-1;;;;;;30861:40:0;;-1:-1:-1;;;30861:40:0;;:105;;-1:-1:-1;;;;;;;30918:48:0;;-1:-1:-1;;;30918:48:0;30861:105;:158;;;-1:-1:-1;;;;;;;;;;21461:40:0;;;30983:36;30841:178;30722:305;-1:-1:-1;;30722:305:0:o;31667:100::-;31721:13;31754:5;31747:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31667:100;:::o;33226:221::-;33302:7;36569:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36569:16:0;33322:73;;;;-1:-1:-1;;;33322:73:0;;14324:2:1;33322:73:0;;;14306:21:1;14363:2;14343:18;;;14336:30;14402:34;14382:18;;;14375:62;-1:-1:-1;;;14453:18:1;;;14446:42;14505:19;;33322:73:0;;;;;;;;;-1:-1:-1;33415:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33415:24:0;;33226:221::o;32749:411::-;32830:13;32846:23;32861:7;32846:14;:23::i;:::-;32830:39;;32894:5;-1:-1:-1;;;;;32888:11:0;:2;-1:-1:-1;;;;;32888:11:0;;;32880:57;;;;-1:-1:-1;;;32880:57:0;;15865:2:1;32880:57:0;;;15847:21:1;15904:2;15884:18;;;15877:30;15943:34;15923:18;;;15916:62;-1:-1:-1;;;15994:18:1;;;15987:31;16035:19;;32880:57:0;15663:397:1;32880:57:0;7372:10;-1:-1:-1;;;;;32972:21:0;;;;:62;;-1:-1:-1;32997:37:0;33014:5;7372:10;33745:164;:::i;32997:37::-;32950:168;;;;-1:-1:-1;;;32950:168:0;;12717:2:1;32950:168:0;;;12699:21:1;12756:2;12736:18;;;12729:30;12795:34;12775:18;;;12768:62;12866:26;12846:18;;;12839:54;12910:19;;32950:168:0;12515:420:1;32950:168:0;33131:21;33140:2;33144:7;33131:8;:21::i;:::-;32819:341;32749:411;;:::o;49209:91::-;8641:6;;-1:-1:-1;;;;;8641:6:0;7372:10;8788:23;8780:68;;;;-1:-1:-1;;;8780:68:0;;;;;;;:::i;:::-;49268:15:::1;:26:::0;;;::::1;;;;-1:-1:-1::0;;49268:26:0;;::::1;::::0;;;::::1;::::0;;49209:91::o;50048:100::-;8641:6;;-1:-1:-1;;;;;8641:6:0;7372:10;8788:23;8780:68;;;;-1:-1:-1;;;8780:68:0;;;;;;;:::i;:::-;50120:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50048:100:::0;:::o;49306:89::-;49350:7;49373:16;:6;964:14;;872:114;49373:16;49366:23;;49306:89;:::o;49118:85::-;8641:6;;-1:-1:-1;;;;;8641:6:0;7372:10;8788:23;8780:68;;;;-1:-1:-1;;;8780:68:0;;;;;;;:::i;:::-;49174:12:::1;:23:::0;;-1:-1:-1;;49174:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49118:85::o;33976:339::-;34171:41;7372:10;34204:7;34171:18;:41::i;:::-;34163:103;;;;-1:-1:-1;;;34163:103:0;;;;;;;:::i;:::-;34279:28;34289:4;34295:2;34299:7;34279:9;:28::i;48715:397::-;46628:10;48851:14;47594:9;47568:22;48851:14;46628:10;47568:22;:::i;:::-;:35;47546:109;;;;-1:-1:-1;;;47546:109:0;;17034:2:1;47546:109:0;;;17016:21:1;17073:2;17053:18;;;17046:30;-1:-1:-1;;;17092:18:1;;;17085:54;17156:18;;47546:109:0;16832:348:1;47546:109:0;48884:14:::1;47766:16;;47743;:6;964:14:::0;;872:114;47743:16:::1;:20;::::0;47762:1:::1;47743:20;:::i;:::-;:39;47735:72;;;::::0;-1:-1:-1;;;47735:72:0;;16267:2:1;47735:72:0::1;::::0;::::1;16249:21:1::0;16306:2;16286:18;;;16279:30;-1:-1:-1;;;16325:18:1;;;16318:50;16385:18;;47735:72:0::1;16065:344:1::0;47735:72:0::1;5666:1:::2;6264:7;;:19;;6256:63;;;;-1:-1:-1::0;;;6256:63:0::2;;;;;;;:::i;:::-;5666:1;6397:7;:18:::0;48946:12:::3;::::0;::::3;;:20;;:12:::0;:20:::3;48938:51;;;::::0;-1:-1:-1;;;48938:51:0;;11192:2:1;48938:51:0::3;::::0;::::3;11174:21:1::0;11231:2;11211:18;;;11204:30;-1:-1:-1;;;11250:18:1;;;11243:48;11308:18;;48938:51:0::3;10990:342:1::0;48938:51:0::3;49005:9;49000:105;49024:14;49020:1;:18;49000:105;;;49056:37;49066:10;49078:14;49056:9;:37::i;:::-;49040:3:::0;::::3;::::0;::::3;:::i;:::-;;;;49000:105;;;-1:-1:-1::0;;5622:1:0::2;6576:7;:22:::0;-1:-1:-1;;;48715:397:0:o;50156:112::-;8641:6;;-1:-1:-1;;;;;8641:6:0;7372:10;8788:23;8780:68;;;;-1:-1:-1;;;8780:68:0;;;;;;;:::i;:::-;50233:14:::1;:27:::0;50156:112::o;50614:317::-;8641:6;;-1:-1:-1;;;;;8641:6:0;7372:10;8788:23;8780:68;;;;-1:-1:-1;;;8780:68:0;;;;;;;:::i;:::-;50681:7:::1;50702:42;50787:3;50758:26;:21;50782:2;50758:26;:::i;:::-;:32;;;;:::i;:::-;50694:101;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50680:115;;;50810:2;50802:11;;;::::0;::::1;;50839:7;50860;8641:6:::0;;-1:-1:-1;;;;;8641:6:0;;8568:87;50860:7:::1;-1:-1:-1::0;;;;;50852:21:0::1;50881;50852:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50838:69;;;50922:2;50914:11;;;::::0;::::1;34386:185:::0;34524:39;34541:4;34547:2;34551:7;34524:39;;;;;;;;;;;;:16;:39::i;48235:472::-;48365:11;;48378:19;;47240:144;47277:11;;47240:144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;47340:28:0;;-1:-1:-1;;47357:10:0;5516:2:1;5512:15;5508:53;47340:28:0;;;5496:66:1;47307:4:0;;-1:-1:-1;5578:12:1;;;-1:-1:-1;47340:28:0;;;;;;;;;;;;;47330:39;;;;;;47240:18;:144::i;:::-;47218:224;;;;-1:-1:-1;;;47218:224:0;;11952:2:1;47218:224:0;;;11934:21:1;11991:2;11971:18;;;11964:30;12030:32;12010:18;;;12003:60;12080:18;;47218:224:0;11750:354:1;47218:224:0;46567:10:::1;48447:1;47594:9;47568:22;48447:1:::0;46567:10;47568:22:::1;:::i;:::-;:35;47546:109;;;::::0;-1:-1:-1;;;47546:109:0;;17034:2:1;47546:109:0::1;::::0;::::1;17016:21:1::0;17073:2;17053:18;;;17046:30;-1:-1:-1;;;17092:18:1;;;17085:54;17156:18;;47546:109:0::1;16832:348:1::0;47546:109:0::1;5666:1:::2;6264:7;;:19;;6256:63;;;;-1:-1:-1::0;;;6256:63:0::2;;;;;;;:::i;:::-;5666:1;6397:7;:18:::0;48505:10:::3;48497:19;::::0;;;:7:::3;:19;::::0;;;;;::::3;;48496:20;48488:70;;;;-1:-1:-1::0;;;48488:70:0::3;;;;;;;:::i;:::-;48577:15;::::0;::::3;;::::0;;::::3;;:23;;:15;:23;48569:58;;;::::0;-1:-1:-1;;;48569:58:0;;15098:2:1;48569:58:0::3;::::0;::::3;15080:21:1::0;15137:2;15117:18;;;15110:30;-1:-1:-1;;;15156:18:1;;;15149:52;15218:18;;48569:58:0::3;14896:346:1::0;48569:58:0::3;48638:24;48648:10;48660:1;48638:9;:24::i;:::-;-1:-1:-1::0;;48681:10:0::3;48673:19;::::0;;;:7:::3;:19;::::0;;;;:26;;-1:-1:-1;;48673:26:0::3;48695:4;48673:26:::0;;::::3;::::0;;;6576:7:::2;:22:::0;-1:-1:-1;;;;;48235:472:0:o;46415:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46382:28::-;;;;;;;:::i;31361:239::-;31433:7;31469:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31469:16:0;31504:19;31496:73;;;;-1:-1:-1;;;31496:73:0;;13553:2:1;31496:73:0;;;13535:21:1;13592:2;13572:18;;;13565:30;13631:34;13611:18;;;13604:62;-1:-1:-1;;;13682:18:1;;;13675:39;13731:19;;31496:73:0;13351:405:1;31091:208:0;31163:7;-1:-1:-1;;;;;31191:19:0;;31183:74;;;;-1:-1:-1;;;31183:74:0;;13142:2:1;31183:74:0;;;13124:21:1;13181:2;13161:18;;;13154:30;13220:34;13200:18;;;13193:62;-1:-1:-1;;;13271:18:1;;;13264:40;13321:19;;31183:74:0;12940:406:1;31183:74:0;-1:-1:-1;;;;;;31275:16:0;;;;;:9;:16;;;;;;;31091:208::o;9219:103::-;8641:6;;-1:-1:-1;;;;;8641:6:0;7372:10;8788:23;8780:68;;;;-1:-1:-1;;;8780:68:0;;;;;;;:::i;:::-;9284:30:::1;9311:1;9284:18;:30::i;:::-;9219:103::o:0;49942:100::-;8641:6;;-1:-1:-1;;;;;8641:6:0;7372:10;8788:23;8780:68;;;;-1:-1:-1;;;8780:68:0;;;;;;;:::i;:::-;50014:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;47835:392::-:0;47945:11;;47958:14;;47240:144;47277:11;;47240:144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;47340:28:0;;-1:-1:-1;;47357:10:0;5516:2:1;5512:15;5508:53;47340:28:0;;;5496:66:1;47307:4:0;;-1:-1:-1;5578:12:1;;;-1:-1:-1;47340:28:0;5367:229:1;47240:144:0;47218:224;;;;-1:-1:-1;;;47218:224:0;;11952:2:1;47218:224:0;;;11934:21:1;11991:2;11971:18;;;11964:30;12030:32;12010:18;;;12003:60;12080:18;;47218:224:0;11750:354:1;47218:224:0;5666:1:::1;6264:7;;:19;;6256:63;;;;-1:-1:-1::0;;;6256:63:0::1;;;;;;;:::i;:::-;5666:1;6397:7;:18:::0;48031:10:::2;48019:23;::::0;;;:11:::2;:23;::::0;;;;;::::2;;48018:24;48010:74;;;;-1:-1:-1::0;;;48010:74:0::2;;;;;;;:::i;:::-;48101:15;::::0;::::2;;::::0;;::::2;;:23;;:15;:23;48093:58;;;::::0;-1:-1:-1;;;48093:58:0;;15098:2:1;48093:58:0::2;::::0;::::2;15080:21:1::0;15137:2;15117:18;;;15110:30;-1:-1:-1;;;15156:18:1;;;15149:52;15218:18;;48093:58:0::2;14896:346:1::0;48093:58:0::2;48158:24;48168:10;48180:1;48158:9;:24::i;:::-;-1:-1:-1::0;;48201:10:0::2;48189:23;::::0;;;:11:::2;:23;::::0;;;;:30;;-1:-1:-1;;48189:30:0::2;48215:4;48189:30:::0;;::::2;::::0;;;6576:7:::1;:22:::0;-1:-1:-1;;;47835:392:0:o;31836:104::-;31892:13;31925:7;31918:14;;;;;:::i;33519:155::-;33614:52;7372:10;33647:8;33657;33614:18;:52::i;34642:328::-;34817:41;7372:10;34850:7;34817:18;:41::i;:::-;34809:103;;;;-1:-1:-1;;;34809:103:0;;;;;;;:::i;:::-;34923:39;34937:4;34943:2;34947:7;34956:5;34923:13;:39::i;:::-;34642:328;;;;:::o;50276:122::-;8641:6;;-1:-1:-1;;;;;8641:6:0;7372:10;8788:23;8780:68;;;;-1:-1:-1;;;8780:68:0;;;;;;;:::i;:::-;50358:19:::1;:32:::0;50276:122::o;49403:422::-;36545:4;36569:16;;;:7;:16;;;;;;49502:13;;-1:-1:-1;;;;;36569:16:0;49527:98;;;;-1:-1:-1;;;49527:98:0;;15449:2:1;49527:98:0;;;15431:21:1;15488:2;15468:18;;;15461:30;15527:34;15507:18;;;15500:62;-1:-1:-1;;;15578:18:1;;;15571:45;15633:19;;49527:98:0;15247:411:1;49527:98:0;49634:28;49665:10;:8;:10::i;:::-;49634:41;;49720:1;49695:14;49689:28;:32;:130;;;;;;;;;;;;;;;;;49757:14;49773:19;:8;:17;:19::i;:::-;49794:9;49740:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49689:130;49682:137;49403:422;-1:-1:-1;;;49403:422:0:o;9477:201::-;8641:6;;-1:-1:-1;;;;;8641:6:0;7372:10;8788:23;8780:68;;;;-1:-1:-1;;;8780:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9566:22:0;::::1;9558:73;;;::::0;-1:-1:-1;;;9558:73:0;;9263:2:1;9558:73:0::1;::::0;::::1;9245:21:1::0;9302:2;9282:18;;;9275:30;9341:34;9321:18;;;9314:62;-1:-1:-1;;;9392:18:1;;;9385:36;9438:19;;9558:73:0::1;9061:402:1::0;9558:73:0::1;9642:28;9661:8;9642:18;:28::i;:::-;9477:201:::0;:::o;994:127::-;1083:19;;1101:1;1083:19;;;994:127::o;872:114::-;964:14;;872:114::o;11269:326::-;-1:-1:-1;;;;;11564:19:0;;:23;;;11269:326::o;40626:174::-;40701:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;40701:29:0;-1:-1:-1;;;;;40701:29:0;;;;;;;;:24;;40755:23;40701:24;40755:14;:23::i;:::-;-1:-1:-1;;;;;40746:46:0;;;;;;;;;;;40626:174;;:::o;36774:348::-;36867:4;36569:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36569:16:0;36884:73;;;;-1:-1:-1;;;36884:73:0;;11539:2:1;36884:73:0;;;11521:21:1;11578:2;11558:18;;;11551:30;11617:34;11597:18;;;11590:62;-1:-1:-1;;;11668:18:1;;;11661:42;11720:19;;36884:73:0;11337:408:1;36884:73:0;36968:13;36984:23;36999:7;36984:14;:23::i;:::-;36968:39;;37037:5;-1:-1:-1;;;;;37026:16:0;:7;-1:-1:-1;;;;;37026:16:0;;:51;;;;37070:7;-1:-1:-1;;;;;37046:31:0;:20;37058:7;37046:11;:20::i;:::-;-1:-1:-1;;;;;37046:31:0;;37026:51;:87;;;-1:-1:-1;;;;;;33866:25:0;;;33842:4;33866:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;37081:32;37018:96;36774:348;-1:-1:-1;;;;36774:348:0:o;39883:625::-;40042:4;-1:-1:-1;;;;;40015:31:0;:23;40030:7;40015:14;:23::i;:::-;-1:-1:-1;;;;;40015:31:0;;40007:81;;;;-1:-1:-1;;;40007:81:0;;9670:2:1;40007:81:0;;;9652:21:1;9709:2;9689:18;;;9682:30;9748:34;9728:18;;;9721:62;-1:-1:-1;;;9799:18:1;;;9792:35;9844:19;;40007:81:0;9468:401:1;40007:81:0;-1:-1:-1;;;;;40107:16:0;;40099:65;;;;-1:-1:-1;;;40099:65:0;;10433:2:1;40099:65:0;;;10415:21:1;10472:2;10452:18;;;10445:30;10511:34;10491:18;;;10484:62;-1:-1:-1;;;10562:18:1;;;10555:34;10606:19;;40099:65:0;10231:400:1;40099:65:0;40281:29;40298:1;40302:7;40281:8;:29::i;:::-;-1:-1:-1;;;;;40323:15:0;;;;;;:9;:15;;;;;:20;;40342:1;;40323:15;:20;;40342:1;;40323:20;:::i;:::-;;;;-1:-1:-1;;;;;;;40354:13:0;;;;;;:9;:13;;;;;:18;;40371:1;;40354:13;:18;;40371:1;;40354:18;:::i;:::-;;;;-1:-1:-1;;40383:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40383:21:0;-1:-1:-1;;;;;40383:21:0;;;;;;;;;40422:27;;40383:16;;40422:27;;;;;;;32819:341;32749:411;;:::o;50404:204::-;50484:9;50479:124;50503:11;50499:1;:15;50479:124;;;50530:18;:6;1083:19;;1101:1;1083:19;;;994:127;50530:18;50557:38;50567:9;50578:16;:6;964:14;;872:114;50578:16;50557:9;:38::i;:::-;50516:3;;;;:::i;:::-;;;;50479:124;;2388:190;2513:4;2566;2537:25;2550:5;2557:4;2537:12;:25::i;:::-;:33;;2388:190;-1:-1:-1;;;;2388:190:0:o;9838:191::-;9931:6;;;-1:-1:-1;;;;;9948:17:0;;;-1:-1:-1;;;;;;9948:17:0;;;;;;;9981:40;;9931:6;;;9948:17;9931:6;;9981:40;;9912:16;;9981:40;9901:128;9838:191;:::o;40942:315::-;41097:8;-1:-1:-1;;;;;41088:17:0;:5;-1:-1:-1;;;;;41088:17:0;;;41080:55;;;;-1:-1:-1;;;41080:55:0;;10838:2:1;41080:55:0;;;10820:21:1;10877:2;10857:18;;;10850:30;10916:27;10896:18;;;10889:55;10961:18;;41080:55:0;10636:349:1;41080:55:0;-1:-1:-1;;;;;41146:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;41146:46:0;;;;;;;;;;41208:41;;8184::1;;;41208::0;;8157:18:1;41208:41:0;;;;;;;40942:315;;;:::o;35852:::-;36009:28;36019:4;36025:2;36029:7;36009:9;:28::i;:::-;36056:48;36079:4;36085:2;36089:7;36098:5;36056:22;:48::i;:::-;36048:111;;;;-1:-1:-1;;;36048:111:0;;;;;;;:::i;49831:104::-;49891:13;49920:9;49913:16;;;;;:::i;27556:723::-;27612:13;27833:10;27829:53;;-1:-1:-1;;27860:10:0;;;;;;;;;;;;-1:-1:-1;;;27860:10:0;;;;;27556:723::o;27829:53::-;27907:5;27892:12;27948:78;27955:9;;27948:78;;27981:8;;;;:::i;:::-;;-1:-1:-1;28004:10:0;;-1:-1:-1;28012:2:0;28004:10;;:::i;:::-;;;27948:78;;;28036:19;28068:6;28058:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28058:17:0;;28036:39;;28086:154;28093:10;;28086:154;;28120:11;28130:1;28120:11;;:::i;:::-;;-1:-1:-1;28189:10:0;28197:2;28189:5;:10;:::i;:::-;28176:24;;:2;:24;:::i;:::-;28163:39;;28146:6;28153;28146:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;28146:56:0;;;;;;;;-1:-1:-1;28217:11:0;28226:2;28217:11;;:::i;:::-;;;28086:154;;37464:110;37540:26;37550:2;37554:7;37540:26;;;;;;;;;;;;:9;:26::i;2940:675::-;3023:7;3066:4;3023:7;3081:497;3105:5;:12;3101:1;:16;3081:497;;;3139:20;3162:5;3168:1;3162:8;;;;;;;;:::i;:::-;;;;;;;3139:31;;3205:12;3189;:28;3185:382;;3691:13;3741:15;;;3777:4;3770:15;;;3824:4;3808:21;;3317:57;;3185:382;;;3691:13;3741:15;;;3777:4;3770:15;;;3824:4;3808:21;;3494:57;;3185:382;-1:-1:-1;3119:3:0;;;;:::i;:::-;;;;3081:497;;;-1:-1:-1;3595:12:0;2940:675;-1:-1:-1;;;2940:675:0:o;41822:799::-;41977:4;-1:-1:-1;;;;;41998:13:0;;11564:19;:23;41994:620;;42034:72;;-1:-1:-1;;;42034:72:0;;-1:-1:-1;;;;;42034:36:0;;;;;:72;;7372:10;;42085:4;;42091:7;;42100:5;;42034:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42034:72:0;;;;;;;;-1:-1:-1;;42034:72:0;;;;;;;;;;;;:::i;:::-;;;42030:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42276:13:0;;42272:272;;42319:60;;-1:-1:-1;;;42319:60:0;;;;;;;:::i;42272:272::-;42494:6;42488:13;42479:6;42475:2;42471:15;42464:38;42030:529;-1:-1:-1;;;;;;42157:51:0;-1:-1:-1;;;42157:51:0;;-1:-1:-1;42150:58:0;;41994:620;-1:-1:-1;42598:4:0;41822:799;;;;;;:::o;37801:321::-;37931:18;37937:2;37941:7;37931:5;:18::i;:::-;37982:54;38013:1;38017:2;38021:7;38030:5;37982:22;:54::i;:::-;37960:154;;;;-1:-1:-1;;;37960:154:0;;;;;;;:::i;38458:439::-;-1:-1:-1;;;;;38538:16:0;;38530:61;;;;-1:-1:-1;;;38530:61:0;;13963:2:1;38530:61:0;;;13945:21:1;;;13982:18;;;13975:30;14041:34;14021:18;;;14014:62;14093:18;;38530:61:0;13761:356:1;38530:61:0;36545:4;36569:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36569:16:0;:30;38602:58;;;;-1:-1:-1;;;38602:58:0;;10076:2:1;38602:58:0;;;10058:21:1;10115:2;10095:18;;;10088:30;10154;10134:18;;;10127:58;10202:18;;38602:58:0;9874:352:1;38602:58:0;-1:-1:-1;;;;;38731:13:0;;;;;;:9;:13;;;;;:18;;38748:1;;38731:13;:18;;38748:1;;38731:18;:::i;:::-;;;;-1:-1:-1;;38760:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38760:21:0;-1:-1:-1;;;;;38760:21:0;;;;;;;;38799:33;;38760:16;;;38799:33;;38760:16;;38799:33;50120:22:::1;50048:100:::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:615::-;3057:6;3065;3118:2;3106:9;3097:7;3093:23;3089:32;3086:52;;;3134:1;3131;3124:12;3086:52;3174:9;3161:23;3203:18;3244:2;3236:6;3233:14;3230:34;;;3260:1;3257;3250:12;3230:34;3298:6;3287:9;3283:22;3273:32;;3343:7;3336:4;3332:2;3328:13;3324:27;3314:55;;3365:1;3362;3355:12;3314:55;3405:2;3392:16;3431:2;3423:6;3420:14;3417:34;;;3447:1;3444;3437:12;3417:34;3500:7;3495:2;3485:6;3482:1;3478:14;3474:2;3470:23;3466:32;3463:45;3460:65;;;3521:1;3518;3511:12;3460:65;3552:2;3544:11;;;;;3574:6;;-1:-1:-1;2971:615:1;;-1:-1:-1;;;;2971:615:1:o;3591:180::-;3647:6;3700:2;3688:9;3679:7;3675:23;3671:32;3668:52;;;3716:1;3713;3706:12;3668:52;3739:26;3755:9;3739:26;:::i;3776:180::-;3835:6;3888:2;3876:9;3867:7;3863:23;3859:32;3856:52;;;3904:1;3901;3894:12;3856:52;-1:-1:-1;3927:23:1;;3776:180;-1:-1:-1;3776:180:1:o;3961:245::-;4019:6;4072:2;4060:9;4051:7;4047:23;4043:32;4040:52;;;4088:1;4085;4078:12;4040:52;4127:9;4114:23;4146:30;4170:5;4146:30;:::i;4211:249::-;4280:6;4333:2;4321:9;4312:7;4308:23;4304:32;4301:52;;;4349:1;4346;4339:12;4301:52;4381:9;4375:16;4400:30;4424:5;4400:30;:::i;4465:450::-;4534:6;4587:2;4575:9;4566:7;4562:23;4558:32;4555:52;;;4603:1;4600;4593:12;4555:52;4643:9;4630:23;4676:18;4668:6;4665:30;4662:50;;;4708:1;4705;4698:12;4662:50;4731:22;;4784:4;4776:13;;4772:27;-1:-1:-1;4762:55:1;;4813:1;4810;4803:12;4762:55;4836:73;4901:7;4896:2;4883:16;4878:2;4874;4870:11;4836:73;:::i;5105:257::-;5146:3;5184:5;5178:12;5211:6;5206:3;5199:19;5227:63;5283:6;5276:4;5271:3;5267:14;5260:4;5253:5;5249:16;5227:63;:::i;:::-;5344:2;5323:15;-1:-1:-1;;5319:29:1;5310:39;;;;5351:4;5306:50;;5105:257;-1:-1:-1;;5105:257:1:o;5601:1527::-;5825:3;5863:6;5857:13;5889:4;5902:51;5946:6;5941:3;5936:2;5928:6;5924:15;5902:51;:::i;:::-;6016:13;;5975:16;;;;6038:55;6016:13;5975:16;6060:15;;;6038:55;:::i;:::-;6182:13;;6115:20;;;6155:1;;6242;6264:18;;;;6317;;;;6344:93;;6422:4;6412:8;6408:19;6396:31;;6344:93;6485:2;6475:8;6472:16;6452:18;6449:40;6446:167;;;-1:-1:-1;;;6512:33:1;;6568:4;6565:1;6558:15;6598:4;6519:3;6586:17;6446:167;6629:18;6656:110;;;;6780:1;6775:328;;;;6622:481;;6656:110;-1:-1:-1;;6691:24:1;;6677:39;;6736:20;;;;-1:-1:-1;6656:110:1;;6775:328;17800:1;17793:14;;;17837:4;17824:18;;6870:1;6884:169;6898:8;6895:1;6892:15;6884:169;;;6980:14;;6965:13;;;6958:37;7023:16;;;;6915:10;;6884:169;;;6888:3;;7084:8;7077:5;7073:20;7066:27;;6622:481;-1:-1:-1;7119:3:1;;5601:1527;-1:-1:-1;;;;;;;;;;;5601:1527:1:o;7551:488::-;-1:-1:-1;;;;;7820:15:1;;;7802:34;;7872:15;;7867:2;7852:18;;7845:43;7919:2;7904:18;;7897:34;;;7967:3;7962:2;7947:18;;7940:31;;;7745:4;;7988:45;;8013:19;;8005:6;7988:45;:::i;:::-;7980:53;7551:488;-1:-1:-1;;;;;;7551:488:1:o;8418:219::-;8567:2;8556:9;8549:21;8530:4;8587:44;8627:2;8616:9;8612:18;8604:6;8587:44;:::i;8642:414::-;8844:2;8826:21;;;8883:2;8863:18;;;8856:30;8922:34;8917:2;8902:18;;8895:62;-1:-1:-1;;;8988:2:1;8973:18;;8966:48;9046:3;9031:19;;8642:414::o;12109:401::-;12311:2;12293:21;;;12350:2;12330:18;;;12323:30;12389:34;12384:2;12369:18;;12362:62;-1:-1:-1;;;12455:2:1;12440:18;;12433:35;12500:3;12485:19;;12109:401::o;14535:356::-;14737:2;14719:21;;;14756:18;;;14749:30;14815:34;14810:2;14795:18;;14788:62;14882:2;14867:18;;14535:356::o;16414:413::-;16616:2;16598:21;;;16655:2;16635:18;;;16628:30;16694:34;16689:2;16674:18;;16667:62;-1:-1:-1;;;16760:2:1;16745:18;;16738:47;16817:3;16802:19;;16414:413::o;17185:355::-;17387:2;17369:21;;;17426:2;17406:18;;;17399:30;17465:33;17460:2;17445:18;;17438:61;17531:2;17516:18;;17185:355::o;17853:128::-;17893:3;17924:1;17920:6;17917:1;17914:13;17911:39;;;17930:18;;:::i;:::-;-1:-1:-1;17966:9:1;;17853:128::o;17986:120::-;18026:1;18052;18042:35;;18057:18;;:::i;:::-;-1:-1:-1;18091:9:1;;17986:120::o;18111:168::-;18151:7;18217:1;18213;18209:6;18205:14;18202:1;18199:21;18194:1;18187:9;18180:17;18176:45;18173:71;;;18224:18;;:::i;:::-;-1:-1:-1;18264:9:1;;18111:168::o;18284:125::-;18324:4;18352:1;18349;18346:8;18343:34;;;18357:18;;:::i;:::-;-1:-1:-1;18394:9:1;;18284:125::o;18414:258::-;18486:1;18496:113;18510:6;18507:1;18504:13;18496:113;;;18586:11;;;18580:18;18567:11;;;18560:39;18532:2;18525:10;18496:113;;;18627:6;18624:1;18621:13;18618:48;;;-1:-1:-1;;18662:1:1;18644:16;;18637:27;18414:258::o;18677:380::-;18756:1;18752:12;;;;18799;;;18820:61;;18874:4;18866:6;18862:17;18852:27;;18820:61;18927:2;18919:6;18916:14;18896:18;18893:38;18890:161;;;18973:10;18968:3;18964:20;18961:1;18954:31;19008:4;19005:1;18998:15;19036:4;19033:1;19026:15;18890:161;;18677:380;;;:::o;19062:135::-;19101:3;-1:-1:-1;;19122:17:1;;19119:43;;;19142:18;;:::i;:::-;-1:-1:-1;19189:1:1;19178:13;;19062:135::o;19202:112::-;19234:1;19260;19250:35;;19265:18;;:::i;:::-;-1:-1:-1;19299:9:1;;19202:112::o;19319:127::-;19380:10;19375:3;19371:20;19368:1;19361:31;19411:4;19408:1;19401:15;19435:4;19432:1;19425:15;19451:127;19512:10;19507:3;19503:20;19500:1;19493:31;19543:4;19540:1;19533:15;19567:4;19564:1;19557:15;19583:127;19644:10;19639:3;19635:20;19632:1;19625:31;19675:4;19672:1;19665:15;19699:4;19696:1;19689:15;19715:127;19776:10;19771:3;19767:20;19764:1;19757:31;19807:4;19804:1;19797:15;19831:4;19828:1;19821:15;19847:131;-1:-1:-1;;;;;;19921:32:1;;19911:43;;19901:71;;19968:1;19965;19958:12

Swarm Source

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