ETH Price: $2,975.58 (+2.58%)
Gas: 1 Gwei

Token

Fkn Rich Sharks (FKN)
 

Overview

Max Total Supply

3,040 FKN

Holders

550

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
macro9527.eth
Balance
5 FKN
0x1d8bb512f56451ddef820d6fe0faa0b1b655af07
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FKN

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// 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/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/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/contracts/ERC721A.sol


pragma solidity ^0.8.4;


/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }
  // The tokenId of the next token to be minted.
  uint256 private currentIndex = 0;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

  // Mapping from token ID to ownership details
  // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
  mapping(uint256 => TokenOwnership) private _ownerships;

  // Mapping owner address to address data
  mapping(address => AddressData) private _addressData;

  // Mapping from token ID to approved address
  mapping(uint256 => address) private _tokenApprovals;

  // Mapping from owner to operator approvals
  mapping(address => mapping(address => bool)) private _operatorApprovals;

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(string memory name_, string memory symbol_) {
    _name = name_;
    _symbol = symbol_;
  }

   /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

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

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

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

  /**
   * @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 ||
      interfaceId == type(IERC721Enumerable).interfaceId ||
      super.supportsInterface(interfaceId);
  }

  /**
   * @dev See {IERC721-balanceOf}.
   */
  function balanceOf(address owner) public view override returns (uint256) {
    require(owner != address(0), "ERC721A: balance query for the zero address");
    return uint256(_addressData[owner].balance);
  }

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

  function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");
    
    unchecked {
        for (uint256 curr = tokenId; curr >= 0; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }
    }

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

  /**
   * @dev See {IERC721-ownerOf}.
   */
  function ownerOf(uint256 tokenId) public view override returns (address) {
    return ownershipOf(tokenId).addr;
  }

  /**
   * @dev See {IERC721Metadata-name}.
   */
  function name() public view virtual override returns (string memory) {
    return _name;
  }

  /**
   * @dev See {IERC721Metadata-symbol}.
   */
  function symbol() public view virtual override returns (string memory) {
    return _symbol;
  }

  /**
   * @dev See {IERC721Metadata-tokenURI}.
   */
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

    _operatorApprovals[_msgSender()][operator] = approved;
    emit ApprovalForAll(_msgSender(), operator, approved);
  }

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

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

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

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

  /**
   * @dev Returns whether `tokenId` exists.
   *
   * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
   *
   * Tokens start existing when they are minted (`_mint`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

  function _safeMint(address to, uint256 quantity) internal {
    _safeMint(to, quantity, "");
  }

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    require(quantity != 0, "ERC721A: quantity must be greater than 0");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");

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

    unchecked {
      AddressData memory addressData = _addressData[to];
      _addressData[to] = AddressData(
        addressData.balance + uint128(quantity),
        addressData.numberMinted + uint128(quantity)
      );
      _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

      uint256 updatedIndex = startTokenId;

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

      currentIndex = updatedIndex;
    }
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - `tokenId` token must be owned by `from`.
   *
   * Emits a {Transfer} event.
   */
  function _transfer(
    address from,
    address to,
    uint256 tokenId
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

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

  /**
   * @dev Approve `to` to operate on `tokenId`
   *
   * Emits a {Approval} event.
   */
  function _approve(
    address to,
    uint256 tokenId,
    address owner
  ) private {
    _tokenApprovals[tokenId] = to;
    emit Approval(owner, to, tokenId);
  }

  // uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  // function _setOwnersExplicit(uint256 quantity) internal {
  //   uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
  //   require(quantity > 0, "quantity must be nonzero");
  //   uint256 endIndex = oldNextOwnerToSet + quantity - 1;
  //   if (endIndex > collectionSize - 1) {
  //     endIndex = collectionSize - 1;
  //   }
  //   // We know if the last one in the group exists, all in the group exist, due to serial ordering.
  //   require(_exists(endIndex), "not enough minted yet for this cleanup");
  //   for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
  //     if (_ownerships[i].addr == address(0)) {
  //       TokenOwnership memory ownership = ownershipOf(i);
  //       _ownerships[i] = TokenOwnership(
  //         ownership.addr,
  //         ownership.startTimestamp
  //       );
  //     }
  //   }
  //   nextOwnerToExplicitlySet = endIndex + 1;
  // }

  /**
   * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
   * The call is not executed if the target address is not a contract.
   *
   * @param from address representing the previous owner of the given token ID
   * @param to target address that will receive the tokens
   * @param tokenId uint256 ID of the token to be transferred
   * @param _data bytes optional data to send along with the call
   * @return bool whether the call correctly returned the expected magic value
   */
  function _checkOnERC721Received(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) private returns (bool) {
    if (to.isContract()) {
      try
        IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data)
      returns (bytes4 retval) {
        return retval == IERC721Receiver(to).onERC721Received.selector;
      } catch (bytes memory reason) {
        if (reason.length == 0) {
          revert("ERC721A: transfer to non ERC721Receiver implementer");
        } else {
          assembly {
            revert(add(32, reason), mload(reason))
          }
        }
      }
    } else {
      return true;
    }
  }

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
   * transferred to `to`.
   * - When `from` is zero, `tokenId` will be minted for `to`.
   */
  function _beforeTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}

  /**
   * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
   * minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - when `from` and `to` are both non-zero.
   * - `from` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}


pragma solidity ^0.8.6;



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

    //Basic Configs
    uint256 public maxSupply = 10000;
    uint256 public _price = 0.18 ether;
    uint256 public maxMintAmountPerTx = 5;

    //Reveal/NonReveal
    string public _baseTokenURI;
    string public _baseTokenEXT = ".json";
    string public notRevealedUri;
    bool public revealed = false;
    bool public _paused = false;

    //PRESALE MODES
    uint256 public whitelistMaxMint = 5;
    bytes32 public merkleRoot = 0x9d997719c0a5b5f6db9b8ac69a988be57cf324cb9fffd51dc2c37544bb520d65;
    bool public whitelistSale = false;
    uint256 public whitelistPrice = 0.01 ether;

    bool public vipSaleStarted = false;

    struct MintTracker{
        uint256 _regular;
        uint256 _whitelist;
    }
    mapping(address => MintTracker) public _totalMinted;

    // withdraw addresses
    address t1 = 0xB95dd339Eec8e688c91d305a88F5733D18f709E1;
    address t2 = 0xE02B033625D6917F0011245F3192dEeE73A3B40f;
    

    constructor(string memory _initBaseURI) ERC721A("Fkn Rich Sharks", "FKN") {
       changeURLParams(_initBaseURI);
      
    }

    modifier mintCompliance(uint256 _mintAmount) {
      require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
      uint256 supply = totalSupply();
      require(supply + _mintAmount <= maxSupply , ": No more NFTs to mint, decrease the quantity or check out OpenSea.");
    _;
    }

    function mintRegular(uint256 _mintAmount, address _receiver) private {
      _safeMint(_receiver, _mintAmount);
      _totalMinted[_receiver]._regular+=_mintAmount;
    }

    function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
        require(!_paused, ": Contract Execution paused.");
        require(!whitelistSale, ": Contract paused.");
        require(_mintAmount > 0, ": Amount should be greater than 0.");
        require(msg.value >= _price * _mintAmount,"Insufficient FUnd");
        mintRegular(_mintAmount, msg.sender);   
    }

  
    function WhiteListMint( uint256 _mintAmount, bytes32[] calldata _merkleProof) public payable mintCompliance(_mintAmount) {
        require(!_paused, ": Contract Execution paused.");
        require(whitelistSale, ": Whitelist is paused.");
        require(_mintAmount > 0, ": Amount should be greater than 0.");
        require(msg.value >= whitelistPrice * _mintAmount,"Insufficient FUnd");

        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), "You are Not whitelisted");

        _safeMint(msg.sender, _mintAmount);
        _totalMinted[msg.sender]._whitelist+=_mintAmount;
    }

    function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
      mintRegular(_mintAmount, _receiver);
    }

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

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        if (revealed == false) {
            return notRevealedUri;
        } else {
            string memory currentBaseURI = _baseURI();
            return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(),_baseTokenEXT)) : "";
        }
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    function pause(bool val) public onlyOwner() {
        _paused = val;
    }

    function toogleWhiteList() public onlyOwner{
        whitelistSale = !whitelistSale;
    }

    function toogleReveal() public onlyOwner{
        revealed = !revealed;
    }

    function changeURLParams(string memory _nURL) public onlyOwner {
        _baseTokenURI = _nURL;
    }


    function setPrice(uint256 newPrice) public onlyOwner() {
        _price = newPrice;
    }

    function setWhiteListPrice(uint256 newPrice) public onlyOwner() {
        whitelistPrice = newPrice;
    }

    function setMerkleRoot(bytes32 merkleHash) public onlyOwner {
        merkleRoot = merkleHash;
    }
    
    function withdrawMoney() external onlyOwner nonReentrant {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }

    function withdrawAll() external payable onlyOwner {
        uint256 _each = address(this).balance / 2;
        require(payable(t1).send(_each));
        require(payable(t2).send(_each));
    }


    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"WhiteListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"_baseTokenEXT","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_totalMinted","outputs":[{"internalType":"uint256","name":"_regular","type":"uint256"},{"internalType":"uint256","name":"_whitelist","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":"string","name":"_nURL","type":"string"}],"name":"changeURLParams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleHash","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setWhiteListPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toogleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toogleWhiteList","outputs":[],"stateMutability":"nonpayable","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":"vipSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6000805561271060095567027f7d0bdb920000600a556005600b81905560c0604052608081905264173539b7b760d91b60a09081526200004391600d91906200027b565b50600f805461ffff1916905560056010557f9d997719c0a5b5f6db9b8ac69a988be57cf324cb9fffd51dc2c37544bb520d656011556012805460ff19908116909155662386f26fc10000601355601480549091169055601680546001600160a01b031990811673b95dd339eec8e688c91d305a88f5733d18f709e1179091556017805490911673e02b033625d6917f0011245f3192deee73a3b40f179055348015620000ee57600080fd5b506040516200305438038062003054833981016040819052620001119162000321565b604080518082018252600f81526e466b6e205269636820536861726b7360881b6020808301918252835180850190945260038452622325a760e91b90840152815191929162000163916001916200027b565b508051620001799060029060208401906200027b565b5050506200019662000190620001ad60201b60201c565b620001b1565b6001600855620001a68162000203565b5062000450565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b03163314620002625760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200027790600c9060208401906200027b565b5050565b8280546200028990620003fd565b90600052602060002090601f016020900481019282620002ad5760008555620002f8565b82601f10620002c857805160ff1916838001178555620002f8565b82800160010185558215620002f8579182015b82811115620002f8578251825591602001919060010190620002db565b50620003069291506200030a565b5090565b5b808211156200030657600081556001016200030b565b600060208083850312156200033557600080fd5b82516001600160401b03808211156200034d57600080fd5b818501915085601f8301126200036257600080fd5b8151818111156200037757620003776200043a565b604051601f8201601f19908116603f01168101908382118183101715620003a257620003a26200043a565b816040528281528886848701011115620003bb57600080fd5b600093505b82841015620003df5784840186015181850187015292850192620003c0565b82841115620003f15760008684830101525b98975050505050505050565b600181811c908216806200041257607f821691505b602082108114156200043457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612bf480620004606000396000f3fe60806040526004361061027d5760003560e01c8063853828b61161014f578063b88d4fde116100c1578063e7d166eb1161007a578063e7d166eb14610715578063e985e9c51461072a578063efbd73f414610773578063f2c4ce1e14610793578063f2fde38b146107b3578063fc1a1c36146107d357600080fd5b8063b88d4fde14610641578063bbc2756414610661578063beafc89b146106aa578063c87b56dd146106ca578063cfc86f7b146106ea578063d5abeb01146106ff57600080fd5b806395d89b411161011357806395d89b41146105b5578063a0712d68146105ca578063a22cb465146105dd578063a5b65703146105fd578063a8edbdc514610617578063ac4460021461062c57600080fd5b8063853828b61461054457806385fee1681461054c5780638da5cb5b1461056157806391b7f5ed1461057f57806394354fd01461059f57600080fd5b80632eb4a7ab116101f357806361a43d52116101ac57806361a43d52146104a65780636352211e146104b957806370a08231146104d9578063715018a6146104f9578063722e141d1461050e5780637cb647591461052457600080fd5b80632eb4a7ab146103fc5780632f745c591461041257806331ffd6f11461043257806342842e0e1461044c5780634f6ccce71461046c578063518302271461048c57600080fd5b8063095ea7b311610245578063095ea7b31461034857806316c61ccc1461036857806318160ddd14610387578063235b6ea1146103a657806323b872dd146103bc5780632470d4d2146103dc57600080fd5b806301ffc9a71461028257806302329a29146102b757806306fdde03146102d9578063081812fc146102fb578063081c8c4414610333575b600080fd5b34801561028e57600080fd5b506102a261029d36600461263f565b6107e9565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102d76102d236600461260b565b610856565b005b3480156102e557600080fd5b506102ee6108a3565b6040516102ae9190612891565b34801561030757600080fd5b5061031b610316366004612626565b610935565b6040516001600160a01b0390911681526020016102ae565b34801561033f57600080fd5b506102ee6109c0565b34801561035457600080fd5b506102d76103633660046125e1565b610a4e565b34801561037457600080fd5b50600f546102a290610100900460ff1681565b34801561039357600080fd5b506000545b6040519081526020016102ae565b3480156103b257600080fd5b50610398600a5481565b3480156103c857600080fd5b506102d76103d73660046124ff565b610b66565b3480156103e857600080fd5b506102d76103f7366004612679565b610b71565b34801561040857600080fd5b5061039860115481565b34801561041e57600080fd5b5061039861042d3660046125e1565b610bb2565b34801561043e57600080fd5b506012546102a29060ff1681565b34801561045857600080fd5b506102d76104673660046124ff565b610d20565b34801561047857600080fd5b50610398610487366004612626565b610d3b565b34801561049857600080fd5b50600f546102a29060ff1681565b6102d76104b43660046126e5565b610d9d565b3480156104c557600080fd5b5061031b6104d4366004612626565b61100d565b3480156104e557600080fd5b506103986104f43660046124b1565b61101f565b34801561050557600080fd5b506102d76110b0565b34801561051a57600080fd5b5061039860105481565b34801561053057600080fd5b506102d761053f366004612626565b6110e6565b6102d7611115565b34801561055857600080fd5b506102ee6111b4565b34801561056d57600080fd5b506007546001600160a01b031661031b565b34801561058b57600080fd5b506102d761059a366004612626565b6111c1565b3480156105ab57600080fd5b50610398600b5481565b3480156105c157600080fd5b506102ee6111f0565b6102d76105d8366004612626565b6111ff565b3480156105e957600080fd5b506102d76105f83660046125b7565b611377565b34801561060957600080fd5b506014546102a29060ff1681565b34801561062357600080fd5b506102d761143c565b34801561063857600080fd5b506102d761147a565b34801561064d57600080fd5b506102d761065c36600461253b565b61158f565b34801561066d57600080fd5b5061069561067c3660046124b1565b6015602052600090815260409020805460019091015482565b604080519283526020830191909152016102ae565b3480156106b657600080fd5b506102d76106c5366004612626565b6115c8565b3480156106d657600080fd5b506102ee6106e5366004612626565b6115f7565b3480156106f657600080fd5b506102ee611768565b34801561070b57600080fd5b5061039860095481565b34801561072157600080fd5b506102d7611775565b34801561073657600080fd5b506102a26107453660046124cc565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561077f57600080fd5b506102d761078e3660046126c2565b6117b3565b34801561079f57600080fd5b506102d76107ae366004612679565b611844565b3480156107bf57600080fd5b506102d76107ce3660046124b1565b611881565b3480156107df57600080fd5b5061039860135481565b60006001600160e01b031982166380ac58cd60e01b148061081a57506001600160e01b03198216635b5e139f60e01b145b8061083557506001600160e01b0319821663780e9d6360e01b145b8061085057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146108895760405162461bcd60e51b81526004016108809061297d565b60405180910390fd5b600f80549115156101000261ff0019909216919091179055565b6060600180546108b290612ae6565b80601f01602080910402602001604051908101604052809291908181526020018280546108de90612ae6565b801561092b5780601f106109005761010080835404028352916020019161092b565b820191906000526020600020905b81548152906001019060200180831161090e57829003601f168201915b5050505050905090565b6000610942826000541190565b6109a45760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610880565b506000908152600560205260409020546001600160a01b031690565b600e80546109cd90612ae6565b80601f01602080910402602001604051908101604052809291908181526020018280546109f990612ae6565b8015610a465780601f10610a1b57610100808354040283529160200191610a46565b820191906000526020600020905b815481529060010190602001808311610a2957829003601f168201915b505050505081565b6000610a598261100d565b9050806001600160a01b0316836001600160a01b03161415610ac85760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610880565b336001600160a01b0382161480610ae45750610ae48133610745565b610b565760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610880565b610b61838383611919565b505050565b610b61838383611975565b6007546001600160a01b03163314610b9b5760405162461bcd60e51b81526004016108809061297d565b8051610bae90600c906020840190612384565b5050565b6000610bbd8361101f565b8210610c165760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610880565b600080549080805b83811015610cc0576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c7157805192505b876001600160a01b0316836001600160a01b03161415610cad5786841415610c9f5750935061085092505050565b83610ca981612b21565b9450505b5080610cb881612b21565b915050610c1e565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610880565b610b618383836040518060200160405280600081525061158f565b600080548210610d995760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610880565b5090565b82600081118015610db05750600b548111155b610dcc5760405162461bcd60e51b8152600401610880906128a4565b600054600954610ddc8383612a30565b1115610dfa5760405162461bcd60e51b8152600401610880906128d2565b600f54610100900460ff1615610e525760405162461bcd60e51b815260206004820152601c60248201527f3a20436f6e747261637420457865637574696f6e207061757365642e000000006044820152606401610880565b60125460ff16610e9d5760405162461bcd60e51b81526020600482015260166024820152751d102bb434ba32b634b9ba1034b9903830bab9b2b21760511b6044820152606401610880565b60008511610ebd5760405162461bcd60e51b81526004016108809061293b565b84601354610ecb9190612a5c565b341015610f0e5760405162461bcd60e51b8152602060048201526011602482015270125b9cdd59999a58da595b9d0811955b99607a1b6044820152606401610880565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610f88858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506011549150849050611cfc565b610fd45760405162461bcd60e51b815260206004820152601760248201527f596f7520617265204e6f742077686974656c69737465640000000000000000006044820152606401610880565b610fde3387611d12565b3360009081526015602052604081206001018054889290611000908490612a30565b9091555050505050505050565b600061101882611d2c565b5192915050565b60006001600160a01b03821661108b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610880565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146110da5760405162461bcd60e51b81526004016108809061297d565b6110e46000611e03565b565b6007546001600160a01b031633146111105760405162461bcd60e51b81526004016108809061297d565b601155565b6007546001600160a01b0316331461113f5760405162461bcd60e51b81526004016108809061297d565b600061114c600247612a48565b6016546040519192506001600160a01b03169082156108fc029083906000818181858888f1935050505061117f57600080fd5b6017546040516001600160a01b039091169082156108fc029083906000818181858888f193505050506111b157600080fd5b50565b600d80546109cd90612ae6565b6007546001600160a01b031633146111eb5760405162461bcd60e51b81526004016108809061297d565b600a55565b6060600280546108b290612ae6565b806000811180156112125750600b548111155b61122e5760405162461bcd60e51b8152600401610880906128a4565b60005460095461123e8383612a30565b111561125c5760405162461bcd60e51b8152600401610880906128d2565b600f54610100900460ff16156112b45760405162461bcd60e51b815260206004820152601c60248201527f3a20436f6e747261637420457865637574696f6e207061757365642e000000006044820152606401610880565b60125460ff16156112fc5760405162461bcd60e51b81526020600482015260126024820152711d1021b7b73a3930b1ba103830bab9b2b21760711b6044820152606401610880565b6000831161131c5760405162461bcd60e51b81526004016108809061293b565b82600a5461132a9190612a5c565b34101561136d5760405162461bcd60e51b8152602060048201526011602482015270125b9cdd59999a58da595b9d0811955b99607a1b6044820152606401610880565b610b618333611e55565b6001600160a01b0382163314156113d05760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610880565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146114665760405162461bcd60e51b81526004016108809061297d565b600f805460ff19811660ff90911615179055565b6007546001600160a01b031633146114a45760405162461bcd60e51b81526004016108809061297d565b600260085414156114f75760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610880565b6002600855604051600090339047908381818185875af1925050503d806000811461153e576040519150601f19603f3d011682016040523d82523d6000602084013e611543565b606091505b50509050806115875760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610880565b506001600855565b61159a848484611975565b6115a684848484611e90565b6115c25760405162461bcd60e51b8152600401610880906129b2565b50505050565b6007546001600160a01b031633146115f25760405162461bcd60e51b81526004016108809061297d565b601355565b6060611604826000541190565b6116685760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610880565b600f5460ff1661170457600e805461167f90612ae6565b80601f01602080910402602001604051908101604052809291908181526020018280546116ab90612ae6565b80156116f85780601f106116cd576101008083540402835291602001916116f8565b820191906000526020600020905b8154815290600101906020018083116116db57829003601f168201915b50505050509050919050565b600061170e611f9e565b9050600081511161172e576040518060200160405280600081525061175c565b8061173884611fad565b600d60405160200161174c93929190612790565b6040516020818303038152906040525b9392505050565b919050565b600c80546109cd90612ae6565b6007546001600160a01b0316331461179f5760405162461bcd60e51b81526004016108809061297d565b6012805460ff19811660ff90911615179055565b816000811180156117c65750600b548111155b6117e25760405162461bcd60e51b8152600401610880906128a4565b6000546009546117f28383612a30565b11156118105760405162461bcd60e51b8152600401610880906128d2565b6007546001600160a01b0316331461183a5760405162461bcd60e51b81526004016108809061297d565b6115c28484611e55565b6007546001600160a01b0316331461186e5760405162461bcd60e51b81526004016108809061297d565b8051610bae90600e906020840190612384565b6007546001600160a01b031633146118ab5760405162461bcd60e51b81526004016108809061297d565b6001600160a01b0381166119105760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610880565b6111b181611e03565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061198082611d2c565b80519091506000906001600160a01b0316336001600160a01b031614806119b75750336119ac84610935565b6001600160a01b0316145b806119c9575081516119c99033610745565b905080611a335760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610880565b846001600160a01b031682600001516001600160a01b031614611aa75760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610880565b6001600160a01b038416611b0b5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610880565b611b1b6000848460000151611919565b6001600160a01b0385166000908152600460205260408120805460019290611b4d9084906001600160801b0316612a7b565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611b9991859116612a05565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611c21846001612a30565b6000818152600360205260409020549091506001600160a01b0316611cb357611c4b816000541190565b15611cb35760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b600082611d0985846120ab565b14949350505050565b610bae82826040518060200160405280600081525061211f565b6040805180820190915260008082526020820152611d4b826000541190565b611daa5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610880565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611df9579392505050565b5060001901611dac565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611e5f8183611d12565b6001600160a01b03811660009081526015602052604081208054849290611e87908490612a30565b90915550505050565b60006001600160a01b0384163b15611f9257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ed4903390899088908890600401612854565b602060405180830381600087803b158015611eee57600080fd5b505af1925050508015611f1e575060408051601f3d908101601f19168201909252611f1b9181019061265c565b60015b611f78573d808015611f4c576040519150601f19603f3d011682016040523d82523d6000602084013e611f51565b606091505b508051611f705760405162461bcd60e51b8152600401610880906129b2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f96565b5060015b949350505050565b6060600c80546108b290612ae6565b606081611fd15750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ffb5780611fe581612b21565b9150611ff49050600a83612a48565b9150611fd5565b60008167ffffffffffffffff81111561201657612016612b92565b6040519080825280601f01601f191660200182016040528015612040576020820181803683370190505b5090505b8415611f9657612055600183612aa3565b9150612062600a86612b3c565b61206d906030612a30565b60f81b81838151811061208257612082612b7c565b60200101906001600160f81b031916908160001a9053506120a4600a86612a48565b9450612044565b600081815b84518110156121175760008582815181106120cd576120cd612b7c565b602002602001015190508083116120f35760008381526020829052604090209250612104565b600081815260208490526040902092505b508061210f81612b21565b9150506120b0565b509392505050565b6000546001600160a01b0384166121825760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610880565b826121e05760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610880565b6121eb816000541190565b156122385760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610880565b6001600160a01b0380851660008181526004602081815260408084208151808301835281546001600160801b038082168352600160801b9182900481168387019081528551808701875284518f018316815290518e0182168188019081528a8a52978752519651811690910295169490941790558051808201825294855267ffffffffffffffff4281168684019081528886526003909352908420945185549251909116600160a01b026001600160e01b03199092169516949094179390931790915582905b858110156123735760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461234b6000888488611e90565b6123675760405162461bcd60e51b8152600401610880906129b2565b600191820191016122fe565b5060009081556115c2915085838684565b82805461239090612ae6565b90600052602060002090601f0160209004810192826123b257600085556123f8565b82601f106123cb57805160ff19168380011785556123f8565b828001600101855582156123f8579182015b828111156123f85782518255916020019190600101906123dd565b50610d999291505b80821115610d995760008155600101612400565b600067ffffffffffffffff8084111561242f5761242f612b92565b604051601f8501601f19908116603f0116810190828211818310171561245757612457612b92565b8160405280935085815286868601111561247057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461176357600080fd5b8035801515811461176357600080fd5b6000602082840312156124c357600080fd5b61175c8261248a565b600080604083850312156124df57600080fd5b6124e88361248a565b91506124f66020840161248a565b90509250929050565b60008060006060848603121561251457600080fd5b61251d8461248a565b925061252b6020850161248a565b9150604084013590509250925092565b6000806000806080858703121561255157600080fd5b61255a8561248a565b93506125686020860161248a565b925060408501359150606085013567ffffffffffffffff81111561258b57600080fd5b8501601f8101871361259c57600080fd5b6125ab87823560208401612414565b91505092959194509250565b600080604083850312156125ca57600080fd5b6125d38361248a565b91506124f6602084016124a1565b600080604083850312156125f457600080fd5b6125fd8361248a565b946020939093013593505050565b60006020828403121561261d57600080fd5b61175c826124a1565b60006020828403121561263857600080fd5b5035919050565b60006020828403121561265157600080fd5b813561175c81612ba8565b60006020828403121561266e57600080fd5b815161175c81612ba8565b60006020828403121561268b57600080fd5b813567ffffffffffffffff8111156126a257600080fd5b8201601f810184136126b357600080fd5b611f9684823560208401612414565b600080604083850312156126d557600080fd5b823591506124f66020840161248a565b6000806000604084860312156126fa57600080fd5b83359250602084013567ffffffffffffffff8082111561271957600080fd5b818601915086601f83011261272d57600080fd5b81358181111561273c57600080fd5b8760208260051b850101111561275157600080fd5b6020830194508093505050509250925092565b6000815180845261277c816020860160208601612aba565b601f01601f19169290920160200192915050565b6000845160206127a38285838a01612aba565b8551918401916127b68184848a01612aba565b8554920191600090600181811c90808316806127d357607f831692505b8583108114156127f157634e487b7160e01b85526022600452602485fd5b808015612805576001811461281657612843565b60ff19851688528388019550612843565b60008b81526020902060005b8581101561283b5781548a820152908401908801612822565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061288790830184612764565b9695505050505050565b60208152600061175c6020830184612764565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b60208082526043908201527f3a204e6f206d6f7265204e46547320746f206d696e742c20646563726561736560408201527f20746865207175616e74697479206f7220636865636b206f7574204f70656e5360608201526232b09760e91b608082015260a00190565b60208082526022908201527f3a20416d6f756e742073686f756c642062652067726561746572207468616e20604082015261181760f11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115612a2757612a27612b50565b01949350505050565b60008219821115612a4357612a43612b50565b500190565b600082612a5757612a57612b66565b500490565b6000816000190483118215151615612a7657612a76612b50565b500290565b60006001600160801b0383811690831681811015612a9b57612a9b612b50565b039392505050565b600082821015612ab557612ab5612b50565b500390565b60005b83811015612ad5578181015183820152602001612abd565b838111156115c25750506000910152565b600181811c90821680612afa57607f821691505b60208210811415612b1b57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b3557612b35612b50565b5060010190565b600082612b4b57612b4b612b66565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146111b157600080fdfea2646970667358221220a3b2359d3c13d04435e8b5274bc4adc9a53719e3190687d122cd20b97979593b64736f6c634300080600330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001b68747470733a2f2f697066732e696f2f697066732f7b6369647d2f0000000000

Deployed Bytecode

0x60806040526004361061027d5760003560e01c8063853828b61161014f578063b88d4fde116100c1578063e7d166eb1161007a578063e7d166eb14610715578063e985e9c51461072a578063efbd73f414610773578063f2c4ce1e14610793578063f2fde38b146107b3578063fc1a1c36146107d357600080fd5b8063b88d4fde14610641578063bbc2756414610661578063beafc89b146106aa578063c87b56dd146106ca578063cfc86f7b146106ea578063d5abeb01146106ff57600080fd5b806395d89b411161011357806395d89b41146105b5578063a0712d68146105ca578063a22cb465146105dd578063a5b65703146105fd578063a8edbdc514610617578063ac4460021461062c57600080fd5b8063853828b61461054457806385fee1681461054c5780638da5cb5b1461056157806391b7f5ed1461057f57806394354fd01461059f57600080fd5b80632eb4a7ab116101f357806361a43d52116101ac57806361a43d52146104a65780636352211e146104b957806370a08231146104d9578063715018a6146104f9578063722e141d1461050e5780637cb647591461052457600080fd5b80632eb4a7ab146103fc5780632f745c591461041257806331ffd6f11461043257806342842e0e1461044c5780634f6ccce71461046c578063518302271461048c57600080fd5b8063095ea7b311610245578063095ea7b31461034857806316c61ccc1461036857806318160ddd14610387578063235b6ea1146103a657806323b872dd146103bc5780632470d4d2146103dc57600080fd5b806301ffc9a71461028257806302329a29146102b757806306fdde03146102d9578063081812fc146102fb578063081c8c4414610333575b600080fd5b34801561028e57600080fd5b506102a261029d36600461263f565b6107e9565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102d76102d236600461260b565b610856565b005b3480156102e557600080fd5b506102ee6108a3565b6040516102ae9190612891565b34801561030757600080fd5b5061031b610316366004612626565b610935565b6040516001600160a01b0390911681526020016102ae565b34801561033f57600080fd5b506102ee6109c0565b34801561035457600080fd5b506102d76103633660046125e1565b610a4e565b34801561037457600080fd5b50600f546102a290610100900460ff1681565b34801561039357600080fd5b506000545b6040519081526020016102ae565b3480156103b257600080fd5b50610398600a5481565b3480156103c857600080fd5b506102d76103d73660046124ff565b610b66565b3480156103e857600080fd5b506102d76103f7366004612679565b610b71565b34801561040857600080fd5b5061039860115481565b34801561041e57600080fd5b5061039861042d3660046125e1565b610bb2565b34801561043e57600080fd5b506012546102a29060ff1681565b34801561045857600080fd5b506102d76104673660046124ff565b610d20565b34801561047857600080fd5b50610398610487366004612626565b610d3b565b34801561049857600080fd5b50600f546102a29060ff1681565b6102d76104b43660046126e5565b610d9d565b3480156104c557600080fd5b5061031b6104d4366004612626565b61100d565b3480156104e557600080fd5b506103986104f43660046124b1565b61101f565b34801561050557600080fd5b506102d76110b0565b34801561051a57600080fd5b5061039860105481565b34801561053057600080fd5b506102d761053f366004612626565b6110e6565b6102d7611115565b34801561055857600080fd5b506102ee6111b4565b34801561056d57600080fd5b506007546001600160a01b031661031b565b34801561058b57600080fd5b506102d761059a366004612626565b6111c1565b3480156105ab57600080fd5b50610398600b5481565b3480156105c157600080fd5b506102ee6111f0565b6102d76105d8366004612626565b6111ff565b3480156105e957600080fd5b506102d76105f83660046125b7565b611377565b34801561060957600080fd5b506014546102a29060ff1681565b34801561062357600080fd5b506102d761143c565b34801561063857600080fd5b506102d761147a565b34801561064d57600080fd5b506102d761065c36600461253b565b61158f565b34801561066d57600080fd5b5061069561067c3660046124b1565b6015602052600090815260409020805460019091015482565b604080519283526020830191909152016102ae565b3480156106b657600080fd5b506102d76106c5366004612626565b6115c8565b3480156106d657600080fd5b506102ee6106e5366004612626565b6115f7565b3480156106f657600080fd5b506102ee611768565b34801561070b57600080fd5b5061039860095481565b34801561072157600080fd5b506102d7611775565b34801561073657600080fd5b506102a26107453660046124cc565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561077f57600080fd5b506102d761078e3660046126c2565b6117b3565b34801561079f57600080fd5b506102d76107ae366004612679565b611844565b3480156107bf57600080fd5b506102d76107ce3660046124b1565b611881565b3480156107df57600080fd5b5061039860135481565b60006001600160e01b031982166380ac58cd60e01b148061081a57506001600160e01b03198216635b5e139f60e01b145b8061083557506001600160e01b0319821663780e9d6360e01b145b8061085057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146108895760405162461bcd60e51b81526004016108809061297d565b60405180910390fd5b600f80549115156101000261ff0019909216919091179055565b6060600180546108b290612ae6565b80601f01602080910402602001604051908101604052809291908181526020018280546108de90612ae6565b801561092b5780601f106109005761010080835404028352916020019161092b565b820191906000526020600020905b81548152906001019060200180831161090e57829003601f168201915b5050505050905090565b6000610942826000541190565b6109a45760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610880565b506000908152600560205260409020546001600160a01b031690565b600e80546109cd90612ae6565b80601f01602080910402602001604051908101604052809291908181526020018280546109f990612ae6565b8015610a465780601f10610a1b57610100808354040283529160200191610a46565b820191906000526020600020905b815481529060010190602001808311610a2957829003601f168201915b505050505081565b6000610a598261100d565b9050806001600160a01b0316836001600160a01b03161415610ac85760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610880565b336001600160a01b0382161480610ae45750610ae48133610745565b610b565760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610880565b610b61838383611919565b505050565b610b61838383611975565b6007546001600160a01b03163314610b9b5760405162461bcd60e51b81526004016108809061297d565b8051610bae90600c906020840190612384565b5050565b6000610bbd8361101f565b8210610c165760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610880565b600080549080805b83811015610cc0576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c7157805192505b876001600160a01b0316836001600160a01b03161415610cad5786841415610c9f5750935061085092505050565b83610ca981612b21565b9450505b5080610cb881612b21565b915050610c1e565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610880565b610b618383836040518060200160405280600081525061158f565b600080548210610d995760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610880565b5090565b82600081118015610db05750600b548111155b610dcc5760405162461bcd60e51b8152600401610880906128a4565b600054600954610ddc8383612a30565b1115610dfa5760405162461bcd60e51b8152600401610880906128d2565b600f54610100900460ff1615610e525760405162461bcd60e51b815260206004820152601c60248201527f3a20436f6e747261637420457865637574696f6e207061757365642e000000006044820152606401610880565b60125460ff16610e9d5760405162461bcd60e51b81526020600482015260166024820152751d102bb434ba32b634b9ba1034b9903830bab9b2b21760511b6044820152606401610880565b60008511610ebd5760405162461bcd60e51b81526004016108809061293b565b84601354610ecb9190612a5c565b341015610f0e5760405162461bcd60e51b8152602060048201526011602482015270125b9cdd59999a58da595b9d0811955b99607a1b6044820152606401610880565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610f88858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506011549150849050611cfc565b610fd45760405162461bcd60e51b815260206004820152601760248201527f596f7520617265204e6f742077686974656c69737465640000000000000000006044820152606401610880565b610fde3387611d12565b3360009081526015602052604081206001018054889290611000908490612a30565b9091555050505050505050565b600061101882611d2c565b5192915050565b60006001600160a01b03821661108b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610880565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146110da5760405162461bcd60e51b81526004016108809061297d565b6110e46000611e03565b565b6007546001600160a01b031633146111105760405162461bcd60e51b81526004016108809061297d565b601155565b6007546001600160a01b0316331461113f5760405162461bcd60e51b81526004016108809061297d565b600061114c600247612a48565b6016546040519192506001600160a01b03169082156108fc029083906000818181858888f1935050505061117f57600080fd5b6017546040516001600160a01b039091169082156108fc029083906000818181858888f193505050506111b157600080fd5b50565b600d80546109cd90612ae6565b6007546001600160a01b031633146111eb5760405162461bcd60e51b81526004016108809061297d565b600a55565b6060600280546108b290612ae6565b806000811180156112125750600b548111155b61122e5760405162461bcd60e51b8152600401610880906128a4565b60005460095461123e8383612a30565b111561125c5760405162461bcd60e51b8152600401610880906128d2565b600f54610100900460ff16156112b45760405162461bcd60e51b815260206004820152601c60248201527f3a20436f6e747261637420457865637574696f6e207061757365642e000000006044820152606401610880565b60125460ff16156112fc5760405162461bcd60e51b81526020600482015260126024820152711d1021b7b73a3930b1ba103830bab9b2b21760711b6044820152606401610880565b6000831161131c5760405162461bcd60e51b81526004016108809061293b565b82600a5461132a9190612a5c565b34101561136d5760405162461bcd60e51b8152602060048201526011602482015270125b9cdd59999a58da595b9d0811955b99607a1b6044820152606401610880565b610b618333611e55565b6001600160a01b0382163314156113d05760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610880565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146114665760405162461bcd60e51b81526004016108809061297d565b600f805460ff19811660ff90911615179055565b6007546001600160a01b031633146114a45760405162461bcd60e51b81526004016108809061297d565b600260085414156114f75760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610880565b6002600855604051600090339047908381818185875af1925050503d806000811461153e576040519150601f19603f3d011682016040523d82523d6000602084013e611543565b606091505b50509050806115875760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610880565b506001600855565b61159a848484611975565b6115a684848484611e90565b6115c25760405162461bcd60e51b8152600401610880906129b2565b50505050565b6007546001600160a01b031633146115f25760405162461bcd60e51b81526004016108809061297d565b601355565b6060611604826000541190565b6116685760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610880565b600f5460ff1661170457600e805461167f90612ae6565b80601f01602080910402602001604051908101604052809291908181526020018280546116ab90612ae6565b80156116f85780601f106116cd576101008083540402835291602001916116f8565b820191906000526020600020905b8154815290600101906020018083116116db57829003601f168201915b50505050509050919050565b600061170e611f9e565b9050600081511161172e576040518060200160405280600081525061175c565b8061173884611fad565b600d60405160200161174c93929190612790565b6040516020818303038152906040525b9392505050565b919050565b600c80546109cd90612ae6565b6007546001600160a01b0316331461179f5760405162461bcd60e51b81526004016108809061297d565b6012805460ff19811660ff90911615179055565b816000811180156117c65750600b548111155b6117e25760405162461bcd60e51b8152600401610880906128a4565b6000546009546117f28383612a30565b11156118105760405162461bcd60e51b8152600401610880906128d2565b6007546001600160a01b0316331461183a5760405162461bcd60e51b81526004016108809061297d565b6115c28484611e55565b6007546001600160a01b0316331461186e5760405162461bcd60e51b81526004016108809061297d565b8051610bae90600e906020840190612384565b6007546001600160a01b031633146118ab5760405162461bcd60e51b81526004016108809061297d565b6001600160a01b0381166119105760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610880565b6111b181611e03565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061198082611d2c565b80519091506000906001600160a01b0316336001600160a01b031614806119b75750336119ac84610935565b6001600160a01b0316145b806119c9575081516119c99033610745565b905080611a335760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610880565b846001600160a01b031682600001516001600160a01b031614611aa75760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610880565b6001600160a01b038416611b0b5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610880565b611b1b6000848460000151611919565b6001600160a01b0385166000908152600460205260408120805460019290611b4d9084906001600160801b0316612a7b565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611b9991859116612a05565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611c21846001612a30565b6000818152600360205260409020549091506001600160a01b0316611cb357611c4b816000541190565b15611cb35760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b600082611d0985846120ab565b14949350505050565b610bae82826040518060200160405280600081525061211f565b6040805180820190915260008082526020820152611d4b826000541190565b611daa5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610880565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611df9579392505050565b5060001901611dac565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611e5f8183611d12565b6001600160a01b03811660009081526015602052604081208054849290611e87908490612a30565b90915550505050565b60006001600160a01b0384163b15611f9257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ed4903390899088908890600401612854565b602060405180830381600087803b158015611eee57600080fd5b505af1925050508015611f1e575060408051601f3d908101601f19168201909252611f1b9181019061265c565b60015b611f78573d808015611f4c576040519150601f19603f3d011682016040523d82523d6000602084013e611f51565b606091505b508051611f705760405162461bcd60e51b8152600401610880906129b2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f96565b5060015b949350505050565b6060600c80546108b290612ae6565b606081611fd15750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ffb5780611fe581612b21565b9150611ff49050600a83612a48565b9150611fd5565b60008167ffffffffffffffff81111561201657612016612b92565b6040519080825280601f01601f191660200182016040528015612040576020820181803683370190505b5090505b8415611f9657612055600183612aa3565b9150612062600a86612b3c565b61206d906030612a30565b60f81b81838151811061208257612082612b7c565b60200101906001600160f81b031916908160001a9053506120a4600a86612a48565b9450612044565b600081815b84518110156121175760008582815181106120cd576120cd612b7c565b602002602001015190508083116120f35760008381526020829052604090209250612104565b600081815260208490526040902092505b508061210f81612b21565b9150506120b0565b509392505050565b6000546001600160a01b0384166121825760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610880565b826121e05760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610880565b6121eb816000541190565b156122385760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610880565b6001600160a01b0380851660008181526004602081815260408084208151808301835281546001600160801b038082168352600160801b9182900481168387019081528551808701875284518f018316815290518e0182168188019081528a8a52978752519651811690910295169490941790558051808201825294855267ffffffffffffffff4281168684019081528886526003909352908420945185549251909116600160a01b026001600160e01b03199092169516949094179390931790915582905b858110156123735760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461234b6000888488611e90565b6123675760405162461bcd60e51b8152600401610880906129b2565b600191820191016122fe565b5060009081556115c2915085838684565b82805461239090612ae6565b90600052602060002090601f0160209004810192826123b257600085556123f8565b82601f106123cb57805160ff19168380011785556123f8565b828001600101855582156123f8579182015b828111156123f85782518255916020019190600101906123dd565b50610d999291505b80821115610d995760008155600101612400565b600067ffffffffffffffff8084111561242f5761242f612b92565b604051601f8501601f19908116603f0116810190828211818310171561245757612457612b92565b8160405280935085815286868601111561247057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461176357600080fd5b8035801515811461176357600080fd5b6000602082840312156124c357600080fd5b61175c8261248a565b600080604083850312156124df57600080fd5b6124e88361248a565b91506124f66020840161248a565b90509250929050565b60008060006060848603121561251457600080fd5b61251d8461248a565b925061252b6020850161248a565b9150604084013590509250925092565b6000806000806080858703121561255157600080fd5b61255a8561248a565b93506125686020860161248a565b925060408501359150606085013567ffffffffffffffff81111561258b57600080fd5b8501601f8101871361259c57600080fd5b6125ab87823560208401612414565b91505092959194509250565b600080604083850312156125ca57600080fd5b6125d38361248a565b91506124f6602084016124a1565b600080604083850312156125f457600080fd5b6125fd8361248a565b946020939093013593505050565b60006020828403121561261d57600080fd5b61175c826124a1565b60006020828403121561263857600080fd5b5035919050565b60006020828403121561265157600080fd5b813561175c81612ba8565b60006020828403121561266e57600080fd5b815161175c81612ba8565b60006020828403121561268b57600080fd5b813567ffffffffffffffff8111156126a257600080fd5b8201601f810184136126b357600080fd5b611f9684823560208401612414565b600080604083850312156126d557600080fd5b823591506124f66020840161248a565b6000806000604084860312156126fa57600080fd5b83359250602084013567ffffffffffffffff8082111561271957600080fd5b818601915086601f83011261272d57600080fd5b81358181111561273c57600080fd5b8760208260051b850101111561275157600080fd5b6020830194508093505050509250925092565b6000815180845261277c816020860160208601612aba565b601f01601f19169290920160200192915050565b6000845160206127a38285838a01612aba565b8551918401916127b68184848a01612aba565b8554920191600090600181811c90808316806127d357607f831692505b8583108114156127f157634e487b7160e01b85526022600452602485fd5b808015612805576001811461281657612843565b60ff19851688528388019550612843565b60008b81526020902060005b8581101561283b5781548a820152908401908801612822565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061288790830184612764565b9695505050505050565b60208152600061175c6020830184612764565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b60208082526043908201527f3a204e6f206d6f7265204e46547320746f206d696e742c20646563726561736560408201527f20746865207175616e74697479206f7220636865636b206f7574204f70656e5360608201526232b09760e91b608082015260a00190565b60208082526022908201527f3a20416d6f756e742073686f756c642062652067726561746572207468616e20604082015261181760f11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115612a2757612a27612b50565b01949350505050565b60008219821115612a4357612a43612b50565b500190565b600082612a5757612a57612b66565b500490565b6000816000190483118215151615612a7657612a76612b50565b500290565b60006001600160801b0383811690831681811015612a9b57612a9b612b50565b039392505050565b600082821015612ab557612ab5612b50565b500390565b60005b83811015612ad5578181015183820152602001612abd565b838111156115c25750506000910152565b600181811c90821680612afa57607f821691505b60208210811415612b1b57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b3557612b35612b50565b5060010190565b600082612b4b57612b4b612b66565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146111b157600080fdfea2646970667358221220a3b2359d3c13d04435e8b5274bc4adc9a53719e3190687d122cd20b97979593b64736f6c63430008060033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001b68747470733a2f2f697066732e696f2f697066732f7b6369647d2f0000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): https://ipfs.io/ipfs/{cid}/

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000001b
Arg [2] : 68747470733a2f2f697066732e696f2f697066732f7b6369647d2f0000000000


Deployed Bytecode Sourcemap

44851:4811:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32527:370;;;;;;;;;;-1:-1:-1;32527:370:0;;;;;:::i;:::-;;:::i;:::-;;;8536:14:1;;8529:22;8511:41;;8499:2;8484:18;32527:370:0;;;;;;;;48541:76;;;;;;;;;;-1:-1:-1;48541:76:0;;;;;:::i;:::-;;:::i;:::-;;34126:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35651:204::-;;;;;;;;;;-1:-1:-1;35651:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7834:32:1;;;7816:51;;7804:2;7789:18;35651:204:0;7771:102:1;45190:28:0;;;;;;;;;;;;;:::i;35214:379::-;;;;;;;;;;-1:-1:-1;35214:379:0;;;;;:::i;:::-;;:::i;45260:27::-;;;;;;;;;;-1:-1:-1;45260:27:0;;;;;;;;;;;31088:94;;;;;;;;;;-1:-1:-1;31141:7:0;31164:12;31088:94;;;8709:25:1;;;8697:2;8682:18;31088:94:0;8664:76:1;45001:34:0;;;;;;;;;;;;;;;;36501:142;;;;;;;;;;-1:-1:-1;36501:142:0;;;;;:::i;:::-;;:::i;48812:103::-;;;;;;;;;;-1:-1:-1;48812:103:0;;;;;:::i;:::-;;:::i;45359:94::-;;;;;;;;;;;;;;;;31719:744;;;;;;;;;;-1:-1:-1;31719:744:0;;;;;:::i;:::-;;:::i;45460:33::-;;;;;;;;;;-1:-1:-1;45460:33:0;;;;;;;;36706:157;;;;;;;;;;-1:-1:-1;36706:157:0;;;;;:::i;:::-;;:::i;31251:177::-;;;;;;;;;;-1:-1:-1;31251:177:0;;;;;:::i;:::-;;:::i;45225:28::-;;;;;;;;;;-1:-1:-1;45225:28:0;;;;;;;;46954:672;;;;;;:::i;:::-;;:::i;33949:118::-;;;;;;;;;;-1:-1:-1;33949:118:0;;;;;:::i;:::-;;:::i;32953:211::-;;;;;;;;;;-1:-1:-1;32953:211:0;;;;;:::i;:::-;;:::i;9913:103::-;;;;;;;;;;;;;:::i;45317:35::-;;;;;;;;;;;;;;;;49140:102;;;;;;;;;;-1:-1:-1;49140:102:0;;;;;:::i;:::-;;:::i;49453:196::-;;;:::i;45146:37::-;;;;;;;;;;;;;:::i;9262:87::-;;;;;;;;;;-1:-1:-1;9335:6:0;;-1:-1:-1;;;;;9335:6:0;9262:87;;48925:91;;;;;;;;;;-1:-1:-1;48925:91:0;;;;;:::i;:::-;;:::i;45042:37::-;;;;;;;;;;;;;;;;34281:98;;;;;;;;;;;;;:::i;46544:398::-;;;;;;:::i;:::-;;:::i;35919:274::-;;;;;;;;;;-1:-1:-1;35919:274:0;;;;;:::i;:::-;;:::i;45551:34::-;;;;;;;;;;-1:-1:-1;45551:34:0;;;;;;;;48725:79;;;;;;;;;;;;;:::i;49254:191::-;;;;;;;;;;;;;:::i;36926:311::-;;;;;;;;;;-1:-1:-1;36926:311:0;;;;;:::i;:::-;;:::i;45682:51::-;;;;;;;;;;-1:-1:-1;45682:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;21075:25:1;;;21131:2;21116:18;;21109:34;;;;21048:18;45682:51:0;21030:119:1;49024:108:0;;;;;;;;;;-1:-1:-1;49024:108:0;;;;;:::i;:::-;;:::i;47925:474::-;;;;;;;;;;-1:-1:-1;47925:474:0;;;;;:::i;:::-;;:::i;45112:27::-;;;;;;;;;;;;;:::i;44962:32::-;;;;;;;;;;;;;;;;48625:92;;;;;;;;;;;;;:::i;36256:186::-;;;;;;;;;;-1:-1:-1;36256:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;36401:25:0;;;36378:4;36401:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36256:186;47634:161;;;;;;;;;;-1:-1:-1;47634:161:0;;;;;:::i;:::-;;:::i;48407:126::-;;;;;;;;;;-1:-1:-1;48407:126:0;;;;;:::i;:::-;;:::i;10171:201::-;;;;;;;;;;-1:-1:-1;10171:201:0;;;;;:::i;:::-;;:::i;45500:42::-;;;;;;;;;;;;;;;;32527:370;32654:4;-1:-1:-1;;;;;;32684:40:0;;-1:-1:-1;;;32684:40:0;;:99;;-1:-1:-1;;;;;;;32735:48:0;;-1:-1:-1;;;32735:48:0;32684:99;:160;;;-1:-1:-1;;;;;;;32794:50:0;;-1:-1:-1;;;32794:50:0;32684:160;:207;;;-1:-1:-1;;;;;;;;;;22155:40:0;;;32855:36;32670:221;32527:370;-1:-1:-1;;32527:370:0:o;48541:76::-;9335:6;;-1:-1:-1;;;;;9335:6:0;8066:10;9482:23;9474:68;;;;-1:-1:-1;;;9474:68:0;;;;;;;:::i;:::-;;;;;;;;;48596:7:::1;:13:::0;;;::::1;;;;-1:-1:-1::0;;48596:13:0;;::::1;::::0;;;::::1;::::0;;48541:76::o;34126:94::-;34180:13;34209:5;34202:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34126:94;:::o;35651:204::-;35719:7;35743:16;35751:7;37533:4;37563:12;-1:-1:-1;37553:22:0;37476:105;35743:16;35735:74;;;;-1:-1:-1;;;35735:74:0;;20507:2:1;35735:74:0;;;20489:21:1;20546:2;20526:18;;;20519:30;20585:34;20565:18;;;20558:62;-1:-1:-1;;;20636:18:1;;;20629:43;20689:19;;35735:74:0;20479:235:1;35735:74:0;-1:-1:-1;35825:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35825:24:0;;35651:204::o;45190:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35214:379::-;35283:13;35299:24;35315:7;35299:15;:24::i;:::-;35283:40;;35344:5;-1:-1:-1;;;;;35338:11:0;:2;-1:-1:-1;;;;;35338:11:0;;;35330:58;;;;-1:-1:-1;;;35330:58:0;;16282:2:1;35330:58:0;;;16264:21:1;16321:2;16301:18;;;16294:30;16360:34;16340:18;;;16333:62;-1:-1:-1;;;16411:18:1;;;16404:32;16453:19;;35330:58:0;16254:224:1;35330:58:0;8066:10;-1:-1:-1;;;;;35413:21:0;;;;:62;;-1:-1:-1;35438:37:0;35455:5;8066:10;36256:186;:::i;35438:37::-;35397:153;;;;-1:-1:-1;;;35397:153:0;;13083:2:1;35397:153:0;;;13065:21:1;13122:2;13102:18;;;13095:30;13161:34;13141:18;;;13134:62;13232:27;13212:18;;;13205:55;13277:19;;35397:153:0;13055:247:1;35397:153:0;35559:28;35568:2;35572:7;35581:5;35559:8;:28::i;:::-;35276:317;35214:379;;:::o;36501:142::-;36609:28;36619:4;36625:2;36629:7;36609:9;:28::i;48812:103::-;9335:6;;-1:-1:-1;;;;;9335:6:0;8066:10;9482:23;9474:68;;;;-1:-1:-1;;;9474:68:0;;;;;;;:::i;:::-;48886:21;;::::1;::::0;:13:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48812:103:::0;:::o;31719:744::-;31828:7;31863:16;31873:5;31863:9;:16::i;:::-;31855:5;:24;31847:71;;;;-1:-1:-1;;;31847:71:0;;9171:2:1;31847:71:0;;;9153:21:1;9210:2;9190:18;;;9183:30;9249:34;9229:18;;;9222:62;-1:-1:-1;;;9300:18:1;;;9293:32;9342:19;;31847:71:0;9143:224:1;31847:71:0;31925:22;31164:12;;;31925:22;;32045:350;32069:14;32065:1;:18;32045:350;;;32099:31;32133:14;;;:11;:14;;;;;;;;;32099:48;;;;;;;;;-1:-1:-1;;;;;32099:48:0;;;;;-1:-1:-1;;;32099:48:0;;;;;;;;;;;;32160:28;32156:89;;32221:14;;;-1:-1:-1;32156:89:0;32278:5;-1:-1:-1;;;;;32257:26:0;:17;-1:-1:-1;;;;;32257:26:0;;32253:135;;;32315:5;32300:11;:20;32296:59;;;-1:-1:-1;32342:1:0;-1:-1:-1;32335:8:0;;-1:-1:-1;;;32335:8:0;32296:59;32365:13;;;;:::i;:::-;;;;32253:135;-1:-1:-1;32085:3:0;;;;:::i;:::-;;;;32045:350;;;-1:-1:-1;32401:56:0;;-1:-1:-1;;;32401:56:0;;18965:2:1;32401:56:0;;;18947:21:1;19004:2;18984:18;;;18977:30;19043:34;19023:18;;;19016:62;-1:-1:-1;;;19094:18:1;;;19087:44;19148:19;;32401:56:0;18937:236:1;36706:157:0;36818:39;36835:4;36841:2;36845:7;36818:39;;;;;;;;;;;;:16;:39::i;31251:177::-;31318:7;31164:12;;31342:5;:21;31334:69;;;;-1:-1:-1;;;31334:69:0;;11450:2:1;31334:69:0;;;11432:21:1;11489:2;11469:18;;;11462:30;11528:34;11508:18;;;11501:62;-1:-1:-1;;;11579:18:1;;;11572:33;11622:19;;31334:69:0;11422:225:1;31334:69:0;-1:-1:-1;31417:5:0;31251:177::o;46954:672::-;47062:11;46114:1;46100:11;:15;:52;;;;;46134:18;;46119:11;:33;;46100:52;46092:85;;;;-1:-1:-1;;;46092:85:0;;;;;;;:::i;:::-;46186:14;31164:12;46257:9;;46233:20;46242:11;31164:12;46233:20;:::i;:::-;:33;;46225:114;;;;-1:-1:-1;;;46225:114:0;;;;;;;:::i;:::-;47095:7:::1;::::0;::::1;::::0;::::1;;;47094:8;47086:49;;;::::0;-1:-1:-1;;;47086:49:0;;9574:2:1;47086:49:0::1;::::0;::::1;9556:21:1::0;9613:2;9593:18;;;9586:30;9652;9632:18;;;9625:58;9700:18;;47086:49:0::1;9546:178:1::0;47086:49:0::1;47154:13;::::0;::::1;;47146:48;;;::::0;-1:-1:-1;;;47146:48:0;;19380:2:1;47146:48:0::1;::::0;::::1;19362:21:1::0;19419:2;19399:18;;;19392:30;-1:-1:-1;;;19438:18:1;;;19431:52;19500:18;;47146:48:0::1;19352:172:1::0;47146:48:0::1;47227:1;47213:11;:15;47205:62;;;;-1:-1:-1::0;;;47205:62:0::1;;;;;;;:::i;:::-;47316:11;47299:14;;:28;;;;:::i;:::-;47286:9;:41;;47278:70;;;::::0;-1:-1:-1;;;47278:70:0;;17808:2:1;47278:70:0::1;::::0;::::1;17790:21:1::0;17847:2;17827:18;;;17820:30;-1:-1:-1;;;17866:18:1;;;17859:47;17923:18;;47278:70:0::1;17780:167:1::0;47278:70:0::1;47386:28;::::0;-1:-1:-1;;47403:10:0::1;5843:2:1::0;5839:15;5835:53;47386:28:0::1;::::0;::::1;5823:66:1::0;47361:12:0::1;::::0;5905::1;;47386:28:0::1;;;;;;;;;;;;47376:39;;;;;;47361:54;;47434:50;47453:12;;47434:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;47467:10:0::1;::::0;;-1:-1:-1;47479:4:0;;-1:-1:-1;47434:18:0::1;:50::i;:::-;47426:86;;;::::0;-1:-1:-1;;;47426:86:0;;11098:2:1;47426:86:0::1;::::0;::::1;11080:21:1::0;11137:2;11117:18;;;11110:30;11176:25;11156:18;;;11149:53;11219:18;;47426:86:0::1;11070:173:1::0;47426:86:0::1;47525:34;47535:10;47547:11;47525:9;:34::i;:::-;47583:10;47570:24;::::0;;;:12:::1;:24;::::0;;;;:35:::1;;:48:::0;;47607:11;;47570:24;:48:::1;::::0;47607:11;;47570:48:::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;;46954:672:0:o;33949:118::-;34013:7;34036:20;34048:7;34036:11;:20::i;:::-;:25;;33949:118;-1:-1:-1;;33949:118:0:o;32953:211::-;33017:7;-1:-1:-1;;;;;33041:19:0;;33033:75;;;;-1:-1:-1;;;33033:75:0;;13509:2:1;33033:75:0;;;13491:21:1;13548:2;13528:18;;;13521:30;13587:34;13567:18;;;13560:62;-1:-1:-1;;;13638:18:1;;;13631:41;13689:19;;33033:75:0;13481:233:1;33033:75:0;-1:-1:-1;;;;;;33130:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;33130:27:0;;32953:211::o;9913:103::-;9335:6;;-1:-1:-1;;;;;9335:6:0;8066:10;9482:23;9474:68;;;;-1:-1:-1;;;9474:68:0;;;;;;;:::i;:::-;9978:30:::1;10005:1;9978:18;:30::i;:::-;9913:103::o:0;49140:102::-;9335:6;;-1:-1:-1;;;;;9335:6:0;8066:10;9482:23;9474:68;;;;-1:-1:-1;;;9474:68:0;;;;;;;:::i;:::-;49211:10:::1;:23:::0;49140:102::o;49453:196::-;9335:6;;-1:-1:-1;;;;;9335:6:0;8066:10;9482:23;9474:68;;;;-1:-1:-1;;;9474:68:0;;;;;;;:::i;:::-;49514:13:::1;49530:25;49554:1;49530:21;:25;:::i;:::-;49582:2;::::0;49574:23:::1;::::0;49514:41;;-1:-1:-1;;;;;;49582:2:0::1;::::0;49574:23;::::1;;;::::0;49514:41;;49582:2:::1;49574:23:::0;49582:2;49574:23;49514:41;49582:2;49574:23;::::1;;;;;;49566:32;;;::::0;::::1;;49625:2;::::0;49617:23:::1;::::0;-1:-1:-1;;;;;49625:2:0;;::::1;::::0;49617:23;::::1;;;::::0;49634:5;;49625:2:::1;49617:23:::0;49625:2;49617:23;49634:5;49625:2;49617:23;::::1;;;;;;49609:32;;;::::0;::::1;;49503:146;49453:196::o:0;45146:37::-;;;;;;;:::i;48925:91::-;9335:6;;-1:-1:-1;;;;;9335:6:0;8066:10;9482:23;9474:68;;;;-1:-1:-1;;;9474:68:0;;;;;;;:::i;:::-;48991:6:::1;:17:::0;48925:91::o;34281:98::-;34337:13;34366:7;34359:14;;;;;:::i;46544:398::-;46609:11;46114:1;46100:11;:15;:52;;;;;46134:18;;46119:11;:33;;46100:52;46092:85;;;;-1:-1:-1;;;46092:85:0;;;;;;;:::i;:::-;46186:14;31164:12;46257:9;;46233:20;46242:11;31164:12;46233:20;:::i;:::-;:33;;46225:114;;;;-1:-1:-1;;;46225:114:0;;;;;;;:::i;:::-;46642:7:::1;::::0;::::1;::::0;::::1;;;46641:8;46633:49;;;::::0;-1:-1:-1;;;46633:49:0;;9574:2:1;46633:49:0::1;::::0;::::1;9556:21:1::0;9613:2;9593:18;;;9586:30;9652;9632:18;;;9625:58;9700:18;;46633:49:0::1;9546:178:1::0;46633:49:0::1;46702:13;::::0;::::1;;46701:14;46693:45;;;::::0;-1:-1:-1;;;46693:45:0;;12260:2:1;46693:45:0::1;::::0;::::1;12242:21:1::0;12299:2;12279:18;;;12272:30;-1:-1:-1;;;12318:18:1;;;12311:48;12376:18;;46693:45:0::1;12232:168:1::0;46693:45:0::1;46771:1;46757:11;:15;46749:62;;;;-1:-1:-1::0;;;46749:62:0::1;;;;;;;:::i;:::-;46852:11;46843:6;;:20;;;;:::i;:::-;46830:9;:33;;46822:62;;;::::0;-1:-1:-1;;;46822:62:0;;17808:2:1;46822:62:0::1;::::0;::::1;17790:21:1::0;17847:2;17827:18;;;17820:30;-1:-1:-1;;;17866:18:1;;;17859:47;17923:18;;46822:62:0::1;17780:167:1::0;46822:62:0::1;46895:36;46907:11;46920:10;46895:11;:36::i;35919:274::-:0;-1:-1:-1;;;;;36010:24:0;;8066:10;36010:24;;36002:63;;;;-1:-1:-1;;;36002:63:0;;15508:2:1;36002:63:0;;;15490:21:1;15547:2;15527:18;;;15520:30;15586:28;15566:18;;;15559:56;15632:18;;36002:63:0;15480:176:1;36002:63:0;8066:10;36074:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;36074:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;36074:53:0;;;;;;;;;;36139:48;;8511:41:1;;;36074:42:0;;8066:10;36139:48;;8484:18:1;36139:48:0;;;;;;;35919:274;;:::o;48725:79::-;9335:6;;-1:-1:-1;;;;;9335:6:0;8066:10;9482:23;9474:68;;;;-1:-1:-1;;;9474:68:0;;;;;;;:::i;:::-;48788:8:::1;::::0;;-1:-1:-1;;48776:20:0;::::1;48788:8;::::0;;::::1;48787:9;48776:20;::::0;;48725:79::o;49254:191::-;9335:6;;-1:-1:-1;;;;;9335:6:0;8066:10;9482:23;9474:68;;;;-1:-1:-1;;;9474:68:0;;;;;;;:::i;:::-;1847:1:::1;2445:7;;:19;;2437:63;;;::::0;-1:-1:-1;;;2437:63:0;;19731:2:1;2437:63:0::1;::::0;::::1;19713:21:1::0;19770:2;19750:18;;;19743:30;19809:33;19789:18;;;19782:61;19860:18;;2437:63:0::1;19703:181:1::0;2437:63:0::1;1847:1;2578:7;:18:::0;49341:49:::2;::::0;49323:12:::2;::::0;49341:10:::2;::::0;49364:21:::2;::::0;49323:12;49341:49;49323:12;49341:49;49364:21;49341:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49322:68;;;49409:7;49401:36;;;::::0;-1:-1:-1;;;49401:36:0;;16685:2:1;49401:36:0::2;::::0;::::2;16667:21:1::0;16724:2;16704:18;;;16697:30;-1:-1:-1;;;16743:18:1;;;16736:46;16799:18;;49401:36:0::2;16657:166:1::0;49401:36:0::2;-1:-1:-1::0;1803:1:0::1;2757:7;:22:::0;49254:191::o;36926:311::-;37063:28;37073:4;37079:2;37083:7;37063:9;:28::i;:::-;37114:48;37137:4;37143:2;37147:7;37156:5;37114:22;:48::i;:::-;37098:133;;;;-1:-1:-1;;;37098:133:0;;;;;;;:::i;:::-;36926:311;;;;:::o;49024:108::-;9335:6;;-1:-1:-1;;;;;9335:6:0;8066:10;9482:23;9474:68;;;;-1:-1:-1;;;9474:68:0;;;;;;;:::i;:::-;49099:14:::1;:25:::0;49024:108::o;47925:474::-;47998:13;48032:16;48040:7;37533:4;37563:12;-1:-1:-1;37553:22:0;37476:105;48032:16;48024:76;;;;-1:-1:-1;;;48024:76:0;;15092:2:1;48024:76:0;;;15074:21:1;15131:2;15111:18;;;15104:30;15170:34;15150:18;;;15143:62;-1:-1:-1;;;15221:18:1;;;15214:45;15276:19;;48024:76:0;15064:237:1;48024:76:0;48115:8;;;;48111:281;;48156:14;48149:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47925:474;;;:::o;48111:281::-;48203:28;48234:10;:8;:10::i;:::-;48203:41;;48297:1;48272:14;48266:28;:32;:114;;;;;;;;;;;;;;;;;48325:14;48341:18;:7;:16;:18::i;:::-;48360:13;48308:66;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48266:114;48259:121;47925:474;-1:-1:-1;;;47925:474:0:o;48111:281::-;47925:474;;;:::o;45112:27::-;;;;;;;:::i;48625:92::-;9335:6;;-1:-1:-1;;;;;9335:6:0;8066:10;9482:23;9474:68;;;;-1:-1:-1;;;9474:68:0;;;;;;;:::i;:::-;48696:13:::1;::::0;;-1:-1:-1;;48679:30:0;::::1;48696:13;::::0;;::::1;48695:14;48679:30;::::0;;48625:92::o;47634:161::-;47720:11;46114:1;46100:11;:15;:52;;;;;46134:18;;46119:11;:33;;46100:52;46092:85;;;;-1:-1:-1;;;46092:85:0;;;;;;;:::i;:::-;46186:14;31164:12;46257:9;;46233:20;46242:11;31164:12;46233:20;:::i;:::-;:33;;46225:114;;;;-1:-1:-1;;;46225:114:0;;;;;;;:::i;:::-;9335:6;;-1:-1:-1;;;;;9335:6:0;8066:10;9482:23:::1;9474:68;;;;-1:-1:-1::0;;;9474:68:0::1;;;;;;;:::i;:::-;47752:35:::2;47764:11;47777:9;47752:11;:35::i;48407:126::-:0;9335:6;;-1:-1:-1;;;;;9335:6:0;8066:10;9482:23;9474:68;;;;-1:-1:-1;;;9474:68:0;;;;;;;:::i;:::-;48493:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;10171:201::-:0;9335:6;;-1:-1:-1;;;;;9335:6:0;8066:10;9482:23;9474:68;;;;-1:-1:-1;;;9474:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10260:22:0;::::1;10252:73;;;::::0;-1:-1:-1;;;10252:73:0;;9931:2:1;10252:73:0::1;::::0;::::1;9913:21:1::0;9970:2;9950:18;;;9943:30;10009:34;9989:18;;;9982:62;-1:-1:-1;;;10060:18:1;;;10053:36;10106:19;;10252:73:0::1;9903:228:1::0;10252:73:0::1;10336:28;10355:8;10336:18;:28::i;41214:172::-:0;41311:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;41311:29:0;-1:-1:-1;;;;;41311:29:0;;;;;;;;;41352:28;;41311:24;;41352:28;;;;;;;41214:172;;;:::o;39579:1529::-;39676:35;39714:20;39726:7;39714:11;:20::i;:::-;39785:18;;39676:58;;-1:-1:-1;39743:22:0;;-1:-1:-1;;;;;39769:34:0;8066:10;-1:-1:-1;;;;;39769:34:0;;:81;;;-1:-1:-1;8066:10:0;39814:20;39826:7;39814:11;:20::i;:::-;-1:-1:-1;;;;;39814:36:0;;39769:81;:142;;;-1:-1:-1;39878:18:0;;39861:50;;8066:10;36256:186;:::i;39861:50::-;39743:169;;39937:17;39921:101;;;;-1:-1:-1;;;39921:101:0;;15863:2:1;39921:101:0;;;15845:21:1;15902:2;15882:18;;;15875:30;15941:34;15921:18;;;15914:62;-1:-1:-1;;;15992:18:1;;;15985:48;16050:19;;39921:101:0;15835:240:1;39921:101:0;40069:4;-1:-1:-1;;;;;40047:26:0;:13;:18;;;-1:-1:-1;;;;;40047:26:0;;40031:98;;;;-1:-1:-1;;;40031:98:0;;14324:2:1;40031:98:0;;;14306:21:1;14363:2;14343:18;;;14336:30;14402:34;14382:18;;;14375:62;-1:-1:-1;;;14453:18:1;;;14446:36;14499:19;;40031:98:0;14296:228:1;40031:98:0;-1:-1:-1;;;;;40144:16:0;;40136:66;;;;-1:-1:-1;;;40136:66:0;;11854:2:1;40136:66:0;;;11836:21:1;11893:2;11873:18;;;11866:30;11932:34;11912:18;;;11905:62;-1:-1:-1;;;11983:18:1;;;11976:35;12028:19;;40136:66:0;11826:227:1;40136:66:0;40311:49;40328:1;40332:7;40341:13;:18;;;40311:8;:49::i;:::-;-1:-1:-1;;;;;40369:18:0;;;;;;:12;:18;;;;;:31;;40399:1;;40369:18;:31;;40399:1;;-1:-1:-1;;;;;40369:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;40369:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;40407:16:0;;-1:-1:-1;40407:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;40407:16:0;;:29;;-1:-1:-1;;40407:29:0;;:::i;:::-;;;-1:-1:-1;;;;;40407:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40466:43:0;;;;;;;;-1:-1:-1;;;;;40466:43:0;;;;;;40492:15;40466:43;;;;;;;;;-1:-1:-1;40443:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;40443:66:0;-1:-1:-1;;;;;;40443:66:0;;;;;;;;;;;40759:11;40455:7;-1:-1:-1;40759:11:0;:::i;:::-;40822:1;40781:24;;;:11;:24;;;;;:29;40737:33;;-1:-1:-1;;;;;;40781:29:0;40777:236;;40839:20;40847:11;37533:4;37563:12;-1:-1:-1;37553:22:0;37476:105;40839:20;40835:171;;;40899:97;;;;;;;;40926:18;;-1:-1:-1;;;;;40899:97:0;;;;;;40957:28;;;;40899:97;;;;;;;;;;-1:-1:-1;40872:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;40872:124:0;-1:-1:-1;;;;;;40872:124:0;;;;;;;;;;;;40835:171;41045:7;41041:2;-1:-1:-1;;;;;41026:27:0;41035:4;-1:-1:-1;;;;;41026:27:0;;;;;;;;;;;39669:1439;;;39579:1529;;;:::o;3717:190::-;3842:4;3895;3866:25;3879:5;3886:4;3866:12;:25::i;:::-;:33;;3717:190;-1:-1:-1;;;;3717:190:0:o;37587:98::-;37652:27;37662:2;37666:8;37652:27;;;;;;;;;;;;:9;:27::i;33396:499::-;-1:-1:-1;;;;;;;;;;;;;;;;;33495:16:0;33503:7;37533:4;37563:12;-1:-1:-1;37553:22:0;37476:105;33495:16;33487:71;;;;-1:-1:-1;;;33487:71:0;;10338:2:1;33487:71:0;;;10320:21:1;10377:2;10357:18;;;10350:30;10416:34;10396:18;;;10389:62;-1:-1:-1;;;10467:18:1;;;10460:40;10517:19;;33487:71:0;10310:232:1;33487:71:0;33612:7;33592:225;33655:31;33689:17;;;:11;:17;;;;;;;;;33655:51;;;;;;;;;-1:-1:-1;;;;;33655:51:0;;;;;-1:-1:-1;;;33655:51:0;;;;;;;;;;;;33725:28;33721:85;;33781:9;33396:499;-1:-1:-1;;;33396:499:0:o;33721:85::-;-1:-1:-1;;;33632:6:0;33592:225;;10532:191;10625:6;;;-1:-1:-1;;;;;10642:17:0;;;-1:-1:-1;;;;;;10642:17:0;;;;;;;10675:40;;10625:6;;;10642:17;10625:6;;10675:40;;10606:16;;10675:40;10595:128;10532:191;:::o;46363:173::-;46441:33;46451:9;46462:11;46441:9;:33::i;:::-;-1:-1:-1;;;;;46483:23:0;;;;;;:12;:23;;;;;:45;;46517:11;;46483:23;:45;;46517:11;;46483:45;:::i;:::-;;;;-1:-1:-1;;;;46363:173:0:o;42992:690::-;43129:4;-1:-1:-1;;;;;43146:13:0;;12258:19;:23;43142:535;;43185:72;;-1:-1:-1;;;43185:72:0;;-1:-1:-1;;;;;43185:36:0;;;;;:72;;8066:10;;43236:4;;43242:7;;43251:5;;43185:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43185:72:0;;;;;;;;-1:-1:-1;;43185:72:0;;;;;;;;;;;;:::i;:::-;;;43172:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43416:13:0;;43412:215;;43449:61;;-1:-1:-1;;;43449:61:0;;;;;;;:::i;43412:215::-;43595:6;43589:13;43580:6;43576:2;43572:15;43565:38;43172:464;-1:-1:-1;;;;;;43307:55:0;-1:-1:-1;;;43307:55:0;;-1:-1:-1;43300:62:0;;43142:535;-1:-1:-1;43665:4:0;43142:535;42992:690;;;;;;:::o;47803:114::-;47863:13;47896;47889:20;;;;;:::i;5548:723::-;5604:13;5825:10;5821:53;;-1:-1:-1;;5852:10:0;;;;;;;;;;;;-1:-1:-1;;;5852:10:0;;;;;5548:723::o;5821:53::-;5899:5;5884:12;5940:78;5947:9;;5940:78;;5973:8;;;;:::i;:::-;;-1:-1:-1;5996:10:0;;-1:-1:-1;6004:2:0;5996:10;;:::i;:::-;;;5940:78;;;6028:19;6060:6;6050:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6050:17:0;;6028:39;;6078:154;6085:10;;6078:154;;6112:11;6122:1;6112:11;;:::i;:::-;;-1:-1:-1;6181:10:0;6189:2;6181:5;:10;:::i;:::-;6168:24;;:2;:24;:::i;:::-;6155:39;;6138:6;6145;6138:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6138:56:0;;;;;;;;-1:-1:-1;6209:11:0;6218:2;6209:11;;:::i;:::-;;;6078:154;;4269:675;4352:7;4395:4;4352:7;4410:497;4434:5;:12;4430:1;:16;4410:497;;;4468:20;4491:5;4497:1;4491:8;;;;;;;;:::i;:::-;;;;;;;4468:31;;4534:12;4518;:28;4514:382;;5020:13;5070:15;;;5106:4;5099:15;;;5153:4;5137:21;;4646:57;;4514:382;;;5020:13;5070:15;;;5106:4;5099:15;;;5153:4;5137:21;;4823:57;;4514:382;-1:-1:-1;4448:3:0;;;;:::i;:::-;;;;4410:497;;;-1:-1:-1;4924:12:0;4269:675;-1:-1:-1;;;4269:675:0:o;38024:1323::-;38129:20;38152:12;-1:-1:-1;;;;;38179:16:0;;38171:62;;;;-1:-1:-1;;;38171:62:0;;18154:2:1;38171:62:0;;;18136:21:1;18193:2;18173:18;;;18166:30;18232:34;18212:18;;;18205:62;-1:-1:-1;;;18283:18:1;;;18276:31;18324:19;;38171:62:0;18126:223:1;38171:62:0;38248:13;38240:66;;;;-1:-1:-1;;;38240:66:0;;18556:2:1;38240:66:0;;;18538:21:1;18595:2;18575:18;;;18568:30;18634:34;18614:18;;;18607:62;-1:-1:-1;;;18685:18:1;;;18678:38;18733:19;;38240:66:0;18528:230:1;38240:66:0;38443:21;38451:12;37533:4;37563:12;-1:-1:-1;37553:22:0;37476:105;38443:21;38442:22;38434:64;;;;-1:-1:-1;;;38434:64:0;;17450:2:1;38434:64:0;;;17432:21:1;17489:2;17469:18;;;17462:30;17528:31;17508:18;;;17501:59;17577:18;;38434:64:0;17422:179:1;38434:64:0;-1:-1:-1;;;;;38629:16:0;;;38596:30;38629:16;;;:12;:16;;;;;;;;38596:49;;;;;;;;;-1:-1:-1;;;;;38596:49:0;;;;;-1:-1:-1;;;38596:49:0;;;;;;;;;;;;38673:125;;;;;;;38695:19;;:39;;38673:125;;;;38745:24;;:44;;38673:125;;;;;;;;38654:16;;;;;;:144;;;;;;;;;;;;;;;;38835:43;;;;;;;;;;;38861:15;38835:43;;;;;;;;38807:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;38807:71:0;-1:-1:-1;;;;;;38807:71:0;;;;;;;;;;;;;;;;38819:12;;38935:295;38959:8;38955:1;:12;38935:295;;;38990:38;;39015:12;;-1:-1:-1;;;;;38990:38:0;;;39007:1;;38990:38;;39007:1;;38990:38;39059:59;39090:1;39094:2;39098:12;39112:5;39059:22;:59::i;:::-;39039:156;;;;-1:-1:-1;;;39039:156:0;;;;;;;:::i;:::-;39206:14;;;;;38969:3;38935:295;;;-1:-1:-1;39240:12:0;:27;;;39281:60;;-1:-1:-1;39314:2:0;39318:12;39332:8;39281:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;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:2;;;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:2;;;532:1;529;522:12;491:2;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;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;828:160;893:20;;949:13;;942:21;932:32;;922:2;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:2;;;1121:1;1118;1111:12;1073:2;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:2;;;1329:1;1326;1319:12;1281:2;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1271:173;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:2;;;1611:1;1608;1601:12;1563:2;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;;1553:224;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:2;;;1971:1;1968;1961:12;1922:2;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:2;;;2241:1;2238;2231:12;2195:2;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:2:1;;2346:1;2343;2336:12;2295:2;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1912:536;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:2;;;2595:1;2592;2585:12;2547:2;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:2;;;2857:1;2854;2847:12;2809:2;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2799:167:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:2;;;3096:1;3093;3086:12;3048:2;3119:26;3135:9;3119:26;:::i;3156:180::-;3215:6;3268:2;3256:9;3247:7;3243:23;3239:32;3236:2;;;3284:1;3281;3274:12;3236:2;-1:-1:-1;3307:23:1;;3226:110;-1:-1:-1;3226:110:1:o;3341:245::-;3399:6;3452:2;3440:9;3431:7;3427:23;3423:32;3420:2;;;3468:1;3465;3458:12;3420:2;3507:9;3494:23;3526:30;3550:5;3526:30;:::i;3591:249::-;3660:6;3713:2;3701:9;3692:7;3688:23;3684:32;3681:2;;;3729:1;3726;3719:12;3681:2;3761:9;3755:16;3780:30;3804:5;3780:30;:::i;3845:450::-;3914:6;3967:2;3955:9;3946:7;3942:23;3938:32;3935:2;;;3983:1;3980;3973:12;3935:2;4023:9;4010:23;4056:18;4048:6;4045:30;4042:2;;;4088:1;4085;4078:12;4042:2;4111:22;;4164:4;4156:13;;4152:27;-1:-1:-1;4142:2:1;;4193:1;4190;4183:12;4142:2;4216:73;4281:7;4276:2;4263:16;4258:2;4254;4250:11;4216:73;:::i;4485:254::-;4553:6;4561;4614:2;4602:9;4593:7;4589:23;4585:32;4582:2;;;4630:1;4627;4620:12;4582:2;4666:9;4653:23;4643:33;;4695:38;4729:2;4718:9;4714:18;4695:38;:::i;4744:683::-;4839:6;4847;4855;4908:2;4896:9;4887:7;4883:23;4879:32;4876:2;;;4924:1;4921;4914:12;4876:2;4960:9;4947:23;4937:33;;5021:2;5010:9;5006:18;4993:32;5044:18;5085:2;5077:6;5074:14;5071:2;;;5101:1;5098;5091:12;5071:2;5139:6;5128:9;5124:22;5114:32;;5184:7;5177:4;5173:2;5169:13;5165:27;5155:2;;5206:1;5203;5196:12;5155:2;5246;5233:16;5272:2;5264:6;5261:14;5258:2;;;5288:1;5285;5278:12;5258:2;5341:7;5336:2;5326:6;5323:1;5319:14;5315:2;5311:23;5307:32;5304:45;5301:2;;;5362:1;5359;5352:12;5301:2;5393;5389;5385:11;5375:21;;5415:6;5405:16;;;;;4866:561;;;;;:::o;5432:257::-;5473:3;5511:5;5505:12;5538:6;5533:3;5526:19;5554:63;5610:6;5603:4;5598:3;5594:14;5587:4;5580:5;5576:16;5554:63;:::i;:::-;5671:2;5650:15;-1:-1:-1;;5646:29:1;5637:39;;;;5678:4;5633:50;;5481:208;-1:-1:-1;;5481:208:1:o;5928:1527::-;6152:3;6190:6;6184:13;6216:4;6229:51;6273:6;6268:3;6263:2;6255:6;6251:15;6229:51;:::i;:::-;6343:13;;6302:16;;;;6365:55;6343:13;6302:16;6387:15;;;6365:55;:::i;:::-;6509:13;;6442:20;;;6482:1;;6569;6591:18;;;;6644;;;;6671:2;;6749:4;6739:8;6735:19;6723:31;;6671:2;6812;6802:8;6799:16;6779:18;6776:40;6773:2;;;-1:-1:-1;;;6839:33:1;;6895:4;6892:1;6885:15;6925:4;6846:3;6913:17;6773:2;6956:18;6983:110;;;;7107:1;7102:328;;;;6949:481;;6983:110;-1:-1:-1;;7018:24:1;;7004:39;;7063:20;;;;-1:-1:-1;6983:110:1;;7102:328;21227:1;21220:14;;;21264:4;21251:18;;7197:1;7211:169;7225:8;7222:1;7219:15;7211:169;;;7307:14;;7292:13;;;7285:37;7350:16;;;;7242:10;;7211:169;;;7215:3;;7411:8;7404:5;7400:20;7393:27;;6949:481;-1:-1:-1;7446:3:1;;6160:1295;-1:-1:-1;;;;;;;;;;;6160:1295:1:o;7878:488::-;-1:-1:-1;;;;;8147:15:1;;;8129:34;;8199:15;;8194:2;8179:18;;8172:43;8246:2;8231:18;;8224:34;;;8294:3;8289:2;8274:18;;8267:31;;;8072:4;;8315:45;;8340:19;;8332:6;8315:45;:::i;:::-;8307:53;8081:285;-1:-1:-1;;;;;;8081:285:1:o;8745:219::-;8894:2;8883:9;8876:21;8857:4;8914:44;8954:2;8943:9;8939:18;8931:6;8914:44;:::i;10547:344::-;10749:2;10731:21;;;10788:2;10768:18;;;10761:30;-1:-1:-1;;;10822:2:1;10807:18;;10800:50;10882:2;10867:18;;10721:170::o;12405:471::-;12607:2;12589:21;;;12646:2;12626:18;;;12619:30;12685:34;12680:2;12665:18;;12658:62;12756:34;12751:2;12736:18;;12729:62;-1:-1:-1;;;12822:3:1;12807:19;;12800:34;12866:3;12851:19;;12579:297::o;13719:398::-;13921:2;13903:21;;;13960:2;13940:18;;;13933:30;13999:34;13994:2;13979:18;;13972:62;-1:-1:-1;;;14065:2:1;14050:18;;14043:32;14107:3;14092:19;;13893:224::o;14529:356::-;14731:2;14713:21;;;14750:18;;;14743:30;14809:34;14804:2;14789:18;;14782:62;14876:2;14861:18;;14703:182::o;16828:415::-;17030:2;17012:21;;;17069:2;17049:18;;;17042:30;17108:34;17103:2;17088:18;;17081:62;-1:-1:-1;;;17174:2:1;17159:18;;17152:49;17233:3;17218:19;;17002:241::o;21280:253::-;21320:3;-1:-1:-1;;;;;21409:2:1;21406:1;21402:10;21439:2;21436:1;21432:10;21470:3;21466:2;21462:12;21457:3;21454:21;21451:2;;;21478:18;;:::i;:::-;21514:13;;21328:205;-1:-1:-1;;;;21328:205:1:o;21538:128::-;21578:3;21609:1;21605:6;21602:1;21599:13;21596:2;;;21615:18;;:::i;:::-;-1:-1:-1;21651:9:1;;21586:80::o;21671:120::-;21711:1;21737;21727:2;;21742:18;;:::i;:::-;-1:-1:-1;21776:9:1;;21717:74::o;21796:168::-;21836:7;21902:1;21898;21894:6;21890:14;21887:1;21884:21;21879:1;21872:9;21865:17;21861:45;21858:2;;;21909:18;;:::i;:::-;-1:-1:-1;21949:9:1;;21848:116::o;21969:246::-;22009:4;-1:-1:-1;;;;;22122:10:1;;;;22092;;22144:12;;;22141:2;;;22159:18;;:::i;:::-;22196:13;;22018:197;-1:-1:-1;;;22018:197:1:o;22220:125::-;22260:4;22288:1;22285;22282:8;22279:2;;;22293:18;;:::i;:::-;-1:-1:-1;22330:9:1;;22269:76::o;22350:258::-;22422:1;22432:113;22446:6;22443:1;22440:13;22432:113;;;22522:11;;;22516:18;22503:11;;;22496:39;22468:2;22461:10;22432:113;;;22563:6;22560:1;22557:13;22554:2;;;-1:-1:-1;;22598:1:1;22580:16;;22573:27;22403:205::o;22613:380::-;22692:1;22688:12;;;;22735;;;22756:2;;22810:4;22802:6;22798:17;22788:27;;22756:2;22863;22855:6;22852:14;22832:18;22829:38;22826:2;;;22909:10;22904:3;22900:20;22897:1;22890:31;22944:4;22941:1;22934:15;22972:4;22969:1;22962:15;22826:2;;22668:325;;;:::o;22998:135::-;23037:3;-1:-1:-1;;23058:17:1;;23055:2;;;23078:18;;:::i;:::-;-1:-1:-1;23125:1:1;23114:13;;23045:88::o;23138:112::-;23170:1;23196;23186:2;;23201:18;;:::i;:::-;-1:-1:-1;23235:9:1;;23176:74::o;23255:127::-;23316:10;23311:3;23307:20;23304:1;23297:31;23347:4;23344:1;23337:15;23371:4;23368:1;23361:15;23387:127;23448:10;23443:3;23439:20;23436:1;23429:31;23479:4;23476:1;23469:15;23503:4;23500:1;23493:15;23519:127;23580:10;23575:3;23571:20;23568:1;23561:31;23611:4;23608:1;23601:15;23635:4;23632:1;23625:15;23651:127;23712:10;23707:3;23703:20;23700:1;23693:31;23743:4;23740:1;23733:15;23767:4;23764:1;23757:15;23783:131;-1:-1:-1;;;;;;23857:32:1;;23847:43;;23837:2;;23904:1;23901;23894:12

Swarm Source

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